/* ─────────────────────────────────────── */
/*  DESIGN TOKENS  — Rose Gold Luxury      */
/* ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-cream: #F5EFE8;
  /* warm cream page bg */
  --bg-nude: #EDE0D4;
  /* slightly deeper nude */
  --bg-dark: #1A1210;
  /* near-black for CTA */

  /* Brand Colours */
  --rose: #C89890;
  /* soft rose gold primary */
  --rose-light: #DDB8B0;
  /* lighter rose – hover accents */
  --rose-deep: #A67268;
  /* deeper for active/focus */
  --rose-pale: rgba(200, 152, 144, 0.12);
  /* very light tint */

  /* Text */
  --charcoal: #2C2220;
  /* deep charcoal – main text */
  --text-mid: rgba(44, 34, 32, 0.88);
  --text-dim: rgba(44, 34, 32, 0.72);


  /* Borders */
  --border: rgba(200, 152, 144, 0.22);
  --border-active: rgba(200, 152, 144, 0.55);

  /* Fonts */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;

  /* Motion */
  --ease: 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─────────────────────────────────────── */
/*  RESET & BASE                           */
/* ─────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg-cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─────────────────────────────────────── */
/*  TYPOGRAPHY UTILITIES                   */
/* ─────────────────────────────────────── */
.serif {
  font-family: var(--serif);
  font-weight: 500;
}

/* Global section label — ALL caps, strong, rose-gold */
.section-label {
  font-family: var(--sans);
  font-size: 0.95rem; /* Increased size 1.5x */
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--charcoal); /* Much darker contrast */
  margin-bottom: 2rem; /* Added spacing */
  display: block;
  /* Thin divider flanking the text */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--rose-deep);
  opacity: 0.45;
}
/* Left-aligned sections (story) override */
.story-text .section-label {
  justify-content: flex-start;
}

.gold-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 0 auto;
}

/* hide mobile line-break on desktop */
.mob-break {
  display: none;
}

@media (max-width: 600px) {
  .mob-break {
    display: inline;
  }
}


/* ─────────────────────────────────────── */
/*  NAV BAR                                */
/* ─────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.35rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

#navbar.scrolled {
  background: rgba(245, 239, 232, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: block;
  text-decoration: none;
  transition: transform var(--ease);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo img {
  width: clamp(130px, 14vw, 175px);
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-light), var(--rose-deep));
  padding: 0.7rem 1.8rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 4px 18px rgba(166, 114, 104, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 6px 28px rgba(166, 114, 104, 0.5);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────── */
/*  SECTION 1 — HERO                       */
/* ─────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: blur(0.5px);
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.12);
  }
}

/* Lighter overlay — image more visible */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(245, 239, 232, 0.60) 0%,
      rgba(245, 239, 232, 0.68) 40%,
      rgba(237, 224, 212, 0.80) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 5rem 2.5rem 4rem;
  margin-top: -3rem;
  /* pull content upward */
}

/* Attention bar */
.hero-attention {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background: rgba(26, 18, 16, 0.7);
  border: 1px solid rgba(200, 152, 144, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.1rem 2.8rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.3s forwards;
  box-shadow: 0 6px 24px rgba(44, 34, 32, 0.14);
  max-width: 92%;
  line-height: 1.55;
}

/* Hero heading */
.hero-question {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.55s forwards;
}

.hero-question em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-price {
  font-weight: 700;
  font-size: 1.1em;
  color: var(--bg-dark); /* Extremely dark for highest contrast */
}

.hero-price-suffix {
  font-style: italic;
  font-weight: 600;
  color: var(--bg-dark);
}

.hero-main-heading {
  font-size: clamp(1.6rem, 3.8vw, 3rem); /* Slightly smaller than main Hero question */
}

.hero-focus-text {
  font-weight: 700;
  color: var(--bg-dark); /* Strong near-black contrast */
}

.hero-sub-text {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.72s forwards;
}

.hero-divider {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 2rem auto;
  opacity: 0;
  animation: fadeSlideUp 0.9s 0.88s forwards;
}

.hero-masterclass {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 600;
  color: var(--bg-dark);
  opacity: 0;
  animation: fadeSlideUp 0.9s 1.02s forwards;
  margin-bottom: 0.8rem;
}

/* Meta row */
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8rem;
  margin: 2.2rem 0 3rem;
  opacity: 0;
  animation: fadeSlideUp 0.9s 1.18s forwards;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  padding: 1.4rem 2.8rem;
  border-radius: 4px;
  border: 1px solid rgba(200, 152, 144, 0.3);
  box-shadow: 0 4px 20px rgba(44, 34, 32, 0.08);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.hero-meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
}

