/* ==========================================================
   SpaLight By V: Core Stylesheet
   Lifted verbatim from the approved Wix homepage design.
   Design tokens, typography, buttons, nav, all home sections.
   ========================================================== */

/* ==========================================
   DESIGN TOKENS
========================================== */
:root {
  --color-cream:  #F7F1E8;
  --color-beige:  #E8D9C8;
  --color-gold:   #C89B3C;
  --color-gold-light: #D9B55A;
  --color-brown:  #4A3426;
  --color-brown-light: #6B4E3D;
  --color-sage:   #8B9B82;
  --color-sage-light: #A8B89F;
  --color-white:  #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;
  --font-label:   'Montserrat', system-ui, sans-serif;

  --shadow-card:  0 4px 32px rgba(74,52,38,0.10);
  --shadow-soft:  0 2px 16px rgba(74,52,38,0.07);
  --radius-card:  14px;
  --radius-btn:   50px;

  --max-width: 1200px;
  --section-pad: 96px 24px;
  --section-pad-sm: 64px 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-cream);
  color: var(--color-brown);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   TYPOGRAPHY UTILITIES
========================================== */
.h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
}
.h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.3;
}
.label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.body-lg {
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ==========================================
   BUTTONS
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-btn);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-brown);
  box-shadow: 0 4px 20px rgba(200,155,60,0.35);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  box-shadow: 0 6px 28px rgba(200,155,60,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-brown);
  border: 2px solid var(--color-brown);
}
.btn-outline:hover { background: var(--color-brown); color: var(--color-cream); }

.btn-outline-cream {
  background: transparent;
  color: var(--color-cream);
  border: 2px solid var(--color-cream);
}
.btn-outline-cream:hover { background: var(--color-cream); color: var(--color-brown); }

.btn-gold-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.btn-gold-outline:hover { background: var(--color-gold); color: var(--color-brown); }

/* ==========================================
   NAVIGATION
========================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,241,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,155,60,0.15);
  transition: box-shadow 0.3s;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brown);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--color-gold); }

.nav-cta { margin-left: 12px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: 0.3s;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-brown);
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(247,241,232,0.97) 0%,
      rgba(247,241,232,0.88) 45%,
      rgba(247,241,232,0.4) 70%,
      rgba(74,52,38,0.15) 100%
    );
  z-index: 1;
}

/* Real product photo: hero right side */
.hero-candle-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.97) saturate(1.05);
}

/* Fade edge so photo blends into the cream gradient */
.hero-candle-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(247,241,232,0.85) 0%,
    rgba(247,241,232,0.15) 30%,
    transparent 60%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
  width: 100%;
}

.hero-inner {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold);
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-brown-light);
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero-body {
  font-size: 1.05rem;
  color: var(--color-brown);
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item span.icon {
  width: 34px;
  height: 34px;
  background: rgba(200,155,60,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-trust-item span.text {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-brown);
  opacity: 0.7;
}

.hero-quote {
  border-left: 3px solid var(--color-gold);
  padding: 20px 0 20px 24px;
  margin: 36px 0;
}

.hero-quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-sage);
  font-weight: 400;
}

/* ==========================================
   WELCOME / INTRO SECTION
========================================== */
.welcome {
  padding: var(--section-pad);
  background: var(--color-cream);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-image {
  position: relative;
}

.welcome-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--color-beige) 0%, var(--color-gold) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  text-align: center;
  padding: 40px;
}

.image-placeholder .ph-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.7;
}

.image-placeholder p {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(74,52,38,0.5);
}

.welcome-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--color-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--color-white);
  text-align: center;
  padding: 16px;
  line-height: 1.35;
  box-shadow: var(--shadow-card);
}

.welcome-eyebrow {
  color: var(--color-gold);
  margin-bottom: 16px;
}

.welcome-body {
  color: var(--color-brown);
  opacity: 0.8;
  margin-bottom: 24px;
}

.welcome-cta {
  margin-top: 32px;
}

/* ==========================================
   WHY CHOOSE US
========================================== */
.why {
  padding: var(--section-pad);
  background: var(--color-beige);
}

.why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.why-header .eyebrow {
  color: var(--color-gold);
  margin-bottom: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-sage));
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(74,52,38,0.14);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(200,155,60,0.15), rgba(139,155,130,0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-brown);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 16px;
}

.why-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-checks li {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-sage);
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-checks li::before {
  content: '✓';
  font-weight: 700;
  color: var(--color-gold);
}

/* ==========================================
   PRODUCT FEATURE
========================================== */
.product-feature {
  padding: var(--section-pad);
  background: var(--color-brown);
  position: relative;
  overflow: hidden;
}

.product-feature::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,155,60,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.product-feature::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,155,130,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.product-image-area {
  position: relative;
}

