/* ======================================================
   NO PROBLEM DESIGN — Landing Page Styles
   ====================================================== */

:root {
  /* Brand colors */
  --black: #0d0d0d;
  --white: #ffffff;
  --gray: #a5a09e;
  --gray-mist: #f2f0ee;
  --magenta: #db00ff;
  --amber: #ffbc00;

  --gradient-spray: linear-gradient(135deg, var(--magenta) 0%, var(--amber) 100%);

  --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif; /* Headlines */
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;       /* Fließtext, Normalgewicht */

  --container: 1240px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);

  --radius: 14px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

p {
  color: var(--black);
}

.accent-dot {
  color: var(--magenta);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

/* Numbered section headings: "03 Shirts", "02 Why", ... */
.section-number {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
}

.section-number .num {
  color: var(--magenta);
}

/* "// ..." kicker lines under section headings */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--magenta);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  margin-top: 0.75rem;
  max-width: 48ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--magenta);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-large {
  background: var(--amber);
  color: var(--black);
}

.btn-large:hover {
  background: var(--magenta);
  color: var(--white);
}

.link-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s var(--ease);
}

.link-arrow:hover {
  opacity: 0.6;
}

.link-arrow-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

/* Plain clickable text, no button frame, no underline (e.g. Instagram handle next to the header buttons) */
.hero-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  transition: opacity 0.2s var(--ease);
}

.hero-link:hover {
  opacity: 0.7;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.7rem 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .logo-word,
.site-header.is-scrolled .nav-toggle span {
  color: var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 110;
}

.logo-mark {
  border-radius: 50%;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.3s var(--ease);
}

.is-scrolled .logo-word { color: var(--black); }

.main-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  margin-left: auto;
}

.main-nav a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
  transition: color 0.3s var(--ease), opacity 0.2s var(--ease);
}

.site-header.is-scrolled .main-nav a { color: var(--black); }

.main-nav a:hover {
  opacity: 0.65;
}

.main-nav a .nav-num {
  color: var(--magenta);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.is-scrolled .nav-toggle span { background: var(--black); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.55) 65%, rgba(13, 13, 13, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: 8rem;
}

.hero-title {
  font-size: clamp(3rem, 11vw, 7.5rem);
  color: var(--white);
}

.hero-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--amber);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 44ch;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0.7;
  animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--gradient-spray);
}

.marquee-inner {
  padding: 0.65rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  justify-content: flex-start;
}

.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  max-width: 31ch;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  color: var(--black);
  border-right: 3px solid var(--black);
  animation: typing 7s steps(30, end) infinite, blink-caret 0.7s step-end infinite;
}

@keyframes typing {
  0% { width: 0; }
  55% { width: 31ch; }
  85% { width: 31ch; }
  100% { width: 0; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: var(--black); }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter {
    animation: none;
    width: 31ch;
    border-right: none;
  }

  .shirt-track {
    animation: none;
  }
}

/* ---------- 03 Shirts ---------- */
.shirts {
  padding: clamp(4rem, 10vw, 7rem) 0 0;
  background: var(--white);
}

.section-copy {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-copy p {
  margin-bottom: 1rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.shirt-carousel {
  overflow: hidden;
  padding-bottom: clamp(3rem, 6vw, 4rem);
}

.shirt-track {
  display: inline-flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  animation: shirt-scroll 32s linear infinite;
}

.shirt-carousel:hover .shirt-track {
  animation-play-state: paused;
}

@keyframes shirt-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.shirt-card {
  flex: 0 0 auto;
  width: clamp(220px, 24vw, 300px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
}

.shirt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.get-yours-banner {
  background: var(--black);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.get-yours-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.get-yours-inner p {
  color: var(--white);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

/* ---------- 02 Why ---------- */
.why {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-mist) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}

.why-copy p {
  margin-top: 1.25rem;
  max-width: 56ch;
}

/* 4-Bilder-Collage: bewusst unterschiedliche Größen/Formate, kleiner als eine große Aufnahme */
.why-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 440px;
}

.why-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.why-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}

.why-item:hover img,
.why-item:focus-visible img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.why-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.82) 0%, rgba(13, 13, 13, 0) 60%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.why-item:hover .why-caption,
.why-item:focus-visible .why-caption {
  opacity: 1;
}

.why-img-1 {
  aspect-ratio: 3 / 4;
}

.why-img-2 {
  aspect-ratio: 1 / 1;
  margin-top: 1.5rem;
}

.why-img-3 {
  aspect-ratio: 1 / 1;
}

.why-img-4 {
  aspect-ratio: 3 / 4;
}

/* ---------- 01 About ---------- */
.about {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: linear-gradient(180deg, var(--gray-mist) 0%, var(--white) 45%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.about-copy {
  max-width: 65ch;
}

.about-copy p {
  margin-bottom: 1rem;
  max-width: 65ch;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.person-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.person-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}

.person-card:hover .person-photo img,
.person-card:focus-visible .person-photo img,
.person-card:active .person-photo img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.person-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.88) 0%, rgba(13, 13, 13, 0) 60%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.person-card:hover .person-overlay,
.person-card:focus-visible .person-overlay,
.person-card:active .person-overlay {
  opacity: 1;
}

.person-overlay h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.person-overlay p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* ---------- 00 Get in touch ---------- */
.contact {
  padding: clamp(4rem, 10vw, 7rem) 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact .section-number {
  color: var(--white);
  justify-content: center;
}

.contact > .container > .contact-inner > p {
  color: var(--gray);
}

.contact-links {
  display: flex;
  align-self: stretch;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-link {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.6vw, 1.4rem);
  color: var(--white);
  border-bottom: 2px solid var(--magenta);
  padding-bottom: 4px;
  transition: color 0.2s var(--ease);
}

.contact-link:hover {
  color: var(--magenta);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray);
  padding-top: clamp(3rem, 6vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-weight: 600;
  transition: opacity 0.2s var(--ease);
}

.footer-nav a:hover {
  opacity: 0.65;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--magenta);
  border-color: var(--magenta);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal-page {
  padding: clamp(7rem, 14vw, 9rem) 0 clamp(4rem, 8vw, 6rem);
}

.legal-content {
  max-width: 70ch;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.1rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  max-width: 65ch;
}

.legal-content p a {
  border-bottom: 1px solid currentColor;
}

.legal-content .link-arrow {
  margin-top: 2rem;
}

/* ======================================================
   Breakpoints
   ====================================================== */

/* Tablet + up */
@media (min-width: 640px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* Desktop + up */
@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-layout {
    grid-template-columns: 1.3fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1.4fr 1fr auto;
    align-items: start;
  }
}

/* Mobile nav (below 860px) */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .main-nav a {
    color: var(--white) !important;
    font-size: 1.35rem;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle.is-active span {
    background: var(--white) !important;
  }

  /* Why-Collage auf Mobile: Versatz neutralisieren, sauber im Raster */
  .why-media {
    max-width: 360px;
    margin: 0 auto;
  }

  .why-img-2,
  .why-img-3 {
    margin-top: 0;
  }
}
