/* ============================================================
   CHIC CHARMS — d6-brand-story.css
   Phase D6 · Luxury Brand Story + Social Commerce Experience
   Additive layer — preserves all existing styles
   ============================================================ */

/* ── D6 Extended Tokens ── */
:root {
  --obsidian: #0E0C0B;
  --parchment-deep: #EDE4D8;
  --blush-deep: #F5E8EE;
  --rose-whisper: rgba(212, 135, 156, 0.08);
  --gold-shimmer: linear-gradient(135deg, #C9A96E 0%, #E8D5B0 50%, #C9A96E 100%);
  --ease-silk: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-reveal-d6: cubic-bezier(0.12, 0.8, 0.32, 1);
  --font-editorial: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

/* ============================================================
   D6 · UTILITY — Scroll Reveal Base
   ============================================================ */
.d6-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk);
}

.d6-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d6-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s var(--ease-silk), transform 0.9s var(--ease-silk);
}

.d6-reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.d6-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s var(--ease-silk), transform 0.9s var(--ease-silk);
}

.d6-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d6-reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease-silk), transform 0.7s var(--ease-silk);
}

.d6-reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Delay variants */
.d6-delay-1 {
  transition-delay: 0.12s;
}

.d6-delay-2 {
  transition-delay: 0.24s;
}

.d6-delay-3 {
  transition-delay: 0.36s;
}

.d6-delay-4 {
  transition-delay: 0.48s;
}

.d6-delay-5 {
  transition-delay: 0.60s;
}

/* ============================================================
   D6 · BRAND STORY — Cinematic Editorial Section
   ============================================================ */
.d6-brand-story {
  position: relative;
  padding: 120px 0 100px;
  background: var(--cream);
  overflow: hidden;
}

.d6-brand-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(212, 135, 156, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 0%, rgba(201, 169, 110, 0.07) 0%, transparent 55%);
  /* Removed: radial-gradient rgba(237,230,221,0.4) — 40% opaque warm-white veil was washing over the portrait */
  pointer-events: none;
}

/* Large decorative letter */
.d6-brand-story::after {
  content: 'C';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-editorial);
  font-size: clamp(220px, 28vw, 380px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.10);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
}

.d6-brand-story-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Left: Narrative */
.d6-story-text {
  max-width: 520px;
}

.d6-story-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.d6-story-eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.d6-story-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.d6-story-headline em {
  font-style: italic;
  color: var(--rose-dark);
}

.d6-story-body {
  color: var(--muted);
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.015em;
  margin-bottom: 20px;
}

.d6-story-body+.d6-story-body {
  margin-top: 0;
}

.d6-story-pull {
  border-left: 2px solid var(--rose-light);
  padding-left: 24px;
  margin: 36px 0;
  font-family: var(--font-editorial);
  font-size: 1.22rem;
  font-style: italic;
  color: var(--rose-dark);
  line-height: 1.65;
  font-weight: 400;
}

.d6-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 16px;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--sand);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.d6-story-cta:hover {
  color: var(--rose-dark);
  border-color: var(--rose);
  gap: 16px;
}

.d6-story-cta-arrow {
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease-silk);
}

.d6-story-cta:hover .d6-story-cta-arrow {
  transform: translateX(4px);
}

/* Right: Visual Composition */
.d6-story-visuals {
  position: relative;
  height: 580px;
}

.d6-story-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 480px;
  border-radius: 2px 2px 80px 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1614; /* neutral dark — prevents any light bleed through object-fit compositing */
}

.d6-story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: transparent; /* remove blush haze from img[loading="lazy"] global rule */
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transition: transform 8s ease;
}

.d6-story-img-main:hover img {
  transform: scale(1.04);
}

.d6-story-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 260px;
  border-radius: 60px 2px 2px 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.d6-story-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d6-story-stat-float {
  position: absolute;
  bottom: 90px;
  right: -10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 160px;
}

.d6-story-stat-num {
  font-family: 'Cormorant Garamond', var(--font-editorial);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--rose-dark);
  line-height: 1.4;
}

.d6-story-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* Decorative golden frame line */
.d6-story-frame-accent {
  position: absolute;
  top: 24px;
  right: 14px;
  width: 64%;
  height: 470px;
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 2px 2px 72px 2px;
  pointer-events: none;
}

/* ============================================================
   D6 · EDITORIAL CAMPAIGN — Fashion Mood Sections
   ============================================================ */
.d6-campaign {
  padding: 0;
  overflow: hidden;
}

/* Campaign: Full-bleed cinematic block */
.d6-campaign-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}