.hero-meta-value {
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--bg-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.meta-sep {
  width: 1px;
  height: 48px;
  background: var(--rose-deep);
  opacity: 0.35;
}

/* CTA */
.hero-cta-wrap {
  opacity: 0;
  animation: fadeSlideUp 0.9s 1.36s forwards, floatCTA 3s 2.4s ease-in-out infinite;
}

/* ─── Button ─── */
.btn-gold {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 50%, var(--rose-deep) 100%);
  padding: 1.15rem 3.4rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 6px 28px rgba(166, 114, 104, 0.38), 0 2px 8px rgba(44, 34, 32, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold:hover {
  box-shadow: 0 10px 40px rgba(166, 114, 104, 0.55), 0 4px 16px rgba(44, 34, 32, 0.2);
  transform: translateY(-3px);
}

.btn-dark {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-dark); /* Solid high-contrast near-black */
  padding: 1.25rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 12px 32px rgba(26, 18, 16, 0.25);
  text-align: center;
}

.btn-dark:hover {
  background: #2c2220; /* Slightly lighter charcoal on hover */
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 18, 16, 0.4);
}

.cta-section-wrap {
  text-align: center;
  padding: 2.5rem 0 0;
  width: 100%;
}

/* Animations */
@keyframes floatCTA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────── */
/*  SECTION 2 — AUTHORITY / STATS          */
/* ─────────────────────────────────────── */
#authority {
  padding: 8rem 6vw;
  background: #fff;
  position: relative;
}

.authority-header {
  text-align: center;
  margin-bottom: 3.5rem; /* was 5rem */
}

.authority-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}

.authority-header h2 em {
  font-style: italic;
  color: var(--rose);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}

.stat-block {
  padding: 2.8rem 2rem; /* tighter than before (was 3.5rem 2.5rem) */
  text-align: center;
  border-right: 1px solid var(--border);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.stat-block:last-child {
  border-right: none;
}

.stat-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.9rem;
}

.stat-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 0.8rem auto 1.2rem;
}

.stat-desc {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 230px;
  margin: 0 auto;
}

/* ─────────────────────────────────────── */
/*  SECTION 3 — LOOKS (Image Grid)         */
/* ─────────────────────────────────────── */
#looks {
  padding: 8rem 6vw;
  background: var(--bg-nude);
}

.looks-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.looks-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.looks-header h2 em {
  font-style: italic;
  color: var(--rose-deep);
}

/* Uniform 2×3 grid */
.looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.look-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* aspect-ratio replaces fixed height — no cropping */
  aspect-ratio: 4 / 5;
}

/* Remove all nth-child height overrides */
.look-card:nth-child(1),
.look-card:nth-child(2),
.look-card:nth-child(3),
.look-card:nth-child(4),
.look-card:nth-child(5),
.look-card:nth-child(6) {
  grid-column: auto;
  grid-row: auto;
  height: auto;
  /* let aspect-ratio control height */
}

.look-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keep faces / upper body in frame */
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: inherit;
}

.look-card:hover img {
  transform: scale(1.04);
}

.look-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(26, 18, 16, 0.72) 0%,
      rgba(26, 18, 16, 0.28) 55%,
      transparent 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.6rem;
}

.look-card:hover .look-overlay {
  opacity: 1;
}

/* Card number badge always visible */
.look-card-num {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.look-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(8px);
  transition: transform 0.45s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.look-card:hover .look-label {
  transform: translateY(0);
}

.look-gold-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 152, 144, 0);
  transition: border-color 0.45s ease;
  z-index: 4;
}

.look-card:hover .look-gold-border {
  border-color: rgba(200, 152, 144, 0.5);
}

