/* ============================================================
   Natural Health Cleanse — naturalhealthcleanse.com
   Poogasm 15-Day Cleanse
   Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400;1,9..144,600&family=DM+Sans:wght@400;500;600&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  --sage:          #4B7C59;
  --sage-dark:     #3a6246;
  --sage-muted:    #6fa880;
  --cream:         #FAF8F3;
  --cream-dark:    #F0EDE4;
  --tan:           #C8A97E;
  --tan-light:     #ddc5a3;
  --charcoal:      #2D2D2D;
  --charcoal-mid:  #444;
  --charcoal-light:#666;
  --white:         #FFFFFF;
  --border:        #E3DDD2;
  --border-light:  #EDE9E1;

  --font-display:  'Fraunces', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  --radius:        12px;
  --radius-sm:     8px;
  --radius-xs:     6px;
  --shadow:        0 2px 12px rgba(45, 45, 45, 0.07);
  --shadow-md:     0 4px 28px rgba(45, 45, 45, 0.11);
  --shadow-lg:     0 8px 48px rgba(45, 45, 45, 0.14);

  --max-w:         1100px;
  --pad:           1.5rem;
}

/* ===== 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);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--sage-dark); text-decoration: underline; }

ul { list-style: none; }

/* ===== Container ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--pad);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--sage);
  letter-spacing: -0.025em;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.brand:hover { color: var(--sage-dark); text-decoration: none; }
.brand .brand-suffix {
  font-weight: 400;
  font-size: 0.8em;
  opacity: 0.65;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); text-decoration: none; }

.nav-links .nav-support {
  background: var(--sage);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.nav-links .nav-support:hover {
  background: var(--sage-dark);
  color: white;
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--cream-dark); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.75rem var(--pad);
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { background: var(--cream-dark); color: var(--sage); text-decoration: none; }

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

/* ===== Hero ===== */
.hero {
  background: linear-gradient(155deg, #deeae3 0%, #edf5ef 30%, var(--cream) 65%);
  padding: 5.5rem var(--pad) 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Botanical ring decorations */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(75, 124, 89, 0.22);
}
.deco-ring-1 { width: 440px; height: 440px; top: -140px; left: -100px; }
.deco-ring-2 { width: 300px; height: 300px; bottom: -70px; right: 4%; border-color: rgba(200, 169, 126, 0.28); }
.deco-ring-3 { width: 180px; height: 180px; top: 38%; left: 8%; border-color: rgba(75, 124, 89, 0.12); animation: rotateSlow 60s linear infinite; }
.deco-ring-4 { width: 80px; height: 80px; top: 15%; right: 18%; border-color: rgba(200, 169, 126, 0.2); }

.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(75, 124, 89, 0.12);
}
.deco-dot-1 { width: 12px; height: 12px; top: 22%; right: 26%; }
.deco-dot-2 { width: 8px; height: 8px; bottom: 25%; left: 22%; background: rgba(200, 169, 126, 0.25); }
.deco-dot-3 { width: 18px; height: 18px; top: 60%; right: 10%; background: rgba(75, 124, 89, 0.08); }

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage);
  color: white;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.55s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  color: var(--sage);
  margin-bottom: 0.6rem;
  animation: fadeUp 0.6s 0.08s ease both;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.8vw, 1.9rem);
  color: var(--charcoal-light);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s 0.16s ease both;
}

/* CSS capsule illustration */
.capsule-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2rem;
  animation: fadeUp 0.6s 0.22s ease both;
}

.capsule {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(75, 124, 89, 0.28), inset 0 1px 0 rgba(255,255,255,0.3);
}
.cap-sm { width: 52px; height: 18px; }
.cap-md { width: 78px; height: 26px; }
.cap-lg { width: 64px; height: 22px; }
.cap-half-a { width: 50%; height: 100%; background: var(--sage); }
.cap-half-b { width: 50%; height: 100%; background: var(--tan); }

.hero-desc {
  max-width: 500px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  line-height: 1.7;
  animation: fadeUp 0.6s 0.28s ease both;
}

.hero-cta {
  display: inline-block;
  background: var(--sage);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(75, 124, 89, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.6s 0.34s ease both;
}
.hero-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(75, 124, 89, 0.42);
  text-decoration: none;
  color: white;
}

/* ===== Section Shell ===== */
.section {
  padding: 5.5rem var(--pad);
}
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--sage { background: var(--sage); color: white; }
.section--charcoal { background: var(--charcoal); color: white; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}
.section--sage .section-label,
.section--charcoal .section-label {
  color: var(--tan-light);
  opacity: 0.85;
}

.section-heading {
  margin-bottom: 0.75rem;
}
.section--sage .section-heading,
.section--charcoal .section-heading {
  color: white;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.75;
}
.section--sage .section-intro,
.section--charcoal .section-intro {
  color: rgba(255,255,255,0.75);
}

/* ===== How-It-Works Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--sage);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ===== Ingredients ===== */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ingredient-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.ingredient-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(75, 124, 89, 0.3);
}

.ingredient-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(75,124,89,0.1) 0%, rgba(75,124,89,0.05) 100%);
  border: 1px solid rgba(75,124,89,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.ingredient-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
  line-height: 1.25;
}
.ingredient-info p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.55;
  margin: 0;
}

.facts-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--tan);
  font-size: 0.88rem;
  color: var(--charcoal-light);
  font-style: italic;
  line-height: 1.6;
}

/* ===== Usage Section ===== */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.usage-step {
  text-align: center;
  padding: 1.75rem 1rem;
}