.d6-campaign-block--reverse {
  direction: rtl;
}

.d6-campaign-block--reverse>* {
  direction: ltr;
}

.d6-campaign-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.d6-campaign-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-silk);
}

.d6-campaign-block:hover .d6-campaign-img-panel img {
  transform: scale(1.04);
}

/* Subtle gradient overlay on image panel */
.d6-campaign-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(250, 248, 245, 0.3) 100%);
  pointer-events: none;
}

.d6-campaign-block--reverse .d6-campaign-img-panel::after {
  background: linear-gradient(to left, transparent 60%, rgba(250, 248, 245, 0.3) 100%);
}

.d6-campaign-text-panel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px;
  position: relative;
}

.d6-campaign-text-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 135, 156, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.d6-campaign-collection-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.d6-campaign-collection-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-light);
}

.d6-campaign-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.d6-campaign-headline em {
  font-style: italic;
  color: var(--rose-dark);
}

.d6-campaign-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 400;
  max-width: 360px;
  margin-bottom: 40px;
  letter-spacing: 0.015em;
}

.d6-campaign-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  text-decoration: none;
  transition: background 0.35s, gap 0.3s;
  width: fit-content;
}

.d6-campaign-cta:hover {
  background: var(--rose-dark);
  gap: 18px;
}

/* Campaign mood number */
.d6-campaign-mood-num {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-editorial);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(180, 100, 120, 0.10);
  line-height: 1;
  pointer-events: none;
}

/* ── Campaign: Seasonal mood strip ── */
.d6-mood-strip {
  background: var(--charcoal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.d6-mood-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(212, 135, 156, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.d6-mood-strip-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

.d6-mood-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.d6-mood-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-silk), filter 0.6s ease;
  filter: brightness(0.75) saturate(0.9);
}

.d6-mood-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.6) saturate(1.1);
}

.d6-mood-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  background: linear-gradient(to top, rgba(14, 12, 11, 0.75) 0%, transparent 55%);
}

.d6-mood-card-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.d6-mood-card-title {
  font-family: var(--font-editorial);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.d6-mood-card-title em {
  font-style: italic;
  color: var(--rose-light);
}

.d6-mood-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s, gap 0.3s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s, gap 0.3s;
}

.d6-mood-card:hover .d6-mood-card-link {
  opacity: 1;
  transform: translateY(0);
  color: var(--white);
}

.d6-mood-card-link:hover {
  gap: 14px;
}

/* ============================================================
   D6 · STYLED BY CHIC CHARMS — Lifestyle Commerce
   ============================================================ */
.d6-styled-by {
  padding: 120px 0;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}

.d6-styled-by::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(212, 135, 156, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.d6-styled-by-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.d6-styled-by-header {
  text-align: center;
  margin-bottom: 64px;
}

.d6-styled-by-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.d6-styled-by-eyebrow::before,
.d6-styled-by-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.d6-styled-by-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.d6-styled-by-headline em {
  font-style: italic;
  color: var(--rose-dark);
}

.d6-styled-by-sub {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.8;
  max-width: 420px;
  margin: 0 auto;
}

/* Lifestyle cards grid */
.d6-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.d6-lifestyle-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-silk), box-shadow 0.5s var(--ease-silk);
}

.d6-lifestyle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.d6-lifestyle-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.d6-lifestyle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-silk);
}

.d6-lifestyle-card:hover .d6-lifestyle-card-img img {
  transform: scale(1.05);
}

/* Overlay with shop now */
.d6-lifestyle-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.4s ease;
}

.d6-lifestyle-card:hover .d6-lifestyle-card-overlay {
  background: rgba(28, 25, 23, 0.25);
}

.d6-lifestyle-shop-btn {
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s, background 0.2s;
}

.d6-lifestyle-card:hover .d6-lifestyle-shop-btn {
  opacity: 1;
  transform: translateY(0);
}

.d6-lifestyle-shop-btn:hover {
  background: var(--rose);
  color: var(--white);
}

.d6-lifestyle-card-info {
  padding: 22px 24px 24px;
}

.d6-lifestyle-occasion {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.d6-lifestyle-card-title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.d6-lifestyle-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

/* ============================================================
   D6 · NEWSLETTER — Exclusive Club Invitation
   ============================================================ */
.d6-newsletter {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.d6-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.d6-newsletter-img-panel {
  position: relative;
  overflow: hidden;
}

.d6-newsletter-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 8s ease;
}

.d6-newsletter-img-panel:hover img {
  transform: scale(1.03);
}

.d6-newsletter-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(250, 241, 244, 0.4) 100%);
}

