/* ════════════════════════════════════════════════════
   LUMIÈRE — Home Page
   ════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: var(--sp-10) 0 var(--sp-12);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  inset-inline-end: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rose-100) 0%, transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  inset-inline-start: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr minmax(380px, 1fr);
  gap: var(--sp-10);
  align-items: center;
  min-height: 580px;
}

.hero-content { padding-block: var(--sp-6); }
.hero-eyebrow { margin-bottom: var(--sp-6); }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--ink-900);
  margin-bottom: var(--sp-6);
}
.hero-title .italic {
  font-style: normal;
  font-weight: 400;
  color: var(--rose-500);
}
.hero-title .stroke {
  position: relative;
  display: inline-block;
}
.hero-title .stroke::after {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0.10em;
  height: 0.18em;
  background: var(--rose-100);
  z-index: -1;
  border-radius: 4px;
  opacity: 0.85;
}

.hero-sub {
  font-size: var(--fs-md);
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-9);
}

.hero-meta {
  display: flex;
  gap: var(--sp-9);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta-num {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-meta-num .italic { color: var(--rose-500); font-style: normal; }
.hero-meta-label {
  font-size: var(--fs-xs);
  color: var(--ink-500);
  font-weight: 500;
}

/* Hero visual — product spotlight composition */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 480px;
  min-height: 540px;
  margin: 0 auto;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-50) 0%, var(--gold-soft) 100%);
  border-radius: var(--r-2xl);
  transform: rotate(-3deg);
}
.hero-visual-card {
  position: absolute;
  inset: 0;
  background: var(--surface);
  border-radius: var(--r-2xl);
  padding: var(--sp-7);
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-visual-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 12px;
  background: var(--rose-50);
  border-radius: var(--r-pill);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  color: var(--rose-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-visual-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
}
.hero-visual-product {
  width: 70%;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--rose-100), var(--rose-200));
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px -20px rgba(95, 114, 125, 0.3);
}
.hero-visual-product::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  top: 15%;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 60%);
  border-radius: 50%;
}
.hero-visual-product-icon {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 96px;
  color: var(--paper);
  z-index: 1;
  text-shadow: 0 4px 16px rgba(74, 61, 46, 0.18);
}
.hero-visual-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.hero-visual-foot-info { display: flex; flex-direction: column; gap: 2px; }
.hero-visual-foot-name { font-family: var(--font-display); font-size: var(--fs-md); color: var(--ink-900); }
.hero-visual-foot-cat { font-size: 11px; color: var(--ink-500); letter-spacing: 0.04em; }
.hero-visual-foot-price { font-size: var(--fs-md); font-weight: 700; color: var(--ink-900); font-variant-numeric: tabular-nums; }

/* Floating tag on hero */
.hero-float {
  position: absolute;
  background: var(--surface);
  padding: 12px 16px;
  border-radius: var(--r-md);
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  z-index: 2;
}
.hero-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--rose-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-1 { top: 8%; inset-inline-start: -30px; }
.hero-float-2 { bottom: 18%; inset-inline-end: -30px; }
.hero-float-label { color: var(--ink-500); font-size: 10px; letter-spacing: 0.04em; }
.hero-float-value { font-weight: 700; color: var(--ink-900); font-size: 12px; }

