/* =====================
   DENIMPILOT THEME
   ===================== */

:root {
  --indigo:      #1a2744;
  --indigo-light:#243356;
  --cream:       #f5f0e8;
  --cream-dark:  #e8e0d0;
  --copper:      #b87333;
  --copper-light:#d4915a;
  --charcoal:    #2c2c2c;
  --text:        #1a1a1a;
  --text-muted:  #6b6b6b;
  --white:       #ffffff;
  --bg:          var(--cream);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  background: var(--indigo);
  color: var(--cream);
  padding: 100px 8vw 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
}

.hero-inner { max-width: 680px; }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-tagline {
  display: flex;
  gap: 16px;
}

.tag-line {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(184, 115, 51, 0.4);
  padding: 6px 14px;
}

/* Selvedge strip sidebar */
.hero-aside {
  display: flex;
  align-items: stretch;
}

.selvedge-strip {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(184, 115, 51, 0.3);
  padding-left: 20px;
  height: 320px;
}

.strip-line {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.strip-line.copper { color: var(--copper); }

/* ---- PROBLEM ---- */
.problem {
  background: var(--cream);
  padding: 100px 8vw;
}

.problem-inner { max-width: 900px; }

.problem-label, .how-label, .fitguide-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 40px;
}

.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--indigo);
  margin-bottom: 48px;
}

.problem-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.fact { border-left: 3px solid var(--copper); padding-left: 24px; }

.fact-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 8px;
}

.fact-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.problem-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 580px;
}

/* ---- HOW ---- */
.how {
  background: var(--cream-dark);
  padding: 100px 8vw;
}

.how-inner { max-width: 900px; }

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26, 39, 68, 0.12);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--copper);
  line-height: 1;
  padding-top: 4px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ---- FIT GUIDE ---- */
.fitguide {
  background: var(--indigo);
  color: var(--cream);
  padding: 100px 8vw;
}

.fitguide-inner { max-width: 1100px; }

.fitguide-header { margin-bottom: 60px; }

.fitguide-label {
  color: var(--copper);
  display: block;
  margin-bottom: 20px;
}

.fitguide-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

.fit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
}

.fit-col-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-list li {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
  padding-left: 14px;
  position: relative;
}

.fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--copper);
}

.accent-col {
  border: 1px solid rgba(184, 115, 51, 0.3);
  padding: 28px;
}

.fit-col-body {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.72);
  line-height: 1.7;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--cream-dark);
  padding: 80px 8vw;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--indigo);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

.manifesto-attr {
  font-size: 0.78rem;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ---- CLOSING ---- */
.closing {
  background: var(--cream);
  padding: 100px 8vw;
}

.closing-inner { max-width: 800px; }

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.15;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 48px;
}

.closing-aside {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aside-pill {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--indigo);
  padding: 8px 16px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--indigo);
  border-top: 1px solid rgba(184, 115, 51, 0.2);
  padding: 40px 8vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer-meta {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
  font-style: italic;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 6vw 60px;
    min-height: auto;
  }
  .hero-aside { display: none; }
  .problem-facts { grid-template-columns: 1fr; gap: 28px; }
  .fit-cols { grid-template-columns: 1fr; }
  .step { grid-template-columns: 50px 1fr; gap: 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

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