.d6-newsletter-content {
  background: var(--blush-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
}

.d6-newsletter-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative ornament */
.d6-newsletter-ornament {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
  position: relative;
}

.d6-newsletter-ornament::before {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.55rem;
  color: var(--gold);
  background: var(--blush-deep);
  padding: 0 6px;
}

.d6-newsletter-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.d6-newsletter-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.d6-newsletter-headline em {
  font-style: italic;
  color: var(--rose-dark);
}

.d6-newsletter-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 400;
  max-width: 340px;
  margin-bottom: 36px;
}

.d6-newsletter-perks {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.d6-newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 400;
}

.d6-newsletter-perk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

.d6-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
}

.d6-newsletter-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--sand);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  letter-spacing: 0.02em;
}

.d6-newsletter-input::placeholder {
  color: var(--taupe);
}

.d6-newsletter-input:focus {
  border-color: var(--rose);
  background: var(--white);
}

.d6-newsletter-btn {
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.d6-newsletter-btn:hover {
  background: var(--rose-dark);
}

.d6-newsletter-note {
  font-size: 0.7rem;
  color: var(--taupe);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ============================================================
   D6 · TESTIMONIALS — Premium Social Proof
   ============================================================ */
.d6-testimonials {
  padding: 120px 0;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.d6-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 50%, rgba(212, 135, 156, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 55%);
  pointer-events: none;
}

.d6-testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.d6-testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
}

.d6-testimonials-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
}

.d6-testimonials-headline {
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.d6-testimonials-headline em {
  font-style: italic;
  color: var(--rose-dark);
}

.d6-testi-overall {
  text-align: right;
  flex-shrink: 0;
}

.d6-testi-rating-num {
  font-family: var(--font-editorial);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

.d6-testi-rating-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin: 6px 0 4px;
}

.d6-testi-rating-label {
  font-size: 0.68rem;
  color: var(--muted-soft);
  letter-spacing: 0.08em;
}

/* Testimonial cards */
.d6-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.d6-testi-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, transform 0.4s var(--ease-silk), box-shadow 0.4s;
}

.d6-testi-card:hover {
  border-top-color: var(--rose-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.d6-testi-quote-mark {
  font-family: var(--font-editorial);
  font-size: 4rem;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: -10px;
  display: block;
  font-style: italic;
}

.d6-testi-text {
  font-family: var(--font-editorial);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 32px;
  font-weight: 400;
}

.d6-testi-divider {
  width: 32px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 24px;
}

.d6-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.d6-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blush);
}

.d6-testi-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}

.d6-testi-handle {
  font-size: 0.72rem;
  color: var(--muted-soft);
  margin-top: 2px;
}

.d6-testi-stars {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ============================================================
   D6 · BRAND MARQUEE — Cinematic Running Text
   ============================================================ */
.d6-marquee {
  background: var(--charcoal);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.d6-marquee-track {
  display: flex;
  width: max-content;
  animation: d6-marquee-scroll 22s linear infinite;
}

.d6-marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 0 32px;
  font-family: var(--font-editorial);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.d6-marquee-gem {
  display: inline-block;
  color: var(--gold);
  margin: 0 16px;
  font-size: 0.45rem;
  opacity: 0.7;
}

@keyframes d6-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   D6 · FINAL CTA — Refined Luxury Close
   ============================================================ */
.d6-final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
  background: var(--cream);
}

.d6-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212, 135, 156, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.d6-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
}

.d6-final-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.d6-final-cta-eyebrow::before,
.d6-final-cta-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.d6-final-cta-headline {
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.d6-final-cta-headline em {
  font-style: italic;
  color: var(--rose-dark);
}

.d6-final-cta-sub {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 48px;
  letter-spacing: 0.015em;
}

.d6-final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.d6-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.3s, gap 0.3s;
}

.d6-btn-primary:hover {
  background: var(--rose-dark);
  gap: 16px;
}

.d6-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 28px;
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.d6-btn-ghost:hover {
  color: var(--rose-dark);
  border-color: var(--rose);
  gap: 14px;
}

.d6-final-cta-trust {
  margin-top: 32px;
  font-size: 0.68rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.d6-cta-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose-light);
  flex-shrink: 0;
}

/* ============================================================
   D6 · FOOTER — Refined Brand Footer
   ============================================================ */
.d6-footer {
  background: var(--charcoal);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.d6-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.d6-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}

.d6-footer-brand-col {}

.d6-footer-logo {
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block;
  text-decoration: none;
  font-style: italic;
}

.d6-footer-logo span {
  color: var(--rose-light);
}

