/* =============================================
   BRAVE FEELINGS LAB — V2 GLOBAL STYLES
   Premium Emotional Wellness Platform
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:       #F2EBE0;
  --cream-dark:  #E8DDD0;
  --teal:        #0D9488;
  --teal-light:  #14B8A8;
  --teal-dark:   #0A7567;
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --charcoal:    #2D2D2D;
  --charcoal-mid:#4A4A4A;
  --warm-brown:  #7A5C3A;
  --navy:        #1E3A5F;
  --white:       #FAF6F0;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.10);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:        1160px;
  --transition:   0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--charcoal-mid); }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--charcoal); font-weight: 400; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,248,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--transition); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: #b8902f; border-color: #b8902f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 20px 48px; font-size: 1.1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

/* --- Payment Buttons --- */
.payment-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-stripe {
  background: #635BFF;
  color: #fff;
  border-color: #635BFF;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent;
}
.btn-stripe:hover { background: #4c44d4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,91,255,0.3); }
.btn-paypal {
  background: #003087;
  color: #fff;
  border-color: #003087;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent;
}
.btn-paypal:hover { background: #001f5b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,48,135,0.3); }
.btn-stripe,
.btn-paypal {
  color: #fff !important;
  text-decoration: none !important;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-stripe svg,
.btn-paypal svg {
  flex-shrink: 0;
  color: currentColor;
}

/* --- Hero Section --- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--cream) 55%, #e8f5f3 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-text h1 { color: var(--charcoal); margin-bottom: 24px; }
.hero-text h1 em { font-style: italic; color: var(--teal); }
.hero-text .lead { margin-bottom: 40px; max-width: 520px; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); width: 100%; object-fit: cover; }
.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream-dark), #d9ede9);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px dashed rgba(13,148,136,0.25);
}

/* --- Product Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.cards-grid-2 { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream-dark), #d9ede9);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(13,148,136,0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.product-card-badge.adult { color: var(--warm-brown); background: rgba(122,92,58,0.08); }
.product-card h3 { margin-bottom: 10px; color: var(--charcoal); }
.product-card p { font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--cream-dark);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
}
.product-price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--charcoal-mid); font-weight: 400; display: block; }

/* --- Section: Background Variants --- */
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); color: var(--white); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--white); }
.bg-charcoal p { color: rgba(255,255,255,0.72); }
.bg-teal-soft { background: linear-gradient(135deg, #e8f5f3 0%, var(--cream) 100%); }

/* --- Trust Badges --- */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  padding: 32px 24px;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal-mid);
}
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(13,148,136,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1rem;
}

/* --- Feature List --- */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 28px; height: 28px;
  background: rgba(13,148,136,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item p { font-size: 0.98rem; color: var(--charcoal-mid); margin-bottom: 0; }
.feature-item strong { color: var(--charcoal); font-weight: 600; }

/* --- What You Receive --- */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.receive-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.receive-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.receive-card h4 { font-size: 1rem; margin-bottom: 8px; }
.receive-card p { font-size: 0.88rem; }

/* --- Transformation / Before-After --- */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.transform-col {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.transform-col.before { border-left: 4px solid #e87171; }
.transform-col.after  { border-left: 4px solid var(--teal); }
.transform-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.transform-col.before h4 { color: #c0504a; }
.transform-col.after  h4 { color: var(--teal); }
.transform-col ul { display: flex; flex-direction: column; gap: 12px; }
.transform-col ul li { font-size: 0.95rem; color: var(--charcoal-mid); display: flex; align-items: flex-start; gap: 10px; }
.transform-col ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; margin-top: 8px; }
.transform-col.before ul li::before { background: #c0504a; }
.transform-col.after  ul li::before { background: var(--teal); }

/* --- FAQ --- */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question .faq-icon { font-size: 1.4rem; color: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 24px; font-size: 1rem; color: var(--charcoal-mid); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Image Placeholder --- */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--cream-dark), #d4ece9);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  border: 2px dashed rgba(13,148,136,0.2);
}
.img-placeholder span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); opacity: 0.7; }

/* --- Split Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-section.reverse .split-image { order: -1; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.78); position: relative; margin-bottom: 40px; }
.cta-banner .payment-group { justify-content: center; position: relative; }

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand h4 span { color: var(--teal-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 600px;
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* --- Product Page Hero (smaller) --- */
.product-hero {
  padding: 100px 0 80px;
  background: linear-gradient(160deg, var(--cream) 50%, #e8f5f3 100%);
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* --- Testimonial / Creator Message --- */
.creator-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.creator-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cream-dark), #d9ede9);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--teal);
  letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 10px;
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-quote { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; font-style: italic; color: var(--charcoal); line-height: 1.6; margin-bottom: 16px; }
.creator-name { font-weight: 700; color: var(--charcoal); font-size: 0.95rem; }
.creator-role { font-size: 0.85rem; color: var(--charcoal-mid); }

/* --- Legal Pages --- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--charcoal); }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; font-size: 1rem; color: var(--charcoal-mid); }

/* --- Contact Form --- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { min-height: 160px; resize: vertical; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero-inner,
  .product-hero-inner,
  .split-section,
  .transform-grid,
  .creator-block { grid-template-columns: 1fr; gap: 36px; }
  .split-section.reverse .split-image { order: 0; }
  .hero-image { display: none; }
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); padding: 24px; flex-direction: column; gap: 0; border-bottom: 1px solid var(--cream-dark); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--cream-dark); font-size: 1.1rem; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .payment-group { flex-direction: column; align-items: stretch; }
  .btn-stripe, .btn-paypal { justify-content: center; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .creator-block { grid-template-columns: 1fr; }
  .creator-avatar { width: 80px; height: 80px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .product-card-body { padding: 20px; }
  .creator-block { padding: 28px; }
}
