/* =========================================================
   soccershoot — Professionelle Fußball- & Sportfotografie
   Dunkles, foto-fokussiertes Design (self-contained)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0a0c;
  --bg-2:      #101014;
  --bg-3:      #16161c;
  --ink:       #f4f4f5;
  --muted:     #b3b3bd;
  --faint:     #7c7c88;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);

  --brand:     #22c55e;   /* Rasengrün */
  --brand-2:   #4ade80;
  --brand-deep:#15803d;
  --amber:     #fbbf24;   /* Flutlicht */

  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1200px;
  --nav-h:     70px;

  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 30px 60px -25px rgba(0,0,0,.8);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img,svg { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand); }
h1,h2,h3,h4 { margin: 0 0 .5em; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 26px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--brand); }
.section__head { max-width: 720px; margin-bottom: 54px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__head p { font-size: 1.1rem; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 650; font-size: .96rem;
  letter-spacing: .01em; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--brand); color: #04140a; box-shadow: 0 12px 30px -12px rgba(34,197,94,.6); }
.btn--primary:hover { background: var(--brand-2); color:#04140a; transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60; height: var(--nav-h);
  background: rgba(10,10,12,.72); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(10,10,12,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.28rem; letter-spacing: -0.03em; color: var(--ink); flex: 0 0 auto; }
.brand:hover { color: var(--ink); }
.brand__mark { width: 32px; height: 32px; flex: 0 0 auto; }
.brand__name { white-space: nowrap; }
.brand__name b { color: var(--brand); font-weight: 800; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--muted); font-weight: 550; font-size: .95rem; padding: 9px 14px; border-radius: 9px; }
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav__links a.active { color: var(--brand); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 9px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav__toggle span + span { margin-top: 5px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center;
  padding: 80px 0 64px;
  background:
    radial-gradient(1000px 460px at 78% -10%, rgba(34,197,94,.20), transparent 60%),
    radial-gradient(760px 420px at 12% 108%, rgba(251,191,36,.10), transparent 60%),
    var(--bg);
}
/* Flutlicht-Streifen */
.hero::before {
  content:""; position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 2px, transparent 2px 90px);
}
.hero__inner { position: relative; z-index: 1; max-width: 940px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-size: .76rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 16px; background: rgba(255,255,255,.03);
}
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(34,197,94,.25); }
.hero h1 { color: #fff; margin-bottom: .18em; }
.hero h1 .out { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.55); }
.hero h1 .grn { color: var(--brand); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--muted); max-width: 620px; margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 46px; }
.hero__feats { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.hero__feat { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; font-size: .95rem; }
.hero__feat svg { width: 20px; height: 20px; color: var(--brand); }
.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: var(--faint); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint span { width: 1px; height: 30px; background: linear-gradient(var(--brand), transparent); }

/* ---------- Section labels row ---------- */
.marq { border-block: 1px solid var(--line); background: var(--bg-2); }
.marq__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 34px; padding: 22px 0; }
.marq__item { color: var(--faint); font-weight: 700; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; }
.marq__item b { color: var(--ink); font-weight: 700; }

