/* ============================================================
   TOTES OF LOVE — Master Stylesheet
   ============================================================ */

/* ---------- 0. CUSTOM PROPERTIES (Brand Tokens) ---------- */
:root {
  /* Colors */
  --color-warm-cream:    #FAF6EE;
  --color-deep-rose:     #C2305F;
  --color-terracotta:    #C96B5A;
  --color-dusty-sage:    #8BAF8A;
  --color-warm-linen:    #EDE4D3;
  --color-soft-gold:     #C9A84C;
  --color-charcoal-ink:  #2C2825;
  --color-muted-taupe:   #9E9189;
  --color-white-lace:    #FFFFFF;

  /* Fonts */
  --font-display:     'Playfair Display', Georgia, serif;
  --font-accent:      'Cormorant Garamond', Georgia, serif;
  --font-body:        'DM Sans', Arial, sans-serif;
  --font-handwriting: 'Caveat', cursive;

  /* Typography scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Radii */
  --radius-btn:  6px;
  --radius-card: 16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(44, 40, 37, 0.06);
  --shadow-md:   0 4px 12px rgba(44, 40, 37, 0.08);
  --shadow-lg:   0 8px 30px rgba(44, 40, 37, 0.12);
  --shadow-lift: 0 12px 36px rgba(44, 40, 37, 0.15);

  /* Transition */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;

  /* Layout */
  --nav-height: 64px;
  --container:  1200px;
}


/* ---------- 1. RESET & GLOBAL ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-charcoal-ink);
  background-color: var(--color-warm-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* Focus styles (Accessibility) */
:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ---------- 2. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-deep-rose);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

p {
  margin-bottom: var(--space-md);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
}

.eyebrow-gold {
  color: var(--color-soft-gold);
}

.section-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-container-narrow {
  max-width: 760px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-deep-rose);
  margin-bottom: var(--space-lg);
}

.section-headline-light {
  color: var(--color-white-lace);
}

.section-subhead {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-muted-taupe);
  margin-bottom: var(--space-3xl);
}


/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-lg {
  padding: 16px 40px;
  font-size: var(--text-md);
}

/* Filled Terracotta */
.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white-lace);
  border-color: var(--color-terracotta);
  box-shadow: 0 4px 14px rgba(201, 107, 90, 0.35);
}

.btn-primary:hover {
  background-color: #b85d4d;
  border-color: #b85d4d;
  box-shadow: 0 6px 20px rgba(201, 107, 90, 0.45);
  transform: translateY(-2px);
}

/* Outline Terracotta */
.btn-outline-terracotta {
  background: transparent;
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

.btn-outline-terracotta:hover {
  background-color: var(--color-terracotta);
  color: var(--color-white-lace);
  transform: translateY(-2px);
}

/* Outline Deep Rose */
.btn-outline-rose {
  background: transparent;
  color: var(--color-deep-rose);
  border-color: var(--color-deep-rose);
}

.btn-outline-rose:hover {
  background-color: var(--color-deep-rose);
  color: var(--color-white-lace);
  transform: translateY(-2px);
}


/* ---------- 4. NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: var(--color-white-lace);
  border-bottom: 0.5px solid var(--color-warm-linen);
  transition: background-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}

.nav.nav-scrolled {
  background-color: var(--color-deep-rose);
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
  transition: filter var(--duration) var(--ease-out);
}

.nav.nav-scrolled .logo-image {
  filter: brightness(0) invert(1);
}

.logo-icon {
  color: currentColor;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
}

/* Nav links */
.nav-links {
  display: none;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal-ink);
  transition: color var(--duration) var(--ease-out);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: var(--color-terracotta);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-deep-rose);
}

.nav-link.active::after {
  opacity: 1;
}

.nav.nav-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.nav.nav-scrolled .nav-link:hover,
.nav.nav-scrolled .nav-link.active {
  color: var(--color-white-lace);
}

/* Nav CTA */
.nav-cta {
  display: none;
  padding: 10px 24px;
  font-size: var(--text-sm);
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
  cursor: pointer;
  z-index: 1001;
}

@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal-ink);
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
  transform-origin: center;
}

.nav.nav-scrolled .nav-hamburger span {
  background-color: var(--color-white-lace);
}

