:root {
  --bg: #fdf3ee;
  --fg: #1a1416;
  --rose: #c96b7e;
  --rose-light: #e8a4b4;
  --rose-dark: #a84d62;
  --cream: #fdf3ee;
  --warm-gray: #7a6560;
  --light-warm: #f9ebe4;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Lookbook Hero ─── */
.lookbook-hero {
  position: relative; height: 70vh; min-height: 480px;
  overflow: hidden;
}
.lookbook-hero-img {
  position: absolute; inset: 0;
}
.lookbook-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.lookbook-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,20,22,0.55) 0%, rgba(201,107,126,0.35) 100%);
  display: flex; align-items: center;
}
.lookbook-hero-content {
  padding: 3rem; max-width: 580px;
}
.lb-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-light); font-weight: 600; margin-bottom: 1rem;
}
.lb-headline {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.05; color: white; margin-bottom: 1.25rem;
}
.lb-headline em { color: var(--rose-light); font-style: italic; }
.lb-lede {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 2rem; max-width: 400px;
}
.lb-cta {
  display: inline-block; background: var(--rose-dark); color: white;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.85rem 2.2rem; border-radius: 50px;
  text-decoration: none; transition: background 0.2s ease, transform 0.15s ease;
}
.lb-cta:hover { background: var(--rose); transform: translateY(-2px); }

/* ─── Navigation ─── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid rgba(201,107,126,0.15);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 500;
}

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 3rem 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  color: var(--rose);
  font-style: italic;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 440px;
  line-height: 1.7;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: start;
}
.hero-card {
  border-radius: 16px;
  overflow: hidden;
  padding: 1.25rem;
  background: white;
  box-shadow: 0 2px 20px rgba(201,107,126,0.08);
}
.hero-card--main {
  grid-column: 1;
  grid-row: 1 / 3;
  padding-bottom: 1.75rem;
}
.hero-card--secondary { grid-column: 2; grid-row: 1; }
.hero-card--tertiary { grid-column: 2; grid-row: 2; }
.card-image {
  height: 90px;
  border-radius: 8px;
  margin-bottom: 0.9rem;
}
.hero-card--main .card-image { height: 140px; }
.card-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}
.hero-card--main .card-label {
  font-size: 1.15rem;
}
.card-sub {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}
.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--fg);
  color: var(--cream);
  padding: 7rem 3rem;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-mark {
  font-size: 1.2rem;
  color: var(--rose-light);
  margin-bottom: 2rem;
  letter-spacing: 0.5em;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(253,243,238,0.65);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Collection ─── */
.collection {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.collection-header {
  margin-bottom: 4rem;
  text-align: center;
}
.collection-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.collection-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 480px;
  margin: 0 auto;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.collection-item {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 24px rgba(201,107,126,0.06);
  transition: transform 0.2s ease;
}
.collection-item:hover {
  transform: translateY(-4px);
}
.col-img {
  height: 160px;
  border-radius: 0;
}
.collection-item > div:not(.col-img) {
  padding: 1.25rem 1.5rem;
}
.col-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.col-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── Results ─── */
.results {
  background: var(--light-warm);
  padding: 7rem 3rem;
}
.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.results-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--fg);
  text-align: center;
  margin-bottom: 4rem;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.result-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(201,107,126,0.06);
}
.result-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.result-desc {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ─── Closing ─── */
.closing {
  padding: 8rem 3rem;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-ornament {
  color: var(--rose-light);
  font-size: 0.75rem;
  letter-spacing: 0.8em;
  margin-bottom: 2.5rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid rgba(201,107,126,0.15);
  padding: 2.5rem 3rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rose-dark);
  margin-bottom: 0.3rem;
}
.footer-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(122,101,96,0.5);
}

/* ─── Lookbook: Style Guide ─── */
.style-guide { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
.style-guide-header { text-align: center; margin-bottom: 4rem; }
.style-guide-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); font-weight: 600; margin-bottom: 0.75rem;
}
.style-guide-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--fg); margin-bottom: 0.75rem;
}
.style-guide-sub {
  font-size: 1rem; color: var(--warm-gray); max-width: 480px; margin: 0 auto;
}
.style-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.style-card {
  border-radius: 16px; overflow: hidden; background: white;
  box-shadow: 0 2px 20px rgba(201,107,126,0.08); transition: transform 0.2s ease;
  cursor: pointer;
}
.style-card:hover { transform: translateY(-4px); }
.style-img {
  height: 200px; background: var(--light-warm); display: flex;
  align-items: center; justify-content: center; overflow: hidden;
}
.style-img img { width: 100%; height: 100%; object-fit: cover; }
.style-info { padding: 1.1rem 1.25rem; }
.style-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--fg); margin-bottom: 0.2rem;
}
.style-tag {
  font-size: 0.75rem; color: var(--rose); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.style-desc { font-size: 0.8rem; color: var(--warm-gray); line-height: 1.5; }

/* ─── Lookbook: Reviews ─── */
.lookbook-reviews {
  background: var(--light-warm); padding: 6rem 3rem;
}
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 3.5rem; }
.reviews-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600; color: var(--fg); margin-bottom: 0.75rem;
}
.reviews-sub { font-size: 1rem; color: var(--warm-gray); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-bottom: 2rem;
}
.review-card {
  background: white; border-radius: 16px; padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 16px rgba(201,107,126,0.06);
}
.stars { color: var(--rose); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.9rem; color: var(--fg); line-height: 1.7;
  font-style: italic; margin-bottom: 1rem;
}
.review-author { display: flex; align-items: center; gap: 0.6rem; }
.author-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--rose-light); display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; color: white; font-weight: 600;
}
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.author-detail { font-size: 0.75rem; color: var(--warm-gray); }
.reviews-cta {
  text-align: center; margin-top: 2rem;
}

/* ─── Lookbook: Shop CTA ─── */
.shop-cta {
  padding: 7rem 3rem; text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--light-warm) 100%);
}
.shop-cta-inner { max-width: 680px; margin: 0 auto; }
.shop-cta-ornament { color: var(--rose-light); font-size: 0.75rem; letter-spacing: 0.8em; margin-bottom: 2rem; }
.shop-cta-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--fg); line-height: 1.15; margin-bottom: 1rem;
}
.shop-cta-title em { color: var(--rose); font-style: italic; }
.shop-cta-body {
  font-size: 1rem; color: var(--warm-gray); line-height: 1.7;
  max-width: 460px; margin: 0 auto 2.5rem;
}
.shop-cta-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rose-dark); color: white;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1rem 2.5rem; border-radius: 50px;
  text-decoration: none; transition: background 0.2s ease, transform 0.15s ease;
}
.shop-cta-link:hover { background: var(--rose); transform: translateY(-2px); }
.shop-note { font-size: 0.8rem; color: var(--warm-gray); margin-top: 1rem; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .style-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem 3rem;
  }
  .hero-visual {
    max-width: 400px;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .manifesto, .collection, .results, .closing, .style-guide, .lookbook-reviews, .shop-cta { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 700px) {
  .style-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-hero { height: 55vh; min-height: 400px; }
  .lookbook-hero-content { padding: 2rem; }
  .lb-lede { display: none; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-card--main { grid-column: 1; grid-row: 1; }
  .hero-card--secondary { grid-column: 1; }
  .hero-card--tertiary { grid-column: 1; }
}