/* ============================================
   THE ENERGETIC PROJECTOR — Bianca
   Brand Style Guide: Quicksand + Official Palette
   Exact colours from brand image:
   Gold:   #D4AE35  (Mustard/Gold)
   Cream:  #FCF2E8  (Warm cream/off-white)
   Rose:   #B5646F  (Rose/Mauve)
   Blue:   #5679B4  (Soft blue)
   Navy:   #1F2344  (Deep navy)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Official brand palette — exact values from brand guide ── */
  --gold:        #D4AE35;
  --gold-light:  #DFC05C;
  --gold-pale:   #F5EDCA;
  --cream:       #FCF2E8;
  --cream-mid:   #F4E4D0;
  --cream-dark:  #E8D3B8;
  --rose:        #B5646F;
  --rose-light:  #C98088;
  --rose-pale:   #F0DADB;
  --blue:        #5679B4;
  --blue-light:  #7896C8;
  --blue-pale:   #D8E2F2;
  --navy:        #1F2344;
  --navy-soft:   #2B3060;
  --navy-muted:  #3D4278;

  /* ── Semantic tokens ── */
  --bg:          var(--cream);
  --bg-alt:      #FFF9F2;
  --text-body:   #1F2344;
  --text-muted:  #5679B4;   /* brand blue for secondary text */
  --text-light:  #8A90B8;
  --border:      rgba(31,35,68,0.13);
  --shadow:      0 2px 24px rgba(31,35,68,0.07);
  --shadow-md:   0 6px 32px rgba(31,35,68,0.13);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text-body);
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Quicksand', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: 0.04em; }

p  { color: var(--navy); font-size: 1rem; margin-bottom: 1rem; font-weight: 400; }

a  { color: inherit; text-decoration: none; }

em { font-style: italic; }

strong { font-weight: 600; }

.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

section:nth-child(even) { background-color: var(--bg-alt); }

/* ── NAV ─────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(252,242,232,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,174,53,0.18);
  padding: 1rem 0;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-nav__logo {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.site-nav__logo .star {
  color: var(--gold);
  font-size: 0.9rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.site-nav__links a {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}

.site-nav__links a:hover { color: var(--rose); }

.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--navy) !important; color: #fff !important; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

/* Primary — rose filled (brand button 1) */
.btn--primary {
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btn--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Rose — same as primary */
.btn--rose {
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btn--rose:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* Outline — blue border/text (brand button 2) */
.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btn--outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Outline rose */
.btn--outline-rose {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn--outline-rose:hover {
  background: var(--rose);
  color: #fff;
}

/* Gold accent */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── DIVIDER ─────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.divider--left { margin-left: 0; }

.divider--rose { background: var(--rose); }

/* ── LINK ARROW ──────────────────────────── */
.link-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}
.link-arrow:hover { color: var(--rose); gap: 0.7rem; }

/* ── TAG PILL ────────────────────────────── */
.tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--rose-pale);
  color: var(--rose);
  border: 1px solid rgba(181,100,111,0.2);
}

/* ── LINK-IN-BIO HOME ────────────────────── */
.bio-hero {
  min-height: calc(100vh - 60px);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.bio-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,100,111,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.bio-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,174,53,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.bio-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.bio-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cream-mid);
  box-shadow: 0 0 0 6px rgba(181,100,111,0.12);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bio-name {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bio-handle {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.bio-tagline {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--navy-muted);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.bio-socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.bio-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}

.bio-social:hover {
  background: var(--rose-pale);
  border-color: var(--rose-light);
  transform: translateY(-2px);
}

.bio-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 2rem;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--navy);
  transition: all 0.22s ease;
  text-align: left;
  box-shadow: 0 1px 6px rgba(31,35,68,0.05);
}

.bio-link:hover {
  border-color: var(--rose);
  background: var(--rose-pale);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(181,100,111,0.14);
}

