/* ============================================
   FORGED — Custom Fitness Apparel Brand
   ============================================ */

/* --- TOKENS --- */
:root {
  --bg: #0E0E0E;
  --bg-2: #161616;
  --bg-3: #1E1E1E;
  --fg: #F0EBE3;
  --fg-2: #A09890;
  --accent: #FF6B35;
  --accent-dim: rgba(255, 107, 53, 0.12);
  --border: rgba(240, 235, 227, 0.08);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* --- NAV --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--fg);
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--fg-2);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,107,53,0.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.01) 80px, rgba(255,255,255,0.01) 81px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 0.9;
  color: var(--fg);
  text-transform: uppercase;
}
.hero-rule {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 28px 0;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--fg-2);
  line-height: 1.5;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-desc {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 48px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
}

/* --- MANIFESTO --- */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
  font-style: normal;
}
.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto-body p {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.8;
}

/* --- OFFERINGS --- */
.offerings {
  padding: 100px 60px;
}
.offerings-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.offerings-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 12px;
}
.offerings-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 64px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.product-card:hover { border-color: var(--accent); }
.product-visual {
  background: var(--bg-3);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.product-silhouette {
  width: 100%;
  max-width: 140px;
}
.silhouette-tee {
  height: 120px;
  width: 100px;
  background: var(--fg);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  opacity: 0.15;
}
.silhouette-hoodie {
  height: 130px;
  width: 110px;
  background: var(--fg);
  clip-path: polygon(15% 0%, 30% 0%, 30% 15%, 70% 15%, 70% 0%, 85% 0%, 100% 100%, 0% 100%);
  opacity: 0.15;
}
.silhouette-tank {
  height: 110px;
  width: 90px;
  background: var(--fg);
  clip-path: polygon(30% 0%, 70% 0%, 70% 100%, 30% 100%);
  opacity: 0.15;
}
.product-info {
  padding: 28px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}
.offerings-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-2);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* --- PROCESS --- */
.process {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 100px 60px;
}
.process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.process-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 64px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.4;
}
.step-content { padding-bottom: 48px; }
.step-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.step-desc {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 520px;
}
.step-connector {
  width: 1px;
  height: 32px;
  background: var(--border);
  margin-left: 39px;
  margin-bottom: 16px;
}

/* --- CLOSING --- */
.closing {
  padding: 120px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-icon {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-2);
}

/* --- FOOTER --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-2);
  font-style: italic;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-2);
  opacity: 0.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .navbar { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 100px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: clamp(64px, 18vw, 100px); }
  .hero-stats { gap: 32px; }
  .manifesto { padding: 60px 24px; }
  .offerings { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .process { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 24px; }
}