/* ---------- Portfolio grid ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-flow: dense; }
.shot { position: relative; margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); }
.shot--wide { grid-column: span 2; }
.shot--tall { grid-row: span 2; }
.shot__media { position: relative; width: 100%; height: 100%; aspect-ratio: 4/3; overflow: hidden; }
.shot--tall .shot__media { aspect-ratio: 3/4; }
.shot--wide .shot__media { aspect-ratio: 16/9; }
.shot__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shot:hover .shot__img { transform: scale(1.06); }
/* Platzhalter (durch <img class="shot__img"> ersetzen) */
.shot__ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,.5);
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(34,197,94,.14), transparent 55%),
    linear-gradient(150deg, #1c1c22, #101014);
}
.shot__ph svg { width: 40px; height: 40px; opacity: .7; }
.shot__ph em { font-style: normal; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.shot__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.82)); color: #fff;
  font-size: .9rem; font-weight: 600; letter-spacing: .01em;
  transform: translateY(6px); opacity: 0; transition: .3s ease;
}
.shot:hover .shot__cap { transform: none; opacity: 1; }
.shot__cap small { display: block; color: var(--brand-2); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.gallery-note { margin-top: 22px; text-align: center; color: var(--faint); font-size: .9rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.portrait { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-3); border: 1px solid var(--line); }
.portrait .shot__ph { position: absolute; inset: 0; }
.about h2 { color:#fff; }
.about .lead { font-size: 1.2rem; color: var(--ink); }
.about__sign { margin-top: 22px; font-weight: 700; color: var(--brand); letter-spacing: .02em; }

/* ---------- Services ---------- */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.svc:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-3); }
.svc__ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(34,197,94,.12); color: var(--brand); }
.svc__ic svg { width: 24px; height: 24px; }
.svc h3 { color: #fff; }
.svc p { font-size: .96rem; margin: 0; }

/* ---------- Equipment strip ---------- */
.gear { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gear__item { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.gear__item svg { width: 30px; height: 30px; color: var(--brand); margin: 0 auto 12px; }
.gear__item b { display: block; color: #fff; font-size: .98rem; margin-bottom: 3px; }
.gear__item span { color: var(--faint); font-size: .84rem; }

/* ---------- Press / Accreditation ---------- */
.press {
  position: relative; overflow: hidden; border-radius: 22px; padding: clamp(38px,6vw,64px);
  background:
    radial-gradient(700px 300px at 88% 0%, rgba(34,197,94,.16), transparent 60%),
    linear-gradient(160deg, #14141a, #0c0c10);
  border: 1px solid var(--line);
}
.press h2 { color: #fff; }
.press p { max-width: 640px; }
.press__points { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 30px; }
.press__points li { position: relative; padding-left: 30px; color: var(--ink); font-size: .98rem; }
.press__points li::before { content:""; position: absolute; left:0; top:.35em; width: 18px; height: 10px; border-left: 2px solid var(--brand); border-bottom: 2px solid var(--brand); transform: rotate(-45deg); }
.refs { margin-top: 40px; }
.refs__label { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.refs__logos { display: flex; flex-wrap: wrap; gap: 12px; }
.reflogo {
  border: 1px dashed var(--line-2); border-radius: 10px; padding: 14px 22px; color: var(--faint);
  font-weight: 700; letter-spacing: .06em; font-size: .9rem; background: rgba(255,255,255,.02);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(34,197,94,.35); background: rgba(34,197,94,.09); color: var(--ink);
  font-weight: 600; font-size: .88rem; padding: 9px 15px; border-radius: 999px;
}
.chip::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: 0 0 auto; }
.press__badge {
  display: inline-flex; align-items: center; gap: 15px; margin-top: 30px; padding: 15px 22px;
  border: 1px solid rgba(34,197,94,.4); background: rgba(34,197,94,.10); border-radius: 14px;
}
.press__badge svg { width: 36px; height: 36px; color: var(--brand); flex: 0 0 auto; }
.press__badge b { display: block; color: #fff; font-size: 1rem; letter-spacing: -0.01em; }
.press__badge span { color: var(--muted); font-size: .86rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact h2 { color:#fff; }
.contact__mail { display: inline-flex; align-items: center; gap: 12px; font-size: clamp(1.1rem,2.4vw,1.6rem); font-weight: 700; color:#fff; margin: 6px 0 26px; }
.contact__mail:hover { color: var(--brand); }
.contact__mail svg { width: 26px; height: 26px; color: var(--brand); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social { display: inline-flex; align-items: center; gap: 9px; padding: 11px 18px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.social:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); transition: .15s ease; }
.social svg { width: 18px; height: 18px; }
.contact__card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.contact__card h3 { color:#fff; }
.contact__row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.contact__row:last-child { border-bottom: 0; }
.contact__row b { color: var(--ink); min-width: 116px; display: inline-block; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: #08080a; border-top: 1px solid var(--line); padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .brand { margin-bottom: 14px; }
.footer__about { color: var(--faint); font-size: .95rem; max-width: 340px; }
.footer h4 { color:#fff; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: .95rem; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--brand); }
.footer__bar { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; color: var(--faint); font-size: .86rem; }

/* ---------- Legal pages ---------- */
.page-hero { padding: clamp(70px,9vw,110px) 0 clamp(36px,5vw,52px); background:
  radial-gradient(700px 300px at 80% -20%, rgba(34,197,94,.14), transparent 60%), var(--bg); border-bottom: 1px solid var(--line); }
.page-hero h1 { color:#fff; font-size: clamp(2.2rem,5vw,3.4rem); }
.page-hero p { max-width: 620px; }
.legal { max-width: 820px; }
.legal h2 { color:#fff; font-size: 1.4rem; margin-top: 42px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { color:#fff; font-size: 1.08rem; margin-top: 26px; }
.legal p, .legal li { font-size: 1rem; color: var(--muted); }
.legal address { font-style: normal; color: var(--ink); line-height: 1.9; }
.legal a { color: var(--brand-2); }
.data-table { width:100%; border-collapse: collapse; margin: 16px 0; font-size: .98rem; }
.data-table td { padding: 11px 14px; border: 1px solid var(--line); vertical-align: top; color: var(--muted); }
.data-table td:first-child { font-weight: 600; color: var(--ink); width: 38%; background: var(--bg-2); }
.note { border-left: 3px solid var(--brand); background: rgba(34,197,94,.06); border-radius: 0 10px 10px 0; padding: 15px 18px; margin: 20px 0; font-size: .94rem; color: var(--ink); }
.note b { color: var(--brand-2); }

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

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .about { grid-template-columns: 1fr; gap: 34px; }
  .gear { grid-template-columns: repeat(2,1fr); }
  .press__points { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #0c0c10; border-bottom: 1px solid var(--line); padding: 12px; transform: translateY(-140%);
    transition: transform .28s ease;
  }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 13px 14px; }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .grid--3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot--tall { grid-row: span 1; }
  .shot--tall .shot__media { aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .gallery { grid-template-columns: 1fr; }
  .shot--wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .shot:hover .shot__img { transform: none; }
}
