/* ==========================================================
   Citysoccer – Modern Website Styles v2
   ========================================================== */

/* ---------- Self-hosted Fonts (DSGVO-konform) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-600-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/inter-800-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/barlow-condensed-600-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/barlow-condensed-700-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/barlow-condensed-800-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/barlow-condensed-900-latin.woff2') format('woff2');
}

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f5f6f8;
  --c-dark: #0e1116;
  --c-dark-2: #171b22;
  --c-dark-lite: #1b2029;
  --c-text: #1a1d23;
  --c-muted: #5b6370;
  --c-border: #e5e7eb;
  --c-accent: #e63946;
  --c-accent-2: #ff4d5e;
  --c-accent-dark: #c12a36;
  --c-white: #ffffff;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(14,17,22,.06);
  --shadow-md: 0 10px 30px rgba(14,17,22,.10);
  --shadow-lg: 0 25px 60px rgba(14,17,22,.18);
  --shadow-xl: 0 40px 80px rgba(14,17,22,.35);

  --maxw: 1240px;
  --trans: .25s ease;

  --f-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-display: 'Barlow Condensed', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.35rem; text-transform: none; letter-spacing: 0; font-family: var(--f-sans); font-weight: 700; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; font-family: var(--f-sans); }

p { margin: 0 0 1em; color: var(--c-muted); }
.accent { color: var(--c-accent); }
.inline-link { color: var(--c-accent); font-weight: 600; border-bottom: 1px solid currentColor; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.eyebrow.light { color: #ffb3ba; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--trans), background var(--trans), color var(--trans), box-shadow var(--trans);
  white-space: nowrap;
}
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-primary {
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230,57,70,.35);
}
.btn-primary:hover { background: var(--c-accent-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--c-dark); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* ---------- Header (DARK) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,17,22,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--trans), box-shadow var(--trans);
}
.site-header.scrolled {
  background: rgba(14,17,22,.96);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 82px;
}
.logo img { height: 52px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a {
  font-weight: 600;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.nav a:hover::after { transform: scaleX(1); }
.btn-header { padding: 12px 22px; font-size: .85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: #fff;
  transition: transform var(--trans), opacity var(--trans), top var(--trans);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 150px 0 90px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 15%;
  filter: contrast(1.05) saturate(1.05);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(14,17,22,.92) 0%, rgba(14,17,22,.78) 45%, rgba(14,17,22,.55) 100%),
    linear-gradient(0deg, rgba(230,57,70,.18), transparent 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero h1 { color: #fff; }
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.86);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong {
  font-family: var(--f-display);
  font-size: 2.3rem;
  color: #fff;
  line-height: 1;
}
.hero-meta span { font-size: .82rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section.alt { background: var(--c-bg-alt); }
.section.dark { background: var(--c-dark); color: #fff; }
.section.dark h2 { color: #fff; }
.section.dark p { color: rgba(255,255,255,.78); }
.section.dark-lite { background: var(--c-dark-lite); color: #fff; padding: 90px 0; }
.section.dark-lite h2 { color: #fff; }
.section.dark-lite p { color: rgba(255,255,255,.72); }

.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head p { font-size: 1.1rem; }

/* ---------- ORDERPORTAL ---------- */
.orderportal {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at top left, rgba(230,57,70,.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
  overflow: hidden;
}
.orderportal::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(230,57,70,.12), transparent 70%);
  pointer-events: none;
}
.orderportal-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}
.orderportal-head h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
.orderportal-head p { font-size: 1.15rem; }

.orderportal-showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
}
.screen-single {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid #fff;
  background: #fff;
  transition: transform var(--trans);
}
.screen-single img { width: 100%; height: auto; display: block; }
.screen-single:hover { transform: translateY(-4px); }

.screens {
  position: relative;
  height: 520px;
}
.scr {
  position: absolute;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  border: 8px solid #fff;
  background: #fff;
  transition: transform .4s ease;
}
.scr-1 { top: 0; left: 0; width: 78%; z-index: 1; transform: rotate(-3deg); }
.scr-2 { top: 18%; left: 22%; width: 78%; z-index: 3; transform: rotate(2deg); }
.scr-3 { top: 45%; left: 5%; width: 68%; z-index: 2; transform: rotate(-1.5deg); }
.screens:hover .scr-1 { transform: rotate(-5deg) translateX(-8px); }
.screens:hover .scr-2 { transform: rotate(3deg) translateY(-6px); }
.screens:hover .scr-3 { transform: rotate(-3deg) translateX(6px); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 18px;
}
.feature-list li {
  display: flex;
  flex-direction: column;
  padding: 18px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans);
}
.feature-list li:hover { transform: translateX(4px); border-color: var(--c-accent); }
.feature-list strong {
  font-family: var(--f-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.feature-list span { color: var(--c-muted); font-size: .95rem; line-height: 1.55; }
.orderportal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Cards (Leistungen) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 16px;
  display: inline-block;
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; }

/* ---------- Shops Grid ---------- */
.shops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.shop {
  margin: 0;
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0b0d12;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.shop:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shops-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border);
}
.shops-cta p {
  font-size: 1.15rem;
  color: var(--c-text);
  font-weight: 600;
  margin-bottom: 18px;
}
.shop img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease, opacity var(--trans);
}
.shop:hover img { transform: scale(1.08); opacity: .65; }
.shop figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  letter-spacing: .02em;
}