.look-card-inner {
  position: relative;
  height: 100%;
}

/* ─────────────────────────────────────── */
/*  SECTION 4 — WHAT YOU WILL GET          */
/* ─────────────────────────────────────── */
#offerings {
  padding: 8rem 6vw;
  background: #fff;
}

.offerings-header {
  text-align: center;
  margin-bottom: 5rem;
}

.offerings-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
}

.offerings-header h2 em {
  font-style: italic;
  color: var(--rose);
}

/* ── Accordion ── */
.accordion {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.accordion-item {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease,
    border-color var(--ease), background var(--ease);
}

.accordion-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.accordion-item.open {
  border-color: var(--border-active);
  background: rgba(200, 152, 144, 0.05);
}

.accordion-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--rose-light), var(--rose));
  transition: height 0.45s ease;
}

.accordion-item.open::before {
  height: 100%;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  color: var(--charcoal);
}

.accordion-number {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: rgba(200, 152, 144, 0.55);
  line-height: 1;
  flex-shrink: 0;
  min-width: 54px;
  transition: color var(--ease);
}

.accordion-item.open .accordion-number {
  color: rgba(200, 152, 144, 0.95);
}

.accordion-trigger-text {
  flex: 1;
}

.accordion-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.35rem;
  display: block;
}

.accordion-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
}

.accordion-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-active);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}

.accordion-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 2;
  transition: transform var(--ease);
}

.accordion-item.open .accordion-icon {
  background: rgba(200, 152, 144, 0.15);
  border-color: var(--rose);
}

.accordion-item.open .accordion-icon svg {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-body-inner {
  padding: 0 2.5rem 2.8rem 8.5rem;
}

/* ── Accordion inner: 6-look grid ── */
.acc-looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.acc-look-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}

.acc-look-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--rose), transparent);
  transition: height 0.38s ease;
}

.acc-look-card:hover::before {
  height: 100%;
}

.acc-look-card:hover {
  border-color: var(--border-active);
  background: rgba(200, 152, 144, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 34, 32, 0.08);
}

/* Card number (01–06) top-left */
.acc-card-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(200, 152, 144, 0.75);
  line-height: 1;
  margin-bottom: 0.8rem;
  display: block;
}

.acc-look-title {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.acc-look-desc {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
}

/* ── Accordion inner: bullet lists ── */
.acc-sub-text {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ── Numbered list (sections 02, 03, 04) ── */
.acc-numbered-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

/* Vertical divider between columns */
.acc-numbered-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border);
  pointer-events: none;
}

.acc-num-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.05rem 1.6rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}

.acc-num-item:hover {
  background: rgba(200, 152, 144, 0.04);
}

/* Remove bottom border from last row */
.acc-numbered-list .acc-num-item:last-child,
.acc-numbered-list .acc-num-item:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

/* Left column items get right padding, right column get left padding */
.acc-num-item:nth-child(odd) {
  padding-right: 2.4rem;
}

.acc-num-item:nth-child(even) {
  padding-left: 2.4rem;
}

.acc-num-badge {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 0.15rem;
  letter-spacing: 0.02em;
}

.acc-num-text {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
}


/* ─────────────────────────────────────── */
/*  SECTION 5 — STORY                      */
/* ─────────────────────────────────────── */
#story {
  padding: 8rem 6vw;
  background: var(--bg-nude);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text .section-label {
  text-align: left;
}

.story-heading {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.story-heading em {
  font-style: italic;
  color: var(--rose-deep);
}

.story-body p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.95;
  margin-bottom: 1.2rem;
}

.story-body strong {
  color: var(--rose-deep);
  font-weight: 600;
}

.story-image-wrap {
  position: relative;
}

.story-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.story-image-frame img {
  object-position: center top;
}

.story-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(237, 224, 212, 0.55) 100%);
  z-index: 1;
}

.story-image-border {
  position: absolute;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border: 1px solid var(--border-active);
  z-index: 0;
  pointer-events: none;
}

.story-gold-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: #fff;
  border: 1px solid var(--border-active);
  padding: 1.1rem 1.6rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(44, 34, 32, 0.1);
}