/* ── SECTION HEAD (reusable) ──────────────────────── */
.sect-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-9);
}
.sect-head .eyebrow { margin-bottom: var(--sp-4); }
.sect-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}
.sect-head h2 .italic { font-style: normal; color: var(--rose-500); }
.sect-head p {
  font-size: var(--fs-md);
  color: var(--ink-500);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ── CATEGORIES STRIP ─────────────────────────────── */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.cat {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
  cursor: pointer;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.cat-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cat-1 .cat-bg { background: linear-gradient(160deg, #FBE7DC, #F4CFB8); }
.cat-2 .cat-bg { background: linear-gradient(160deg, #E8E4D7, #D6CFB6); }
.cat-3 .cat-bg { background: linear-gradient(160deg, #F0E2DA, #DCC4B2); }
.cat-4 .cat-bg { background: linear-gradient(160deg, #E5E8DE, #C7CDB7); }
.cat-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: normal;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 4px 16px rgba(74, 61, 46, 0.15);
}
.cat-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cat-name {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--ink-900);
  font-weight: 500;
}
.cat-count {
  font-size: 11px;
  color: var(--ink-700);
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

/* ── FEATURED PRODUCTS GRID ───────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.products-grid-foot {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-9);
}

/* ── PROMISE STRIP ────────────────────────────────── */
.promise {
  background: var(--paper-2);
  border-radius: var(--r-2xl);
  padding: var(--sp-9) var(--sp-7);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-7);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  top: -100px;
  inset-inline-end: -80px;
  width: 280px;
  height: 280px;
  background: var(--rose-100);
  opacity: 0.4;
  filter: blur(60px);
  border-radius: 50%;
}
.promise-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  text-align: center;
}
.promise-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-2);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-500);
}
.promise-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--ink-900);
  font-weight: 500;
}
.promise-desc {
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.65;
}

/* ── EDITORIAL SPLIT ──────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.editorial-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  background: linear-gradient(160deg, var(--gold-soft), var(--rose-100));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editorial-visual::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 60%);
  border-radius: 50%;
  top: 10%;
  left: 10%;
}
.editorial-visual-mark {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 200px;
  color: rgba(255, 255, 255, 0.55);
  z-index: 1;
}
.editorial-content {
  padding-inline: var(--sp-5);
}
.editorial-content .eyebrow { margin-bottom: var(--sp-5); }
.editorial-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.editorial-content h2 .italic { font-style: normal; color: var(--rose-500); }
.editorial-content p {
  font-size: var(--fs-md);
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}
.editorial-quote {
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  border-inline-start: 3px solid var(--rose-300);
  font-family: var(--font-display);
  font-style: normal;
  font-size: var(--fs-lg);
  color: var(--ink-700);
  line-height: 1.5;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh);
  border-color: var(--rose-200);
}
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial-body {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--ink-700);
  line-height: 1.7;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--rose-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: var(--fs-md);
}
.testimonial-author-name { font-weight: 600; font-size: var(--fs-sm); color: var(--ink-900); }
.testimonial-author-meta { font-size: 12px; color: var(--ink-500); }

/* ── NEWSLETTER ───────────────────────────────────── */
.newsletter {
  background: linear-gradient(135deg, var(--rose-50), var(--gold-soft));
  border-radius: var(--r-2xl);
  padding: var(--sp-11) var(--sp-9);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before,
.newsletter::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.newsletter::before { background: var(--rose-200); opacity: 0.5; top: -100px; inset-inline-start: -100px; }
.newsletter::after  { background: var(--gold-soft); opacity: 0.7; bottom: -120px; inset-inline-end: -100px; }
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  margin-bottom: var(--sp-4);
}
.newsletter h2 .italic { font-style: normal; color: var(--rose-500); }
.newsletter p {
  font-size: var(--fs-md);
  color: var(--ink-700);
  margin-bottom: var(--sp-7);
  max-width: 500px;
  margin-inline: auto;
}
.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: var(--fs-base);
  color: var(--ink-900);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--rose-500);
  background: #fff;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--sp-9); }
  .hero-visual { max-width: 380px; }
  .hero-meta { gap: var(--sp-6); }
  .cats { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .promise { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .cats { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .promise { grid-template-columns: 1fr; padding: var(--sp-7); }
  .hero-meta { flex-direction: column; gap: var(--sp-4); }
  .newsletter { padding: var(--sp-9) var(--sp-5); border-radius: var(--r-xl); }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
}

/* Hero bottle photo (replaces .hero-visual-product circle) */
.hero-visual-photo {
  width: 100%;
  max-width: 360px;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--r-xl);
  box-shadow: 0 30px 60px -20px rgba(74, 61, 46, 0.25);
  display: block;
  margin: 0 auto;
}

/* Hero bottle SVG */
.hero-bottle-svg {
  width: 100%;
  max-width: 280px;
  max-height: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(74, 61, 46, 0.15));
}