/* Hamburger active state */
body.mobile-menu-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-deep-rose);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}

body.mobile-menu-open .mobile-overlay {
  opacity: 1;
  pointer-events: all;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Show nav links inside mobile overlay on mobile */
body.mobile-menu-open .nav-links {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  z-index: 1000;
  background-color: var(--color-deep-rose);
}

body.mobile-menu-open .nav-link {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-white-lace);
}

body.mobile-menu-open .nav-link:hover {
  color: var(--color-terracotta);
}


/* ---------- 5. HERO ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--color-warm-cream);
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
  }
}

.hero-copy {
  flex: 1;
}

.hero-headline {
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-subheadline {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-charcoal-ink);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hero-subheadline {
    font-size: var(--text-xl);
  }
}

.hero-body {
  font-size: var(--text-base);
  color: var(--color-charcoal-ink);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-xl);
}

.hero-secondary-cta {
  font-size: var(--text-sm);
  color: var(--color-deep-rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration) var(--ease-out);
}

.hero-secondary-cta:hover {
  color: var(--color-terracotta);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px;
  color: var(--color-muted-taupe);
}

.social-proof .stars {
  color: var(--color-soft-gold);
  font-size: var(--text-md);
  letter-spacing: 2px;
}

/* Hero image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  top: 8%;
  right: -3%;
  background: linear-gradient(135deg, var(--color-dusty-sage) 0%, var(--color-warm-linen) 100%);
  border-radius: var(--radius-card);
  opacity: 0.3;
  z-index: 0;
  transform: rotate(3deg);
}


/* ---------- 6. TRUST BAR ---------- */
.trust-bar {
  background-color: var(--color-warm-linen);
  min-height: 72px;
  display: flex;
  align-items: center;
}

.trust-bar-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-charcoal-ink);
  white-space: nowrap;
}

.trust-item i {
  color: var(--color-terracotta);
  font-size: var(--text-lg);
}

.trust-divider {
  width: 1px;
  height: 24px;
  background-color: var(--color-muted-taupe);
  opacity: 0.4;
}

@media (max-width: 767px) {
  .trust-bar-inner {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .trust-divider {
    display: none;
  }
}


/* ---------- 7. HOW IT WORKS ---------- */
.how-it-works {
  background-color: var(--color-white-lace);
  padding: var(--space-4xl) 0;
  text-align: center;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: var(--space-5xl) 0;
  }
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.step-connector {
  display: none;
}

/* Dashed connecting line on desktop */
@media (min-width: 768px) {
  .step-connector {
    display: block;
    flex: 1;
    height: 2px;
    margin-top: 40px;
    background-image: repeating-linear-gradient(
      to right,
      var(--color-soft-gold) 0,
      var(--color-soft-gold) 8px,
      transparent 8px,
      transparent 16px
    );
    opacity: 0.5;
  }
}

.step {
  flex: 0 0 auto;
  max-width: 260px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-watermark {
  position: absolute;
  font-family: var(--font-accent);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-deep-rose);
  opacity: 0.06;
  line-height: 1;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.12);
  border: 2px solid var(--color-soft-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
  color: var(--color-soft-gold);
}

.step-icon i {
  font-size: 28px;
}

.step-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.step-body {
  font-size: 15px;
  color: var(--color-charcoal-ink);
  line-height: 1.6;
}


/* ---------- 11. TESTIMONIALS ---------- */
.testimonials {
  background-color: var(--color-warm-cream);
  padding: var(--space-4xl) 0;
  text-align: center;
}

@media (min-width: 768px) {
  .testimonials {
    padding: var(--space-5xl) 0;
  }
}

.testimonial-cards {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--color-white-lace);
  border-radius: var(--radius-card);
  border: 0.5px solid var(--color-warm-linen);
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-warm-linen), var(--color-dusty-sage));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-deep-rose);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-deep-rose);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-muted-taupe);
}

.testimonial-stars {
  color: var(--color-soft-gold);
  font-size: var(--text-md);
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--color-charcoal-ink);
  line-height: 1.5;
  border: none;
  margin: 0;
  padding: 0;
}