.story-gold-badge .badge-num {
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--rose-deep);
  line-height: 1;
}

.story-gold-badge .badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

/* ─────────────────────────────────────── */
/*  SECTION 6 — FINAL CTA                  */
/* ─────────────────────────────────────── */
#final-cta {
  position: relative;
  padding: 10rem 6vw;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}

#final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: 580px;
  background: radial-gradient(ellipse, rgba(200, 152, 144, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.final-cta-label {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1.4rem;
  display: block;
}

.final-cta-heading {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #F5EFE8;
  margin-bottom: 0.5rem;
}

.final-cta-heading em {
  font-style: italic;
  color: var(--rose-light);
}

.final-cta-sub {
  font-size: 0.93rem;
  color: rgba(245, 239, 232, 0.55);
  margin-bottom: 3.2rem;
  letter-spacing: 0.05em;
}

.urgency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.urgency-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: rgba(245, 239, 232, 0.68);
  letter-spacing: 0.08em;
}

.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 6px var(--rose-light);
  }

  50% {
    opacity: 0.35;
    box-shadow: none;
  }
}

.urgency-sep {
  width: 1px;
  height: 18px;
  background: rgba(200, 152, 144, 0.35);
}

.final-cta-note {
  margin-top: 2rem;
  font-size: 0.76rem;
  color: rgba(245, 239, 232, 0.4);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────── */
/*  FOOTER                                 */
/* ─────────────────────────────────────── */
footer {
  background: var(--bg-nude);
  border-top: 1px solid var(--border);
  padding: 3.5rem 6vw;
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.8rem;
  text-decoration: none;
  transition: transform var(--ease);
}

.footer-logo:hover {
  transform: scale(1.04);
}

.footer-logo img {
  width: clamp(190px, 48vw, 250px);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.73rem;
  color: var(--text-dim);
}

/* ─────────────────────────────────────── */
/*  SCROLL REVEAL                          */
/* ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─────────────────────────────────────── */
/*  CURSOR GLOW                            */
/* ─────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 152, 144, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ─────────────────────────────────────── */
/*  RESPONSIVE — 900px                     */
/* ─────────────────────────────────────── */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2.8rem 2rem;
  }

  .stat-block:last-child {
    border-bottom: none;
  }

  .looks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* On tablet, slightly taller aspect to show more of the subject */
  .look-card,
  .look-card:nth-child(1),
  .look-card:nth-child(2),
  .look-card:nth-child(3),
  .look-card:nth-child(4),
  .look-card:nth-child(5),
  .look-card:nth-child(6) {
    height: auto;
    /* stay aspect-ratio driven */
    aspect-ratio: 3 / 4;
    /* slightly less tall on tablet */
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-image-border {
    display: none;
  }

  .story-gold-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .acc-looks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .acc-numbered-list {
    grid-template-columns: 1fr;
  }

  .acc-numbered-list::before {
    display: none;
  }

  .acc-num-item:nth-child(odd),
  .acc-num-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .accordion-body-inner {
    padding: 0 1.8rem 2.5rem 1.8rem;
  }

  .accordion-trigger {
    padding: 1.6rem 1.8rem;
    gap: 1.2rem;
  }
}