.usage-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

.usage-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: white;
  margin-bottom: 0.5rem;
}

.usage-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

/* Usage note box */
.usage-note {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.usage-note strong { color: white; }

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(75, 124, 89, 0.06);
  border: 1px solid rgba(75, 124, 89, 0.14);
  transition: background 0.2s, border-color 0.2s;
}
.benefit-item:hover {
  background: rgba(75, 124, 89, 0.1);
  border-color: rgba(75, 124, 89, 0.25);
}

.benefit-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.benefit-check svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item p {
  font-size: 0.93rem;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.5;
  padding-top: 3px;
}

/* ===== FDA Disclaimer Block ===== */
.fda-block {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin-top: 3rem;
}

.fda-block-label {
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fda-block-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--charcoal-mid);
}

.fda-block p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.fda-block p:last-child { margin-bottom: 0; }
.fda-block strong { color: var(--charcoal-mid); }

/* ===== Support Section ===== */
.support-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.support-email-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--sage);
  border-bottom: 2px solid var(--sage);
  padding-bottom: 3px;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.support-email-link:hover { opacity: 0.72; text-decoration: none; }

.support-meta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.support-meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.meta-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  min-width: 120px;
  flex-shrink: 0;
}

.meta-value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

.policy-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.policy-pill {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal-mid);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--white);
}
.policy-pill:hover {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
  text-decoration: none;
}

/* Guarantee box */
.guarantee-box {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: white;
  border-radius: var(--radius);
  padding: 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.guarantee-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.guarantee-box h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.guarantee-box p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
  background: var(--white);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.93rem;
  list-style: none;
  user-select: none;
  background: var(--white);
  transition: background 0.18s;
  color: var(--charcoal);
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; }
details.faq-item summary:hover { background: var(--cream); }

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--sage);
  transition: transform 0.28s ease;
}
details[open].faq-item .faq-chevron { transform: rotate(180deg); }

.faq-body {
  padding: 0.25rem 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  background: var(--white);
}
.faq-body a { color: var(--sage); }

/* ===== Contact Form ===== */
.contact-form-wrap {
  max-width: 580px;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(75, 124, 89, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-note {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  line-height: 1;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 16px rgba(75, 124, 89, 0.28);
}
.btn-primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 6px 24px rgba(75, 124, 89, 0.38);
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

/* ===== Contact Page Info Blocks ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block {
  margin-bottom: 2rem;
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.contact-info-block h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-info-block p,
.contact-info-block address {
  font-size: 0.93rem;
  color: var(--charcoal-light);
  font-style: normal;
  line-height: 1.7;
}

.big-email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--sage);
  border-bottom: 2px solid var(--sage);
  padding-bottom: 2px;
  margin: 0.4rem 0 0.25rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.big-email:hover { opacity: 0.7; text-decoration: none; }

/* ===== Footer ===== */
.site-footer {
  background: var(--charcoal);
  padding: 3.5rem var(--pad) 2.5rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 0.75rem;
}

.footer-email-link {
  color: var(--tan-light);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email-link:hover { color: white; text-decoration: underline; }

.footer-nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; text-decoration: none; }

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

/* ===== Legal Page Layout ===== */
.legal-hero {
  background: linear-gradient(155deg, #deeae3 0%, #edf5ef 30%, var(--cream) 65%);
  padding: 4rem var(--pad) 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.legal-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
}

.legal-hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-size: 0.84rem;
  color: var(--charcoal-light);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem var(--pad) 5rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.75rem 0 0.75rem;
  color: var(--charcoal);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
}
.legal-content h2:first-child {
  margin-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 1.6rem;
  margin-bottom: 1.1rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }

.legal-content li {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.legal-content strong {
  color: var(--charcoal);
  font-weight: 600;
}

.legal-content a { color: var(--sage); }

.legal-highlight {
  background: var(--cream-dark);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.5rem;
  margin: 1.75rem 0;
}
.legal-highlight p {
  font-size: 0.92rem;
  margin: 0;
}

.legal-warning {
  background: #FFF8F0;
  border-left: 3px solid var(--tan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.5rem;
  margin: 1.75rem 0;
}
.legal-warning p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--charcoal-mid);
  line-height: 1.7;
}

.legal-contact-box {
  background: var(--sage);
  color: white;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
}
.legal-contact-box p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.legal-contact-box a {
  color: var(--tan-light);
  font-weight: 600;
}

/* ===== Refund Guarantee Banner ===== */
.guarantee-banner {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  border-radius: var(--radius);
  padding: 2.25rem 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.guarantee-banner-icon { font-size: 3rem; flex-shrink: 0; }
.guarantee-banner h2 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.guarantee-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .support-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --pad: 1.25rem; }
  .section { padding: 3.75rem var(--pad); }
  .hero { padding: 4rem var(--pad) 3.5rem; }
  .hero-title { letter-spacing: -0.03em; }
  .form-row { grid-template-columns: 1fr; }
  .guarantee-banner { flex-direction: column; text-align: center; gap: 1rem; }
  .guarantee-banner-icon { font-size: 2.25rem; }
  .legal-hero { padding: 2.75rem var(--pad) 2rem; }
  .legal-content { padding: 2.5rem var(--pad) 3.5rem; }
  .fda-block { padding: 1.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: 1fr 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ===== Print ===== */
@media print {
  .site-header, .hamburger, .nav-mobile { display: none; }
  .hero { background: white; padding: 2rem 0; }
  .section { padding: 2rem 0; }
}