.bio-link--accent {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.bio-link--accent:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.bio-link__icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bio-link--accent .bio-link__icon { background: rgba(255,255,255,0.12); }

.bio-link__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.bio-link__text strong {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bio-link__text small {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.bio-link--accent .bio-link__text small { color: rgba(255,255,255,0.6); }

.bio-link__arrow {
  font-size: 1.1rem;
  color: var(--text-light);
  transition: transform 0.2s;
}

.bio-link--accent .bio-link__arrow { color: rgba(255,255,255,0.5); }
.bio-link:hover .bio-link__arrow { transform: translateX(3px); }

.bio-values {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-wrap: wrap;
  justify-content: center;
}

.bio-values__sep { color: var(--gold); font-size: 0.55rem; }

/* ── PAGE HERO ───────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { margin-bottom: 1rem; }

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 400;
}

/* Photo-backed page hero variant */
.page-hero--img {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7rem 0 5rem;
  border-bottom: none;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31,35,68,0.58) 0%,
    rgba(31,35,68,0.48) 60%,
    rgba(31,35,68,0.68) 100%
  );
}

/* ── ABOUT SPLIT ─────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-split__image {
  aspect-ratio: 3/4;
  background: var(--cream-mid);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--cream-dark);
}

.about-split__text p {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}

.about-facts {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 400;
}

.about-fact__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.58rem;
  flex-shrink: 0;
}

/* ── OFFERINGS GRID ─────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.offering-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.offering-card__icon {
  width: 48px; height: 48px;
  background: var(--rose-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.offering-card h3 { font-size: 1.2rem; }

.offering-card p {
  color: var(--navy);
  font-size: 0.95rem;
  flex: 1;
  font-weight: 400;
}

/* ── PRODUCTS GRID ──────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.product-card__img {
  aspect-ratio: 16/10;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card h3 { font-size: 1.15rem; }

.product-card p {
  color: var(--navy);
  font-size: 0.9rem;
  flex: 1;
  font-weight: 400;
}

.product-card .btn {
  align-self: flex-start;
  padding: 0.55rem 1.3rem;
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

/* ── PRODUCT DETAIL HERO ────────────────── */
.product-hero {
  background: var(--cream);
  padding: 6rem 0 4rem;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.product-hero__visual {
  background: var(--cream-mid);
  border-radius: 20px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  overflow: hidden;
}

.product-hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-hero__content h1 { margin-bottom: 0.5rem; }

.product-hero__content .tagline {
  font-size: 1.05rem;
  color: var(--blue);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 500;
}

/* ── BENEFITS LIST ───────────────────────── */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.benefits-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Light variant — for dark navy backgrounds */
.benefits-list--light li,
section[style*="background:var(--navy)"] .benefits-list li,
section[style*="background: var(--navy)"] .benefits-list li {
  color: #FCF2E8 !important;
}

.benefits-list--light li::before,
section[style*="background:var(--navy)"] .benefits-list li::before,
section[style*="background: var(--navy)"] .benefits-list li::before {
  color: var(--gold) !important;
}

/* ── VIDEO EMBED ─────────────────────────── */
.video-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--navy);
  margin-top: 2rem;
}

.video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ── FAQ ─────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.02em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.4rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid var(--border);
  font-weight: 400;
}

/* ── VALUES GRID ─────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-item__icon { font-size: 2rem; margin-bottom: 1rem; }

.value-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 400;
}

/* ── TESTIMONIALS ────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.testimonial-card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.testimonial-card__author {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

/* ── JOURNAL GRID ────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.journal-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.journal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.journal-card__img {
  aspect-ratio: 16/9;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.journal-card__body { padding: 1.5rem; }

.journal-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.journal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.journal-card p {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 400;
}

.journal-card__date {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── CONTACT ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1.1rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-body);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info { padding-top: 1rem; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info p {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.8;
  font-weight: 400;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  transition: all 0.2s;
  background: #fff;
}

.social-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-pale);
}

/* ── NEWSLETTER STRIP ───────────────────── */
.newsletter-strip {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
}