/* ---------- Logo Wall (Vereine) ---------- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.logo-tile {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  padding: 14px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.logo-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.logo-tile img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .75;
  transition: filter var(--trans), opacity var(--trans);
}
.logo-tile:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- Two-Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1fr 1.1fr; }
.two-col-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.two-col-image.portrait img { aspect-ratio: 4/5; object-position: center top; }

/* ---------- About / Über uns ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.about-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-text h2 { margin-bottom: 6px; }
.about-role {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: 22px;
}
.about-quote {
  margin: 0 0 24px;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--c-accent);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-text);
  font-style: italic;
}
@media (max-width: 760px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-image { margin: 0 auto; width: 220px; height: 220px; }
  .about-quote { text-align: left; }
}
.two-col-text h2 { margin-bottom: 18px; }
.two-col-text p { font-size: 1.05rem; }

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.image-pair img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.checklist li {
  padding: 12px 0 12px 36px;
  position: relative;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-accent);
  transform: translateY(-50%);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 7px; top: calc(50% - 4px);
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.info-box {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-accent);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--c-text);
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px 30px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #f5b400; font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial blockquote {
  margin: 0 0 18px;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.65;
  font-style: italic;
}
.testimonial figcaption {
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
}

/* ---------- Katalog Downloads ---------- */
.catalogs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.catalog {
  display: block;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.catalog:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.catalog-image {
  aspect-ratio: 820/501;
  overflow: hidden;
  background: var(--c-bg-alt);
}
.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.catalog:hover .catalog-image img { transform: scale(1.04); }
.catalog-body { padding: 32px 30px 34px; }
.catalog-body h3 { font-size: 1.4rem; margin: 6px 0 10px; }
.catalog-body p { font-size: .97rem; margin-bottom: 18px; }
.catalog-link {
  color: var(--c-accent);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color var(--trans);
}
.catalog:hover .catalog-link { color: var(--c-accent-dark); }

@media (max-width: 760px) {
  .catalogs { grid-template-columns: 1fr; gap: 20px; }
  .catalog-body { padding: 24px 22px 26px; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  margin-top: 36px;
}
.contact-label {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--c-accent-2);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-grid a, .contact-grid p {
  color: #fff;
  font-size: 1.05rem;
  margin: 0;
}
.contact-grid a {
  display: inline-block;
  padding: 4px 0;
  min-height: 44px;
  line-height: 1.5;
}
.contact-grid a:hover { color: var(--c-accent-2); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-xl);
  min-height: 460px;
  background: #1a1d23;
  position: relative;
}
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 460px; filter: grayscale(20%); }