.testimonial-stats {
  font-size: 13px;
  color: var(--color-muted-taupe);
}


/* ---------- 12. PRICING ---------- */
.pricing {
  background-color: var(--color-white-lace);
  padding: var(--space-4xl) 0;
  text-align: center;
}

@media (min-width: 768px) {
  .pricing {
    padding: var(--space-5xl) 0;
  }
}

.pricing-subhead {
  font-size: var(--text-base);
  color: var(--color-muted-taupe);
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.plan-cards {
  display: grid;
  gap: var(--space-xl);
  max-width: 960px;
  margin: 0 auto var(--space-2xl);
}

@media (min-width: 768px) {
  .plan-cards {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.plan-card {
  background: var(--color-warm-cream);
  border-radius: var(--radius-card);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
  position: relative;
  border: 2px solid transparent;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Featured / Most Popular */
.plan-card-popular {
  border-color: var(--color-deep-rose);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.plan-card-popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-deep-rose);
  color: var(--color-white-lace);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-muted-taupe);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.plan-price {
  margin-bottom: var(--space-xs);
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-deep-rose);
}

.price-period {
  font-size: var(--text-base);
  color: var(--color-muted-taupe);
  font-weight: 400;
}

.plan-billing {
  font-size: 13px;
  color: var(--color-muted-taupe);
  margin-bottom: var(--space-xl);
}

.plan-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.plan-features li {
  font-size: var(--text-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(158, 145, 137, 0.12);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-charcoal-ink);
}

.plan-features li i {
  color: var(--color-dusty-sage);
  font-size: var(--text-base);
  flex-shrink: 0;
}

.plan-card .btn {
  width: 100%;
}

.pricing-guarantee {
  font-size: var(--text-sm);
  color: var(--color-muted-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.pricing-guarantee i {
  font-size: var(--text-base);
}


/* ---------- 13. FOUNDER / ABOUT ---------- */
.founder {
  background-color: var(--color-deep-rose);
  color: var(--color-white-lace);
  padding: var(--space-4xl) 0;
}

@media (min-width: 768px) {
  .founder {
    padding: var(--space-5xl) 0;
  }
}

.founder-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .founder-inner {
    flex-direction: row;
    align-items: center;
  }
}

.founder-photo {
  flex: 0.9;
}

.founder-photo img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 767px) {
  .founder-photo img {
    border-radius: 50%;
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.founder-copy {
  flex: 1.1;
}

.founder-pullquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--color-soft-gold);
  border-left: 3px solid var(--color-soft-gold);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .founder-pullquote {
    font-size: 26px;
  }
}

.founder-body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.founder-signature {
  margin-top: var(--space-xl);
}

.founder-name-handwritten {
  font-family: var(--font-handwriting);
  font-size: 28px;
  color: var(--color-soft-gold);
  display: block;
  margin-bottom: var(--space-xs);
}

.founder-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}


/* ---------- 14. FAQ ---------- */
.faq {
  background-color: var(--color-white-lace);
  padding: var(--space-4xl) 0;
  text-align: center;
}

@media (min-width: 768px) {
  .faq {
    padding: var(--space-5xl) 0;
  }
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(158, 145, 137, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-charcoal-ink);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration) var(--ease-out);
}

.faq-question:hover {
  color: var(--color-deep-rose);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out);
  color: var(--color-muted-taupe);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--color-terracotta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-muted-taupe);
  line-height: 1.7;
  padding-bottom: var(--space-lg);
}

.faq-answer a {
  color: var(--color-terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-contact {
  font-size: var(--text-sm);
  color: var(--color-muted-taupe);
  margin-top: var(--space-2xl);
}

.faq-contact a {
  color: var(--color-terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ---------- 15. FOOTER ---------- */
.footer {
  background-color: var(--color-deep-rose);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white-lace);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.footer-logo-image {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  color: var(--color-white-lace);
  transition: background var(--duration) var(--ease-out),
              transform var(--duration) var(--ease-out);
}

.footer-social a:hover {
  background: var(--color-terracotta);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-soft-gold);
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration) var(--ease-out);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--duration) var(--ease-out);
}

.footer-bottom a:hover {
  color: var(--color-white-lace);
}


/* ---------- 16. SCROLL ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

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

/* Stagger support for testimonial cards */
.testimonial-card.fade-up {
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}


/* ---------- 17. CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-warm-cream);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-muted-taupe);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-deep-rose);
}


/* ---------- 18. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 19. SUPPORT CENTER & ORDER TRACKING ---------- */
.btn-support-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-terracotta);
  color: var(--color-white-lace) !important;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--duration) var(--ease-out);
  margin-top: var(--space-sm);
  box-shadow: 0 4px 10px rgba(201, 107, 90, 0.2);
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-support-footer:hover {
  background-color: #b85d4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(201, 107, 90, 0.35);
  color: var(--color-white-lace) !important;
}

