/* ============================================
   TrendLuxe — Brand Stylesheet
   ============================================ */

:root {
  --bg: #F8F4EF;
  --bg-alt: #F0EBE3;
  --accent: #C8963E;
  --accent-light: #E8C078;
  --accent-dark: #A07828;
  --text: #1C1009;
  --text-mid: #5C4A32;
  --text-muted: #9A8671;
  --white: #FFFFFF;
}

/* ---- 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(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ---- Utility ---- */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: 40px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(200, 150, 62, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 420px;
}

/* Badge */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 48px;
  background: linear-gradient(135deg, #1C1009 0%, #3A2010 100%);
  color: var(--bg);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.badge-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.5);
  margin-bottom: 8px;
}

.badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent-light);
  display: block;
}

.badge-unit {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.8);
  margin-top: 4px;
}

.badge-sub {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.4);
  margin-top: 8px;
  border-top: 1px solid rgba(248, 244, 239, 0.15);
  padding-top: 12px;
  margin-top: 12px;
  display: block;
}

/* Stats row */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(28, 16, 9, 0.1);
}

.stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(28, 16, 9, 0.1);
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.howitworks {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(28, 16, 9, 0.06);
  border-bottom: 1px solid rgba(28, 16, 9, 0.06);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.step-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
}

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

/* ============================================
   WHAT'S NEXT
   ============================================ */
.whatsnext {
  padding: 100px 0;
  background: var(--bg);
}

.whatsnext-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.whatsnext-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.whatsnext-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.insight-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28, 16, 9, 0.08);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-icon {
  color: var(--accent);
}

.insight-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.insight-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============================================
   SIGNAL
   ============================================ */
.signal {
  padding: 100px 0;
  background: #1C1009;
  color: var(--bg);
}

.signal .section-eyebrow {
  color: var(--accent-light);
}

.signal .section-title {
  color: var(--bg);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}

.signal-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.signal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.signal-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 6px;
}

.signal-desc {
  font-size: 0.82rem;
  color: rgba(248, 244, 239, 0.55);
  line-height: 1.6;
}

/* ============================================
   CLOSING
   ============================================ */
.closing {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid rgba(28, 16, 9, 0.06);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.closing-ornament {
  margin-bottom: 8px;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 48px 0;
  background: var(--text);
  color: var(--bg);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--bg);
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(248, 244, 239, 0.4);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-link {
  font-size: 0.8rem;
  color: rgba(248, 244, 239, 0.5);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--bg); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(248, 244, 239, 0.25);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .hero-badge { padding: 28px 32px; }
  .badge-number { font-size: 4rem; }

  .steps-grid { grid-template-columns: 1fr; }
  .whatsnext-grid { grid-template-columns: 1fr; }
  .signal-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .hero-stats-row { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
}