/* ==========================================================================
   Soft, Airy Design — Premium Collagen
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, sans-serif;
  color: #4a3f4b;
  background: linear-gradient(170deg, #fdf6f9 0%, #f9f2f8 30%, #f3f0fa 60%, #f7f5fc 100%);
  line-height: 1.7;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:root {
  --pink: #e8b4c8;
  --pink-soft: #f8e4ee;
  --pink-deep: #d4899f;
  --lavender: #c9a0dc;
  --lavender-soft: #efe4f7;
  --lavender-deep: #a87cc4;
  --cream: #fdf6f9;
  --cream-alt: #faf5fc;
  --white: #ffffff;
  --text: #4a3f4b;
  --text-light: #8a7e8e;
  --text-heading: #3d2e40;
  --border: rgba(200, 180, 210, 0.25);
  --shadow-soft: 0 20px 60px rgba(180, 140, 200, 0.1);
  --shadow-glow: 0 12px 40px rgba(232, 180, 200, 0.25);
  --shadow-card: 0 8px 32px rgba(180, 140, 200, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1100px;
  --gutter: 1.5rem;
}

/* ==========================================================================
   Floating Particles (decorative)
   ========================================================================== */

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  animation: float-up linear infinite;
  opacity: 0;
}

.particle:nth-child(1) { width: 120px; height: 120px; left: 5%; animation-duration: 22s; animation-delay: 0s; }
.particle:nth-child(2) { width: 80px; height: 80px; left: 20%; animation-duration: 18s; animation-delay: 3s; background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%); }
.particle:nth-child(3) { width: 100px; height: 100px; left: 40%; animation-duration: 25s; animation-delay: 6s; }
.particle:nth-child(4) { width: 60px; height: 60px; left: 60%; animation-duration: 20s; animation-delay: 2s; background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%); }
.particle:nth-child(5) { width: 140px; height: 140px; left: 75%; animation-duration: 28s; animation-delay: 8s; }
.particle:nth-child(6) { width: 90px; height: 90px; left: 85%; animation-duration: 19s; animation-delay: 5s; background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%); }
.particle:nth-child(7) { width: 70px; height: 70px; left: 30%; animation-duration: 23s; animation-delay: 10s; }
.particle:nth-child(8) { width: 110px; height: 110px; left: 55%; animation-duration: 26s; animation-delay: 1s; background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%); }

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0.7);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */

.section-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  color: var(--text-heading);
  letter-spacing: 0.01em;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  background: var(--lavender-soft);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin: 0 0 0.9rem;
}

.section-intro {
  color: var(--text-light);
  max-width: 32rem;
  margin: 0;
  font-size: 1.02rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-center .section-intro {
  margin: 0.5rem auto 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

.section {
  padding: 4rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(243,240,250,0.4) 100%);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(253, 246, 249, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 180, 210, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-mark {
  height: 36px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-light);
  position: relative;
  padding-bottom: 0.15rem;
  transition: color 0.2s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  transition: width 0.3s ease-out;
}

.nav-link:hover {
  color: var(--text-heading);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: var(--pink-soft);
}

.nav-toggle-line {
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.main-nav .nav-list {
  position: absolute;
  inset: 4rem 0 auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 1rem var(--gutter) 1.25rem;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  align-items: flex-start;
  display: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.main-nav.open .nav-list {
  display: flex;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  border-radius: 999px;
  border: none;
  padding: 0.8rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(232, 180, 200, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 180, 200, 0.45);
}

.btn-glow {
  animation: btn-pulse 3s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(232, 180, 200, 0.35); }
  50% { box-shadow: 0 8px 40px rgba(232, 180, 200, 0.55); }
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-heading);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--pink);
}

.btn-full {
  width: 100%;
}

.link-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  color: var(--lavender-deep);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-soft);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}

.hero-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--text-heading);
}