.support-page {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-5xl);
  background-color: var(--color-warm-cream);
}

.support-header-section {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding: 0 var(--space-lg);
}

.support-header-section .eyebrow {
  margin-bottom: var(--space-sm);
}

.support-header-section h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-deep-rose);
  margin-bottom: var(--space-sm);
}

.support-header-section p {
  font-size: var(--text-lg);
  color: var(--color-muted-taupe);
  max-width: 600px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.support-card {
  background-color: var(--color-white-lace);
  border-radius: var(--radius-card);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-warm-linen);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

@media (min-width: 768px) {
  .support-card {
    padding: var(--space-2xl);
  }
}

.support-card:hover {
  box-shadow: var(--shadow-lg);
}

.support-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-deep-rose);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.support-card-title i {
  color: var(--color-terracotta);
  font-size: 24px;
}

.support-card-subtitle {
  font-size: var(--text-sm);
  color: var(--color-muted-taupe);
  margin-bottom: var(--space-lg);
}

/* Form Controls */
.support-form-group {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.support-form-row {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .support-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.support-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal-ink);
}

.support-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-warm-linen);
  background-color: var(--color-warm-cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-charcoal-ink);
  transition: border-color var(--duration) var(--ease-out), background-color var(--duration) var(--ease-out);
}

.support-input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background-color: var(--color-white-lace);
}

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

/* Order Tracking Result Styles */
.tracking-result-box {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px dashed var(--color-warm-linen);
  display: none;
}

.tracking-result-box.active {
  display: block;
  animation: fadeIn 0.5s var(--ease-out) forwards;
}

.tracking-info-header {
  background-color: var(--color-warm-cream);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-btn);
  margin-bottom: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  border: 1px solid var(--color-warm-linen);
}

.tracking-info-item {
  display: flex;
  flex-direction: column;
}

.tracking-info-label {
  font-size: var(--text-xs);
  color: var(--color-muted-taupe);
  font-weight: 500;
}

.tracking-info-val {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-deep-rose);
}

/* Tracking timeline */
.tracking-timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: var(--space-xl);
  margin-top: var(--space-md);
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background-color: var(--color-warm-linen);
}

.tracking-step {
  position: relative;
  margin-bottom: var(--space-xl);
  min-height: 48px;
}

.tracking-step:last-child {
  margin-bottom: 0;
}

.tracking-node {
  position: absolute;
  left: -40px;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-white-lace);
  border: 2px solid var(--color-warm-linen);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted-taupe);
  transition: all 0.3s ease;
  z-index: 1;
}

.tracking-step.completed .tracking-node {
  background-color: var(--color-dusty-sage);
  border-color: var(--color-dusty-sage);
  color: var(--color-white-lace);
}

.tracking-step.active .tracking-node {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white-lace);
  box-shadow: 0 0 0 4px rgba(201, 107, 90, 0.2);
  animation: pulseNode 2s infinite;
}

.tracking-step-content {
  padding-left: var(--space-sm);
}

.tracking-step-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-deep-rose);
  margin-bottom: 2px;
}

.tracking-step.completed .tracking-step-title {
  color: var(--color-muted-taupe);
  text-decoration: line-through;
  text-decoration-color: rgba(158, 145, 137, 0.4);
}

.tracking-step-desc {
  font-size: var(--text-sm);
  color: var(--color-charcoal-ink);
  margin-bottom: 2px;
}

.tracking-step-time {
  font-size: var(--text-xs);
  color: var(--color-muted-taupe);
}