.map-consent {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  background:
    linear-gradient(135deg, rgba(230,57,70,.12) 0%, rgba(14,17,22,.6) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 2px, transparent 2px, transparent 12px);
}
.map-consent-inner {
  max-width: 440px;
  text-align: center;
  color: #fff;
}
.map-consent-icon {
  width: 54px;
  height: 54px;
  color: var(--c-accent);
  margin: 0 auto 18px;
  display: block;
}
.map-consent h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.map-consent p {
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  margin-bottom: 22px;
  line-height: 1.65;
}
.map-consent a {
  color: var(--c-accent-2);
  text-decoration: underline;
}
.map-consent a:hover { color: #fff; }
.map-consent-addr {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.map-consent-addr strong { color: #fff; }

.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--trans), background var(--trans);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(255,255,255,.12);
}
.contact-form button { margin-top: 6px; align-self: flex-start; }

/* ---------- About Page (Über uns) ---------- */
.about-hero {
  padding: 180px 0 80px;
  background:
    linear-gradient(120deg, rgba(14,17,22,.92) 0%, rgba(14,17,22,.75) 60%, rgba(230,57,70,.35) 100%),
    url('images/druck.jpg') center/cover;
  color: #fff;
  position: relative;
}
.about-hero h1 { color: #fff; font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin-bottom: 20px; }
.about-hero-lead {
  max-width: 680px;
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}
.about-page { max-width: 900px; }
.about-block {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--c-border);
}
.about-block:first-child { border-top: 0; padding-top: 0; }
.about-year {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  position: sticky;
  top: 110px;
  align-self: start;
}
.about-content h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.about-content p {
  color: var(--c-text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-figure {
  margin: 24px 0 0;
  padding: 0;
}
.about-figure figcaption {
  margin-top: 10px;
  font-size: .88rem;
  color: var(--c-muted);
  font-style: italic;
  text-align: center;
}
.about-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 420px;
}
.about-figure.portrait {
  max-width: 360px;
}
.about-figure.portrait .about-img {
  max-height: none;
  height: auto;
}
.about-cta {
  margin-top: 60px;
  padding: 56px 44px;
  background: var(--c-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.about-cta h2 { color: #fff; margin-bottom: 14px; }
.about-cta p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; }
.about-cta .btn { margin: 6px; }

@media (max-width: 760px) {
  .about-hero { padding: 140px 0 60px; }
  .about-block {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 36px 0;
  }
  .about-year { position: static; font-size: 1.8rem; }
  .about-cta { padding: 40px 24px; }
  .about-cta .btn { display: block; margin: 10px auto; max-width: 280px; }
}

/* ---------- Legal Page (Impressum / Datenschutz) ---------- */
.legal-page { padding-top: 180px; }
.legal-container { max-width: 820px; }
.legal-container h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 40px;
}
.legal-container h2 {
  font-size: 1.4rem;
  text-transform: none;
  font-family: var(--f-sans);
  letter-spacing: 0;
  margin: 36px 0 12px;
  color: var(--c-dark);
}
.legal-container p {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-container a { color: var(--c-accent); text-decoration: underline; }
.legal-container a:hover { color: var(--c-accent-dark); }
.legal-back { margin-top: 50px; }
.legal-back a { text-decoration: none; color: #fff; }

/* ---------- Öffnungszeiten ---------- */
.hours-notice {
  margin: 40px auto 44px;
  max-width: 520px;
  padding: 48px 36px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
.hours-notice svg {
  width: 56px; height: 56px;
  color: var(--c-accent);
  margin-bottom: 22px;
}
.hours-notice h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-transform: none;
  font-family: var(--f-sans);
  letter-spacing: 0;
}
.hours-notice p { font-size: 1.1rem; margin: 0; }
.hours-contact {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 44px;
}
.hours-contact div { text-align: center; }
.contact-label-dark {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--c-accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.hours-contact a {
  color: var(--c-text);
  font-size: 1.15rem;
  font-weight: 600;
}
.hours-contact a:hover { color: var(--c-accent); }
@media (max-width: 500px) {
  .hours-contact { flex-direction: column; gap: 24px; }
}

/* ---------- Footer ---------- */
.footer {
  background: #0a0d12;
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fff; margin-bottom: 10px; }
.footer-col a, .footer-col span {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--c-accent-2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .shops-grid { grid-template-columns: repeat(3, 1fr); }
  .logo-wall { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 992px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .two-col.reverse .two-col-image { order: -1; }
  .orderportal-showcase { grid-template-columns: 1fr; gap: 90px; }
  .screens { height: 420px; max-width: 560px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 80px 0; }
  .orderportal { padding: 90px 0; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 0; right: 0;
    background: rgba(14,17,22,.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,.4);
    transform: translateY(-120%);
    transition: transform .35s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 1rem;
    color: #fff;
  }
  .nav a:last-child { border-bottom: 0; }
  .btn-header { display: none; }
  .nav-toggle { display: block; }

  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero-meta { gap: 28px; }
  .hero-meta strong { font-size: 1.8rem; }

  .cards { grid-template-columns: 1fr; }
  .shops-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logo-wall { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .logo-tile { padding: 10px; height: 90px; }
  .logo-tile img { max-height: 60px; }

  .section { padding: 70px 0; }
  .orderportal { padding: 70px 0; }
  .section-head { margin-bottom: 44px; }

  .screens { height: 340px; }
  .scr { border-width: 5px; }

  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-form { padding: 24px; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer-col { gap: 6px; }
  .footer-col a { padding: 6px 0; min-height: 44px; display: inline-flex; align-items: center; }

}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .08s; }
.stagger > *:nth-child(3) { transition-delay: .16s; }
.stagger > *:nth-child(4) { transition-delay: .24s; }
.stagger > *:nth-child(5) { transition-delay: .32s; }
.stagger > *:nth-child(6) { transition-delay: .4s; }

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
  z-index: 200;
  transition: none;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(230,57,70,.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .25s ease;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--c-accent-dark);
  transform: translateY(-3px);
}
.back-to-top svg { width: 22px; height: 22px; }

/* ---------- Hero parallax ---------- */
.hero-bg { transition: transform .1s linear; }

/* ---------- Smooth image loading ---------- */
.shop img, .catalog-image img, .logo-tile img {
  animation: fadeIn .6s ease-out both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .back-to-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
  .hero-cta .btn { width: 100%; }
  .btn { padding: 13px 22px; }
  .btn-lg { padding: 15px 28px; }
  .logo img { height: 42px; }
  .header-inner { height: 72px; }
  .nav { top: 72px; }
  .hero { padding-top: 112px; }
  .shops-grid { grid-template-columns: 1fr; }
  .screens { height: 280px; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .contact-map, .contact-map iframe, .map-consent { min-height: 340px; }
  .footer-col a, .footer-col span { font-size: .95rem; }
}