.hero-accent {
  background: linear-gradient(135deg, var(--pink-deep), var(--lavender-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-style: italic;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  flex-shrink: 0;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: clamp(340px, 48vw, 620px);
  display: block;
}

.hero-image-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse at center, rgba(232,180,200,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-float-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  color: var(--text-light);
  box-shadow: var(--shadow-card);
  line-height: 1.3;
}

.float-badge-icon {
  color: var(--pink-deep);
  font-size: 1.1rem;
}

/* ==========================================================================
   About Product
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender-soft) 100%);
  padding: 2rem;
}

.about-image {
  border-radius: var(--radius-md);
  width: 100%;
  display: block;
  box-shadow: var(--shadow-soft);
}

.about-caption {
  margin: 0.8rem 0 0;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.about-text {
  color: var(--text-light);
  margin: 0 0 0.8rem;
}

.about-pills {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.pill {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.pill-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender-soft) 100%);
  color: var(--lavender-deep);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pill strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.15rem;
}

.pill p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-light);
}

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(232, 180, 200, 0.3);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-soft));
  color: var(--lavender-deep);
  margin-bottom: 0.9rem;
}

.benefit-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-heading);
}

.benefit-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ==========================================================================
   How to Use / Science
   ========================================================================== */

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

.how-copy p,
.science-copy p {
  color: var(--text-light);
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.steps-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.steps-list li:hover {
  background: rgba(255, 255, 255, 0.8);
}

.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-soft));
  color: var(--lavender-deep);
  flex-shrink: 0;
}

.science-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.flow-step {
  text-align: center;
}

.flow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender-soft) 100%);
  color: var(--lavender-deep);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 auto 0.4rem;
}

.flow-step p {
  font-size: 0.78rem;
  margin: 0;
  max-width: 100px;
}

.flow-connector {
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  border-radius: 999px;
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.science-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ==========================================================================
   Ingredients
   ========================================================================== */

.ingredients {
  padding-block: 3.5rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.ingredients-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.ingredients-copy p {
  color: var(--text-light);
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-light);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials-wrapper {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.testimonial-slider {
  position: relative;
  min-height: 200px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--pink);
  margin-bottom: 0.25rem;
}

.testimonial-text {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.testimonial-dot.is-active {
  width: 24px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}

.trust-badge {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s;
}

.trust-badge:hover {
  transform: translateY(-2px);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender-soft));
  color: var(--lavender-deep);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.trust-badge p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ==========================================================================
   CTA / Order Form
   ========================================================================== */

.cta {
  background: linear-gradient(170deg, var(--cream) 0%, var(--lavender-soft) 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.cta-copy p {
  color: var(--text-light);
}

.price-line {
  color: var(--text-heading) !important;
  font-size: 1.05rem;
}

.price-lowest {
  font-size: 0.8rem;
  color: var(--text-light) !important;
  margin-top: 0.2rem;
}

.cta-perks {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  font-size: 0.92rem;
}

.cta-perks li {
  padding: 0.2rem 0;
  color: var(--text-light);
}

.cta-perks li::before {
  content: "✦ ";
  color: var(--pink-deep);
}

.cta-product {
  margin-top: 1.5rem;
  max-width: 300px;
}

.cta-product-image {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.order-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 1.2rem;
  color: var(--text-heading);
  text-align: center;
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 180, 210, 0.3);
  background: rgba(255, 255, 255, 0.6);
  outline: none;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  color: var(--text);
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  border-color: var(--lavender);
  box-shadow: 0 0 0 3px rgba(201, 160, 220, 0.15);
  background: var(--white);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(138, 126, 142, 0.5);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

.form-error {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #d4577a;
  min-height: 0.85rem;
}

.form-row input.invalid,
.form-row select.invalid,
.form-row textarea.invalid {
  border-color: #d4577a;
  background: #fef5f7;
}

/* ==========================================================================
   About Us
   ========================================================================== */

.about-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-us-grid p {
  color: var(--text-light);
}

.about-us-subtitle {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-heading);
}

.about-us-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--text-light);
}

.about-us-list li {
  margin-bottom: 0.4rem;
}

.about-us-photo {
  margin: 1.5rem 0 0;
}

.about-us-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: linear-gradient(170deg, #2d2035 0%, #1e1524 100%);
  color: #d8cfe0;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  display: inline-flex;
}

.footer-logo-mark {
  height: 32px;
  width: auto;
  filter: brightness(1.6) saturate(0.8);
}

.footer-copy {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #a99bb0;
}

.footer-disclaimer {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: #7d6f86;
  max-width: 50rem;
}

.footer-nav {
  font-size: 0.88rem;
}

.footer-heading {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a0dc;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link {
  display: inline-flex;
  padding: 0.2rem 0;
  color: #bfaec8;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  transition: color 0.2s;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #f3e0f0;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  padding: 1rem 0 1.5rem;
  text-align: center;
}

.footer-small {
  margin: 0;
  font-size: 0.75rem;
  color: #7d6f86;
}

.footer-legal {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  color: #7d6f86;
  line-height: 1.5;
}

.footer-legal a {
  color: #c9a0dc;
}

/* ==========================================================================
   Legal Modal
   ========================================================================== */

.legal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(30, 21, 36, 0.5);
  backdrop-filter: blur(16px);
  z-index: 50;
  padding: 2.5rem 1rem;
  overflow-y: auto;
}

.legal-overlay[hidden] {
  display: none;
}

.legal-modal {
  max-width: 680px;
  width: 100%;
  max-height: min(85vh, 640px);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(100, 60, 120, 0.2);
  position: relative;
  padding: 2rem;
  overflow-y: auto;
  border: 1px solid var(--border);
}

.legal-title {
  font-family: "Cormorant Garamond", serif;
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  color: var(--text-heading);
}

.legal-body {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.legal-body h3 {
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 500;
}

.legal-body p {
  margin: 0 0 0.6rem;
}

.legal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-light);
  transition: background 0.2s, color 0.2s;
}