/* Sidebar Elements */
.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(194, 48, 95, 0.08);
  color: var(--color-deep-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0;
  color: var(--color-deep-rose);
}

.contact-info-text p {
  font-size: var(--text-sm);
  color: var(--color-muted-taupe);
  margin: 0;
}

/* Support FAQ Accordion style sidebar */
.sidebar-faq {
  border-bottom: 1px solid var(--color-warm-linen);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
}

.sidebar-faq:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sidebar-faq-q {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-deep-rose);
  margin-bottom: var(--space-xs);
}

.sidebar-faq-a {
  font-size: var(--text-xs);
  color: var(--color-charcoal-ink);
  line-height: 1.5;
  margin: 0;
}

/* Success animation modal/state */
.form-success-state {
  text-align: center;
  padding: var(--space-xl) 0;
  display: none;
}

.form-success-state.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  animation: scaleIn 0.4s var(--ease-out) forwards;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(139, 175, 138, 0.15);
  color: var(--color-dusty-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: var(--space-sm);
  border: 2px solid var(--color-dusty-sage);
}

.support-form-error {
  font-size: var(--text-xs);
  color: var(--color-terracotta);
  display: block;
  margin-top: 4px;
}

@keyframes pulseNode {
  0% { box-shadow: 0 0 0 0 rgba(201, 107, 90, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(201, 107, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 107, 90, 0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================================================
   THIS MONTH'S BOX SECTION
   ============================================================ */
.this-months-box {
  background-color: var(--color-white-lace);
  padding: var(--space-4xl) 0;
  border-bottom: 0.5px solid var(--color-warm-linen);
}

@media (min-width: 768px) {
  .this-months-box {
    padding: var(--space-5xl) 0;
  }
}

.monthly-box-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .monthly-box-inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-4xl);
  }
}

.monthly-box-image {
  flex: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.monthly-box-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  transition: transform var(--duration) var(--ease-out);
}

.monthly-box-image img:hover {
  transform: scale(1.02);
}

.monthly-box-image::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  top: 8%;
  left: -3%;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-soft-gold) 100%);
  border-radius: var(--radius-card);
  opacity: 0.25;
  z-index: 0;
  transform: rotate(-3deg);
}

.monthly-box-copy {
  flex: 1;
}

.monthly-box-copy h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xs);
  color: var(--color-deep-rose);
}

.monthly-box-subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-2xl);
  color: var(--color-terracotta);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.monthly-box-body {
  font-size: var(--text-base);
  color: var(--color-charcoal-ink);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.monthly-box-items {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.monthly-box-items li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--color-charcoal-ink);
  padding: var(--space-sm) 0;
}

.monthly-box-items li i {
  color: var(--color-dusty-sage);
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-top: 2px;
}

.monthly-box-actions {
  margin-top: var(--space-lg);
}

/* ---------- PRE-ORDER BANNER ---------- */
.preorder-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(90deg, var(--color-deep-rose), var(--color-terracotta));
  color: var(--color-white-lace);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.preorder-banner i {
  font-size: 16px;
}

.preorder-banner strong {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Adjust fixed nav and hero padding for banner */
.nav {
  top: 40px;
}

.hero {
  padding-top: calc(var(--nav-height) + 40px + var(--space-2xl)) !important;
}

/* ---------- MOBILE CENTERING OVERRIDES ---------- */
@media (max-width: 767px) {
  /* Hero Section */
  .hero-inner {
    text-align: center;
  }
  
  .hero-body {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    align-items: center;
  }

  /* This Month's Box Section */
  .monthly-box-copy {
    text-align: center;
  }
  
  .monthly-box-items {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
    max-width: 100%;
  }
  
  .monthly-box-items li {
    justify-content: flex-start;
  }
  
  .monthly-box-actions {
    display: flex;
    justify-content: center;
  }

  /* Founder Section */
  .founder-copy {
    text-align: center;
  }
  
  .founder-pullquote {
    border-left: none;
    border-top: 3px solid var(--color-soft-gold);
    border-bottom: 3px solid var(--color-soft-gold);
    padding-left: 0;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
    margin: var(--space-xl) auto;
  }
  
  .founder-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Footer Section */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  
  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}



