/* ─── Variables ─── */
:root {
  --ivory: #FAF5EF;
  --ivory-mid: #F2EDE3;
  --burgundy: #5C1A35;
  --burgundy-light: #7D2850;
  --gold: #C9923A;
  --gold-light: #E0B058;
  --text: #1A1210;
  --text-muted: #7A6B60;
  --border: rgba(92, 26, 53, 0.15);
  --surface: #FFFFFF;
}

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

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

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.header-nav {
  display: flex;
  gap: 2.5rem;
}

.header-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--burgundy); }

/* ─── Hero ─── */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2rem;
}

/* Device mockup */
.device-frame {
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(92, 26, 53, 0.22), 0 8px 24px rgba(0,0,0,0.18);
  max-width: 300px;
  margin: 0 auto;
}

.device-screen {
  background: #FAF5EF;
  border-radius: 26px;
  padding: 1.2rem;
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.app-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5C1A35, #C9923A);
  flex-shrink: 0;
}

.app-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.app-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.app-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.outfit-card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
}

.outfit-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.outfit-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outfit-match {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 146, 58, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 2rem;
}

.outfit-visual {
  margin-bottom: 0.75rem;
}

.silhouette-grid {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.silhouette-slot {
  flex: 1;
  height: 80px;
  border-radius: 10px;
}

.silhouette-slot.top {
  background: linear-gradient(180deg, #7D2850 0%, #5C1A35 100%);
}

.silhouette-slot.bottom {
  background: linear-gradient(180deg, #C9923A 0%, #A07830 100%);
}

.silhouette-labels {
  display: flex;
  gap: 0.5rem;
}

.silhouette-labels span {
  flex: 1;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

.try-on-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--burgundy);
  color: var(--ivory);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
}

.try-on-icon {
  color: var(--gold-light);
  font-size: 0.8rem;
}

.shop-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  font-family: 'Cormorant Garamond', serif;
}

.shop-btn {
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  letter-spacing: 0.03em;
}

.style-score {
  padding: 0.75rem 0 0;
  border-top: 1px solid var(--border);
}

.score-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.score-bar {
  height: 4px;
  background: var(--ivory-mid);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  border-radius: 2px;
}

.score-meta {
  font-size: 0.62rem;
  color: var(--text-muted);
}

.device-chin {
  display: none;
}

.hero-rule {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 2rem;
  height: 1px;
  background: var(--border);
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 5rem 0 4rem;
  background: var(--ivory);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.manifesto-statement {
  margin-bottom: 4rem;
  max-width: 800px;
}

.manifesto-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.manifesto-emphasis {
  color: var(--burgundy);
  font-weight: 600;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Features ─── */
.features {
  padding: 5rem 0;
  background: var(--surface);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}

.feature-card {
  padding: 0;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 1.2rem;
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-bottom: 0.7rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Process ─── */
.process {
  padding: 5rem 0;
  background: var(--ivory-mid);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-header {
  margin-bottom: 3.5rem;
}

.process-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--burgundy);
}

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

.compare-col {
  padding: 0 2rem;
}

.compare-old .compare-label { color: var(--text-muted); }
.compare-new .compare-label { color: var(--gold); }

.compare-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.compare-marker {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
}

.compare-old .compare-marker {
  background: rgba(92, 26, 53, 0.1);
  color: var(--burgundy);
}

.compare-new .compare-marker {
  background: rgba(201, 146, 58, 0.15);
  color: var(--gold);
}

.compare-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 0 1rem;
}

/* ─── Vision ─── */
.vision {
  padding: 5rem 0;
  background: var(--burgundy);
}

.vision-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vision .section-label {
  color: var(--gold);
}

.vision-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.vision-text p {
  font-size: 0.95rem;
  color: rgba(250, 245, 239, 0.7);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 1rem;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(250, 245, 239, 0.15);
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pillar h4 {
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.85rem;
  color: rgba(250, 245, 239, 0.6);
  line-height: 1.65;
}

/* ─── Closing ─── */
.closing {
  padding: 6rem 0;
  background: var(--ivory);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.closing h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-vibe {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold) !important;
  margin-top: 1.5rem;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--text);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(250, 245, 239, 0.45);
  line-height: 1.5;
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 245, 239, 0.35);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(250, 245, 239, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(250, 245, 239, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(250, 245, 239, 0.3);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .header-nav { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .device-frame {
    max-width: 240px;
  }

  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .compare-divider {
    width: 100%;
    height: 1px;
    margin: 1.5rem 0;
  }

  .vision-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }

  .process-inner {
    padding: 0 1.5rem;
  }
}