.legal-close:hover {
  background: var(--pink-soft);
  color: var(--text-heading);
}

/* ==========================================================================
   Responsive — Medium
   ========================================================================== */

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1.15fr;
  }

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

  .how-grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .ingredients-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .cta-grid {
    grid-template-columns: 1.1fr 1.05fr;
  }

  .about-us-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 0.9fr;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* ==========================================================================
   Responsive — Large
   ========================================================================== */

@media (min-width: 960px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .main-nav .nav-list {
    position: static;
    display: flex !important;
    flex-direction: row;
    box-shadow: none;
    border-bottom: none;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
  }

  .nav-toggle {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   Smooth page entrance
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-media,
  .about-copy,
  .about-media,
  .benefit-card,
  .how-copy,
  .science-copy,
  .ingredients-copy,
  .ingredients-media,
  .testimonials-wrapper,
  .trust-badges,
  .cta-copy,
  .cta-form-wrapper {
    opacity: 0;
    transform: translateY(24px);
    animation: fade-in-up 0.7s ease forwards;
  }

  .hero-copy { animation-delay: 0.1s; }
  .hero-media { animation-delay: 0.3s; }
  .about-media { animation-delay: 0.15s; }
  .about-copy { animation-delay: 0.3s; }
  .benefit-card:nth-child(1) { animation-delay: 0.1s; }
  .benefit-card:nth-child(2) { animation-delay: 0.2s; }
  .benefit-card:nth-child(3) { animation-delay: 0.3s; }
  .benefit-card:nth-child(4) { animation-delay: 0.4s; }
  .how-copy { animation-delay: 0.1s; }
  .science-copy { animation-delay: 0.2s; }
  .ingredients-media { animation-delay: 0.1s; }
  .ingredients-copy { animation-delay: 0.2s; }
  .testimonials-wrapper { animation-delay: 0.15s; }
  .trust-badges { animation-delay: 0.25s; }
  .cta-copy { animation-delay: 0.1s; }
  .cta-form-wrapper { animation-delay: 0.25s; }
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