.product-image-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(200,155,60,0.3) 0%, rgba(74,52,38,0.8) 100%);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200,155,60,0.25);
}

.product-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--color-gold);
  color: var(--color-brown);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
  box-shadow: 0 4px 20px rgba(200,155,60,0.4);
}

.product-eyebrow {
  color: var(--color-gold);
  margin-bottom: 12px;
}

.product-title {
  color: var(--color-cream);
  margin-bottom: 12px;
}

.product-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-sage-light);
  margin-bottom: 28px;
}

.product-desc {
  color: rgba(247,241,232,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.product-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}

.product-features li {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-cream);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}

.product-features li span.dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================
   RITUAL SECTION
========================================== */
.ritual {
  padding: var(--section-pad);
  background: var(--color-cream);
}

.ritual-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.ritual-header .eyebrow { color: var(--color-gold); margin-bottom: 12px; }

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.ritual-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}

.ritual-card:hover { transform: translateY(-4px); }

.ritual-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(200,155,60,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 6px;
}

.ritual-text p {
  font-size: 0.85rem;
  color: var(--color-brown);
  opacity: 0.65;
  line-height: 1.6;
}

.ritual-cta { text-align: center; }

/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--color-beige);
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.testimonials-header .eyebrow { color: var(--color-sage); margin-bottom: 12px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(200,155,60,0.12);
  line-height: 1;
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

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

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-brown);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-sage), var(--color-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-white);
}

.author-info strong {
  display: block;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-brown);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--color-brown);
  opacity: 0.5;
}

.testimonials-cta { text-align: center; }

/* ==========================================
   PROMISE SECTION
========================================== */
.promise {
  padding: var(--section-pad);
  background: var(--color-cream);
  text-align: center;
}

.promise-inner {
  max-width: 800px;
  margin: 0 auto;
}

.promise-eyebrow { color: var(--color-gold); margin-bottom: 12px; }

.promise-body {
  font-size: 1.05rem;
  color: var(--color-brown);
  opacity: 0.75;
  max-width: 560px;
  margin: 20px auto 48px;
}

.promise-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promise-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow-soft);
}

.promise-badge span.icon { font-size: 1rem; }

.promise-badge span.text {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brown);
}

/* ==========================================
   EMAIL CAPTURE
========================================== */
.email-capture {
  padding: var(--section-pad);
  background: var(--color-brown);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.email-capture::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,155,60,0.1) 0%, transparent 60%);
}

.email-capture-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.email-capture .eyebrow { color: var(--color-gold); margin-bottom: 16px; }

.email-capture h2 {
  color: var(--color-cream);
  margin-bottom: 16px;
}

.email-capture p {
  color: rgba(247,241,232,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(247,241,232,0.2);
  border-radius: var(--radius-btn);
  background: rgba(247,241,232,0.08);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s;
}

.email-input::placeholder { color: rgba(247,241,232,0.45); }
.email-input:focus { border-color: var(--color-gold); }

.email-privacy {
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(247,241,232,0.4);
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

/* ==========================================
   FOOTER
========================================== */
footer {
  background: #2F1F15;
  padding: 64px 24px 32px;
  color: rgba(247,241,232,0.6);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,241,232,0.1);
}

.footer-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 14px;
}

.footer-brand .logo span { color: var(--color-gold); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(247,241,232,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
  cursor: pointer;
}

.social-link:hover { background: var(--color-gold); }

.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(247,241,232,0.5);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom .made-in {
  color: rgba(247,241,232,0.45);
  font-size: 0.78rem;
  font-style: italic;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1023px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 767px) {
  :root {
    --section-pad: 64px 20px;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-candle-visual {
    position: relative;
    width: 100%;
    height: 300px;
    top: auto; right: auto; bottom: auto;
    order: -1;
  }
  .hero-candle-visual::before {
    background: linear-gradient(
      to bottom,
      transparent 40%,
      rgba(247,241,232,0.95) 100%
    );
  }
  .hero-content { padding: 32px 20px; }
  .hero-inner { max-width: 100%; }

  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding-top: 72px;
  }
  .hero-bg { display: none; }
  .hero-content { padding: 32px 20px 48px; background: var(--color-cream); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-image { display: none; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px 20px; }

  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-image-area { order: -1; }
  .product-image-box { aspect-ratio: 4/3; }
  .product-features { grid-template-columns: 1fr; }

  .ritual-grid { grid-template-columns: 1fr; gap: 14px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  .promise-badges { gap: 10px; }
  .promise-badge { padding: 8px 14px; }

  .email-form { flex-direction: column; }
  .email-input { width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   SECTION LABEL / EYEBROW
========================================== */
.eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Scroll animation hint */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

