/* ==========================================
   LOUDNESS — Brand Stylesheet
   ========================================== */

/* --- Variables --- */
:root {
  --bg: #0E0E0E;
  --bg-alt: #141414;
  --fg: #F5F0E8;
  --fg-muted: #8A8579;
  --accent: #E8A838;
  --accent-dim: #A07020;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232, 168, 56, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(232, 168, 56, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-size: clamp(6rem, 18vw, 18rem);
  line-height: 0.88;
  margin-bottom: 1.5rem;
}

.headline-loud {
  display: block;
  color: var(--fg);
}

.headline-ness {
  display: block;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.hero-body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* --- Hero Dial --- */
.hero-dial {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.dial-glow {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dial-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: 0 0 20px rgba(232, 168, 56, 0.2), inset 0 0 20px rgba(232, 168, 56, 0.05);
}

.dial-mark {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--accent-dim);
  transform: translate(-50%, -50%);
}

.dial-mark--top { top: 12%; left: 50%; }
.dial-mark--right { top: 50%; left: 88%; }
.dial-mark--bottom { top: 88%; left: 50%; }
.dial-mark--left { top: 50%; left: 12%; }

.dial-needle {
  position: absolute;
  width: 2px;
  height: 50px;
  background: var(--accent);
  bottom: 50%;
  left: calc(50% - 1px);
  transform-origin: bottom center;
  transform: rotate(-40deg);
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(232, 168, 56, 0.8);
}

.dial-needle::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.dial-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
}

/* --- Manifesto --- */
.manifesto {
  background: var(--bg-alt);
  padding: 8rem 2rem;
  border-top: 1px solid rgba(232, 168, 56, 0.1);
  border-bottom: 1px solid rgba(232, 168, 56, 0.1);
}

.manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.manifesto-line--2 {
  color: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-line--4 {
  color: var(--fg-muted);
  font-size: clamp(1.5rem, 4vw, 3.5rem);
}

/* --- Why --- */
.why {
  padding: 8rem 2rem;
  background: var(--bg);
}

.why-inner {
  max-width: 900px;
  margin: 0 auto;
}

.why-header {
  margin-bottom: 4rem;
}

.why-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--fg);
  margin-top: 0.5rem;
}

.why-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.why-divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--accent-dim), transparent);
  margin: 2rem 2rem 0;
  align-self: center;
}

.why-col {
  padding: 0 1rem;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
}

.why-col-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.why-col-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* --- Collection --- */
.collection {
  padding: 8rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid rgba(232, 168, 56, 0.1);
}

.collection-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.collection-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--fg);
  margin: 0.5rem 0 1.5rem;
}

.collection-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.collection-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collection-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(232, 168, 56, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.collection-item:hover {
  border-color: rgba(232, 168, 56, 0.3);
}

.item-visual {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
}

/* T-shirt mock */
.item-tee {
  width: 100px;
  height: 120px;
  border: 2px solid var(--fg-muted);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
}

.tee-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg);
  line-height: 1;
}

.tee-sub {
  font-size: 0.5rem;
  color: var(--fg-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sticker mock */
.item-sticker {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  box-shadow: 0 0 12px rgba(232, 168, 56, 0.2);
}

.sticker-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

/* Hoodie mock */
.item-hoodie {
  width: 110px;
  height: 130px;
  border: 2px solid var(--fg-muted);
  border-radius: 8px 8px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.hoodie-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg);
  line-height: 1;
  text-align: center;
}

.hoodie-year {
  font-size: 0.5rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.item-name {
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-muted);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- Closing --- */
.closing {
  padding: 10rem 2rem;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* --- Footer --- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(232, 168, 56, 0.1);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-dial {
    display: none;
  }

  .why-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-divider {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }

  .collection-items {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .manifesto, .closing {
    padding: 5rem 1.5rem;
  }

  .why, .collection {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 5rem;
  }

  .manifesto-line {
    font-size: 2rem;
  }
}