.d6-footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  font-weight: 300;
  max-width: 240px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.d6-footer-social-row {
  display: flex;
  gap: 14px;
}

.d6-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.d6-footer-social-link:hover {
  border-color: var(--rose-light);
  color: var(--rose-light);
  background: rgba(212, 135, 156, 0.08);
}

.d6-footer-col-title {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.d6-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.d6-footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}

.d6-footer-links a:hover {
  color: var(--white);
}

.d6-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 32px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.d6-footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.40);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.d6-footer-legal {
  display: flex;
  gap: 24px;
}

.d6-footer-legal a {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.25s;
}

.d6-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.70);
}

/* ============================================================
   D6 · RESPONSIVE — Mobile Luxury Experience
   ============================================================ */
@media (max-width: 1024px) {
  .d6-brand-story::after {
    display: none;
  }

  .d6-brand-story-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .d6-story-text {
    max-width: 100%;
  }

  .d6-story-visuals {
    height: 420px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .d6-campaign-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .d6-campaign-block--reverse {
    direction: ltr;
  }

  .d6-campaign-img-panel {
    min-height: 360px;
  }

  .d6-campaign-text-panel {
    padding: 56px 48px;
  }

  .d6-campaign-text-panel::before {
    display: none;
  }

  .d6-mood-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .d6-mood-strip-inner .d6-mood-card:last-child {
    display: none;
  }

  .d6-lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .d6-newsletter-inner {
    grid-template-columns: 1fr;
  }

  .d6-newsletter-img-panel {
    min-height: 340px;
  }

  .d6-newsletter-content {
    padding: 64px 48px;
  }

  .d6-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .d6-brand-story {
    padding: 80px 0;
  }

  .d6-story-visuals {
    height: 340px;
  }

  .d6-story-img-main {
    width: 80%;
    height: 300px;
  }

  .d6-story-img-accent {
    width: 52%;
    height: 190px;
  }

  .d6-story-frame-accent {
    display: none;
  }

  .d6-story-stat-float {
    right: 0;
    bottom: 60px;
  }

  .d6-campaign-img-panel {
    min-height: 280px;
  }

  .d6-campaign-text-panel {
    padding: 44px 32px;
  }

  .d6-campaign-mood-num {
    display: none;
  }

  .d6-mood-strip {
    padding: 56px 0;
  }

  .d6-mood-strip-inner {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .d6-mood-strip-inner .d6-mood-card:last-child {
    display: block;
  }

  .d6-mood-card {
    aspect-ratio: 16/9;
  }

  .d6-styled-by {
    padding: 80px 0;
  }

  .d6-lifestyle-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .d6-testimonials {
    padding: 80px 0;
  }

  .d6-testimonials-header {
    flex-direction: column;
    gap: 24px;
  }

  .d6-testi-overall {
    text-align: left;
  }

  .d6-testi-grid {
    grid-template-columns: 1fr;
  }

  .d6-final-cta {
    padding: 96px 0;
  }

  .d6-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .d6-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .d6-brand-story-inner {
    padding: 0 20px;
  }

  .d6-campaign-text-panel {
    padding: 36px 24px;
  }

  .d6-lifestyle-grid {
    padding: 0 20px;
    max-width: 100%;
  }

  .d6-newsletter-content {
    padding: 48px 28px;
  }

  .d6-testi-card {
    padding: 32px 24px;
  }

  .d6-final-cta-btns {
    flex-direction: column;
  }

  .d6-btn-primary,
  .d6-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   D6 · STORY VISUALS — Forced Reveal on about-revealed
   The section lives inside display:none until JS adds .about-revealed.
   When that transition fires, the IntersectionObserver may not re-fire,
   leaving .d6-reveal-right stuck at opacity:0. Force full fidelity here.
   ============================================================ */
.d6-brand-story.about-revealed .d6-story-visuals,
.d6-brand-story.about-revealed .d6-story-visuals.d6-reveal,
.d6-brand-story.about-revealed .d6-story-visuals.d6-reveal-right {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   D6 · MICRO INTERACTIONS — Luxury Touch
   ============================================================ */


/* Shimmer for image loading */
.d6-img-loading {
  background: linear-gradient(90deg,
      var(--parchment) 25%,
      var(--sand) 50%,
      var(--parchment) 75%);
  background-size: 200% 100%;
  animation: d6-shimmer 1.4s ease-in-out infinite;
}

@keyframes d6-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Gold divider ornament */
.d6-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 220px;
}

.d6-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

.d6-divider-line:last-child {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.d6-divider-gem {
  color: var(--gold);
  font-size: 0.5rem;
  opacity: 0.7;
}