/* ─────────────────────────────────────── */
/*  RESPONSIVE — 600px                     */
/* ─────────────────────────────────────── */
@media (max-width: 600px) {

  /* ── Navbar — hidden on mobile ── */
  #navbar {
    display: none;
  }

  /* ── Hero content — no navbar to clear, start from top ── */
  .hero-content {
    padding: 2.5rem 1.6rem 3rem; /* Reduced top spacing */
    margin-top: 0;
  }

  /* ── Attention bar ── */
  .hero-attention {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 1.2rem 1.6rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: 4px;
    line-height: 1.6;
  }

  /* ── Hero headings ── */
  .hero-question {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .hero-sub-text {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .hero-masterclass {
    font-size: clamp(1.4rem, 5.5vw, 1.7rem);
  }

  /* ── Hero meta row ── */
  .hero-meta {
    flex-direction: column;
    gap: 1.4rem;
    padding: 1.6rem 1.6rem;
    margin: 1.6rem 0 2.5rem;
  }

  .hero-meta-value {
    font-size: 1.35rem; /* Larger and clearer size for mobile */
  }

  .meta-sep {
    width: 48px;
    height: 1px;
  }

  /* ── Look grid ── */
  .looks-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .look-card,
  .look-card:nth-child(n) {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  /* ── Accordion ── */
  .acc-looks-grid {
    grid-template-columns: 1fr;
  }

  .accordion-number {
    display: none;
  }

  /* ── Sections padding ── */
  #authority,
  #looks,
  #offerings,
  #story,
  #final-cta {
    padding: 4rem 5vw;
  }

  .authority-header {
    margin-bottom: 2.2rem; /* Tighten heading gap */
  }

  .stat-block {
    padding: 2.2rem 1.5rem; /* Tighten stat gaps */
  }
}

/* ─────────────────────────────────────── */
/*  RESPONSIVE — 480px (small phones)      */
/* ─────────────────────────────────────── */
@media (max-width: 480px) {
  #navbar {
    padding: 0.75rem 4vw;
  }

  .nav-logo img {
    width: 90px;
  }

  .nav-cta {
    padding: 0.5rem 0.8rem;
    font-size: 0.56rem;
  }

  /* Clear slightly taller navbar on very small screens */
  .hero-content {
    padding-top: 5rem;
    margin-top: 0;
  }

  .hero-attention {
    font-size: 0.65rem;
    padding: 0.9rem 1rem;
    letter-spacing: 0.16em;
  }

  .hero-meta {
    padding: 1rem 1.2rem;
  }

  .hero-meta-label {
    font-size: 0.6rem;
  }

  .hero-meta-value {
    font-size: 1rem;
  }

  .btn-gold {
    padding: 1rem 2rem;
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════ */
/*  POPUP MODAL — Lead Capture Form            */
/* ═══════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(26, 18, 16, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-cream);
  border: 1px solid var(--border-active);
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(44,34,32,0.22), 0 4px 16px rgba(44,34,32,0.1);
  padding: 2.8rem 2.6rem 2.6rem;
  position: relative;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scrollbar-width: none;
}
.modal-card::-webkit-scrollbar { display: none; }
.modal-overlay.active .modal-card { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,152,144,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--ease);
  color: var(--text-mid);
  font-size: 1.15rem;
  line-height: 1;
  padding: 0;
  font-family: var(--sans);
}
.modal-close:hover {
  background: rgba(200,152,144,0.22);
  border-color: var(--rose);
  color: var(--rose-deep);
}

.modal-label {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}
.modal-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.modal-title em { font-style: italic; color: var(--rose-deep); }
.modal-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  margin: 1rem 0 1.6rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.42rem;
}
.form-label span { color: var(--rose); }

.form-input,
.form-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid rgba(200,152,144,0.3);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,152,144,0.15);
}
.form-input.error,
.form-select.error {
  border-color: #b03a2e;
  box-shadow: 0 0 0 3px rgba(176,58,46,0.1);
}

.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--rose);
  pointer-events: none;
}

.form-error {
  display: none;
  font-size: 0.73rem;
  font-weight: 500;
  color: #b03a2e;
  margin-top: 0.35rem;
}
.form-error.show { display: block; }

.btn-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--rose) 50%, var(--rose-deep) 100%);
  padding: 1.1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--ease);
  box-shadow: 0 6px 24px rgba(166,114,104,0.38);
  margin-top: 0.4rem;
  position: relative;
  overflow: hidden;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(166,114,104,0.5);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.modal-trust {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.73rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.modal-trust::before,
.modal-trust::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-api-error {
  display: none;
  background: rgba(176,58,46,0.07);
  border: 1px solid rgba(176,58,46,0.22);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #b03a2e;
  margin-top: 0.9rem;
  text-align: center;
}
.form-api-error.show { display: block; }

@media (max-width: 600px) {
  .modal-card { padding: 2.2rem 1.4rem 2rem; border-radius: 6px; }
  .modal-title { font-size: 1.5rem; }
  .form-input, .form-select { font-size: 1rem; padding: 0.9rem 0.9rem; }
  .btn-submit { padding: 1.1rem; font-size: 0.78rem; }
}