.newsletter-strip h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.newsletter-strip p {
  color: rgba(252,242,232,0.65);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

/* ── INTRO STRIP ─────────────────────────── */
.intro-strip {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}

.intro-strip p {
  color: rgba(252,242,232,0.75);
  font-size: 1.3rem;
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.intro-strip em { color: var(--gold); }

/* ── BREADCRUMB ──────────────────────────── */
.breadcrumb {
  padding: 1rem 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.breadcrumb__inner a { color: var(--blue); transition: opacity 0.2s; }
.breadcrumb__inner a:hover { opacity: 0.7; }
.breadcrumb__sep { color: var(--text-light); }

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(252,242,232,0.6);
  max-width: 260px;
  margin-top: 0.75rem;
  line-height: 1.7;
  font-weight: 400;
}

.footer-brand .site-nav__logo {
  color: #fff;
}

.footer-brand .site-nav__logo .star {
  color: var(--gold);
}

.footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(252,242,232,0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--rose-light); }

.footer-bottom {
  border-top: 1px solid rgba(252,242,232,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(252,242,232,0.35);
  margin: 0;
  font-weight: 400;
}

.footer-bottom a {
  color: var(--gold);
  font-size: 0.8rem;
}

/* Footer social buttons on dark bg */
.site-footer .social-btn {
  background: rgba(252,242,232,0.08);
  border-color: rgba(252,242,232,0.15);
  color: rgba(252,242,232,0.7);
}

.site-footer .social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

/* ── UTILS ───────────────────────────────── */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .site-nav__links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }

  .site-nav__links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split__image { max-height: 340px; aspect-ratio: 4/3; }

  .offerings-grid,
  .products-grid,
  .testimonials-grid,
  .journal-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { justify-content: center; text-align: center; }

  .product-hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .bio-avatar { width: 90px; height: 90px; }
  .bio-link { padding: 0.85rem 1rem; }
  .bio-link__icon { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════
   LUMINA CHAT WIDGET
   Bianca's AI guide — The Energetic Projector
   ═══════════════════════════════════════════ */

/* ── Trigger bubble ── */
#lumina-widget {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  font-family: 'Quicksand', system-ui, sans-serif;
}

#lumina-trigger {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.3rem 0.7rem 0.9rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(31,35,68,0.28);
  transition: all 0.25s ease;
  position: relative;
}

#lumina-trigger:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(181,100,111,0.35);
}

#lumina-trigger.active {
  background: var(--rose);
}

#lumina-trigger-icon {
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

#lumina-unread {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--rose);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
  animation: lumina-pulse 2s infinite;
}

@keyframes lumina-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

/* ── Panel ── */
#lumina-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  width: 370px;
  max-height: 600px;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 12px 56px rgba(31,35,68,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.28s ease, transform 0.28s ease;
  border: 1px solid var(--border);
}

#lumina-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* ── Header ── */
#lumina-header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

#lumina-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#lumina-avatar {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

#lumina-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

#lumina-status {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

#lumina-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

#lumina-close:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Gate (lead capture) ── */
#lumina-gate {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#lumina-gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

#lumina-gate-avatar {
  width: 54px;
  height: 54px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 0 8px rgba(212,174,53,0.12);
}

#lumina-gate-hello {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

#lumina-gate-sub {
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.6;
  margin: 0.25rem 0 1rem;
  max-width: 280px;
}

#lumina-gate-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

#lumina-gate-form input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

#lumina-gate-form input:focus {
  border-color: var(--rose);
}

#lumina-gate-btn {
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.8rem 1.5rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.25rem;
}

#lumina-gate-btn:hover {
  background: var(--navy);
  transform: translateY(-1px);
}

#lumina-gate-privacy {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  font-weight: 400;
}

/* ── Messages ── */
#lumina-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}

#lumina-messages::-webkit-scrollbar { width: 4px; }
#lumina-messages::-webkit-scrollbar-track { background: transparent; }
#lumina-messages::-webkit-scrollbar-thumb { background: var(--cream-dark); border-radius: 4px; }

.lmsg {
  max-width: 88%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 400;
  word-wrap: break-word;
}

.lmsg a {
  color: var(--blue);
  text-decoration: underline;
}

.lmsg--bot {
  background: #fff;
  color: var(--navy);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(31,35,68,0.06);
}

.lmsg--user {
  background: var(--navy);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.lmsg--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.8rem 1rem;
  min-width: 56px;
}

.lmsg--typing span {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: ltyping 1.2s infinite;
}

.lmsg--typing span:nth-child(2) { animation-delay: 0.2s; }
.lmsg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes ltyping {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1;   }
}

/* ── Quick replies ── */
#lumina-quick {
  padding: 0 1.25rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  flex-shrink: 0;
}

#lumina-quick button {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
}

#lumina-quick button:hover {
  background: var(--rose-pale);
  border-color: var(--rose);
  color: var(--rose);
}

/* ── Input row ── */
#lumina-input-row {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  background: #fff;
  flex-shrink: 0;
}

#lumina-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--navy);
  resize: none;
  outline: none;
  line-height: 1.5;
  max-height: 120px;
  background: var(--cream);
  transition: border-color 0.2s;
}

#lumina-input:focus { border-color: var(--rose); }

#lumina-send {
  width: 36px;
  height: 36px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

#lumina-send:hover { background: var(--navy); transform: scale(1.05); }
#lumina-send:disabled { background: var(--cream-dark); cursor: not-allowed; transform: none; }

/* ── Mobile ── */
@media (max-width: 480px) {
  #lumina-panel {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: 5rem;
    max-height: 75vh;
  }

  #lumina-widget {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
