/* ============================================
   Turtleneck Tactics — Villain Apparel
   Colors: deep black, smoke, sharp red accent.
   Split-screen editorial, cinematic type.
   Prata (display serif) + Manrope (body).
   ============================================ */

/* --- Reset & Base --- */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: #A8A3A0;
  background-color: #0C0C0C;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Focus --- */

:focus-visible {
  outline: 2px solid #C62828;
  outline-offset: 3px;
}

/* --- Typography --- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Prata', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.1;
  color: #F5F5F0;
}

a {
  color: #F5F5F0;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #C62828;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(12, 12, 12, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
}

.nav-brand {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: #F5F5F0;
  letter-spacing: 0.02em;
}

.nav-brand:hover {
  color: #F5F5F0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #F5F5F0;
}

/* ============================================
   Hero — Cinematic Split
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.25rem 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C62828;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #F5F5F0;
  margin-bottom: 2rem;
  max-width: 48rem;
}

.hero-heading .stroke-text {
  color: transparent;
  -webkit-text-stroke: 1px #F5F5F0;
}

.hero-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #666;
  max-width: 30rem;
  line-height: 1.75;
  font-weight: 400;
}

/* ============================================
   Marquee — Rolling text
   ============================================ */

.marquee {
  overflow: hidden;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  padding: 1.25rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: scroll-marquee 20s linear infinite;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Prata', serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: #333;
  padding: 0 2rem;
  display: inline-block;
}

.marquee-item .dot {
  color: #C62828;
  margin: 0 0.25rem;
}

/* ============================================
   Collection — Horizontal Scroll Cards
   ============================================ */

.collection-section {
  padding: 5rem 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C62828;
}

.section-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-count {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  color: #555;
  font-weight: 500;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: #1A1A1A;
}

.product-card {
  background-color: #0C0C0C;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-name {
  font-family: 'Prata', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #F5F5F0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.product-price {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #C62828;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-top: 0.25rem;
}

.product-desc {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.product-tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid #2A2A2A;
  padding: 0.3rem 0.625rem;
}

.product-tag--accent {
  border-color: #C62828;
  color: #C62828;
}

/* ============================================
   Manifesto — Split section
   ============================================ */

.manifesto-section {
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
}

.manifesto-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.manifesto-left {
  background-color: #C62828;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-left h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.manifesto-left p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 28rem;
}

.manifesto-right {
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.manifesto-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.manifesto-num {
  font-family: 'Prata', serif;
  font-size: 2rem;
  color: #2A2A2A;
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.manifesto-point h3 {
  font-size: 1rem;
  color: #F5F5F0;
  margin-bottom: 0.25rem;
  letter-spacing: 0;
  text-transform: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

.manifesto-point p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.65;
}

/* ============================================
   Voices — Testimonials
   ============================================ */

.voices-section {
  padding: 5rem 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
}

.voices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background-color: #1A1A1A;
  margin-top: 3rem;
}

.voice-card {
  background-color: #0C0C0C;
  padding: 2rem 1.5rem;
}

.voice-text {
  font-family: 'Prata', serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: #DDDDD8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.voice-attr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.voice-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F5F5F0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.voice-title {
  font-size: 0.6875rem;
  color: #555;
}

/* ============================================
   Disclaimer
   ============================================ */

.disclaimer-section {
  padding: 3rem 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-text {
  font-size: 0.6875rem;
  color: #333;
  line-height: 1.8;
  max-width: 40rem;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================
   CTA
   ============================================ */

.cta-section {
  padding: 3rem 1.25rem 2rem;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.cta-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 1.25rem;
}

.cta-button {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5F5F0;
  border: 1px solid #333;
  padding: 1rem 2.5rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.cta-button:hover {
  border-color: #C62828;
  color: #C62828;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  border-top: 1px solid #1A1A1A;
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Prata', serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #F5F5F0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #444;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: #F5F5F0;
}

.footer-rule {
  border-top: 1px solid #1A1A1A;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.6875rem;
  color: #333;
  max-width: 36rem;
  line-height: 1.6;
}

.footer-credit {
  font-size: 0.6875rem;
  color: #333;
  white-space: nowrap;
}

.footer-credit a {
  color: #555;
  text-decoration: underline;
  text-decoration-color: #222;
  text-underline-offset: 2px;
}

.footer-credit a:hover {
  color: #C62828;
  text-decoration-color: #C62828;
}

/* ============================================
   Responsive — 640px+
   ============================================ */

@media (min-width: 640px) {
  .nav {
    padding: 1.25rem 2rem;
  }

  .hero {
    padding: 0 2rem 5rem;
  }

  .collection-section {
    padding: 5rem 2rem;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .manifesto-inner {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-left {
    padding: 4rem 2.5rem;
  }

  .manifesto-right {
    padding: 4rem 2.5rem;
  }

  .voices-section {
    padding: 5rem 2rem;
  }

  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disclaimer-section {
    padding: 3rem 2rem;
  }

  .cta-section {
    padding: 3rem 2rem 2rem;
  }

  .site-footer {
    padding: 2.5rem 2rem;
  }
}

/* ============================================
   Responsive — 1024px+
   ============================================ */

@media (min-width: 1024px) {
  .hero {
    padding: 0 2rem 6rem;
  }

  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .manifesto-left {
    padding: 5rem 3rem;
  }

  .manifesto-right {
    padding: 5rem 3rem;
  }

  .voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-links {
    gap: 2rem;
  }
}

/* Mobile nav fix — hide cramming link list on phones (brand stays) */
@media (max-width: 639px) {
  .nav-links { display: none; }
}
