/* ==========================================================================
   TONICGREENS - STYLESHEET
   Theme: "Botanical Index" — deep forest green + turmeric gold, styled
   like a field-guide / apothecary index card system. The numbered
   ingredient "specimen" cards (N°01–N°05) are the signature element;
   everything else stays quiet so those cards carry the visual interest.
   Fonts: Fraunces (display/serif) + Inter (body) + IBM Plex Mono (labels)
   ========================================================================== */

/* ===== GLOBAL RESETS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === BRAND COLORS FOR TONICGREENS (BOTANICAL INDEX THEME) === */
  /* Deep forest green is the structural color; a warm turmeric gold     */
  /* (a direct nod to the curcumin/turmeric ingredient group) carries    */
  /* every call-to-action; a small amount of deep berry (resveratrol     */
  /* group) is used only as a sparing highlight so the page doesn't      */
  /* read as flat single-hue green.                                     */
  --brand-primary:     #1F5C3E; /* Deep Forest Green */
  --brand-secondary:   #3F8F68; /* Leaf Green for hovers/accents */
  --brand-accent:      #96631A; /* Turmeric Gold for CTA buttons */
  --brand-accent-hov:  #B37A22; /* Lighter gold for CTA hover */
  --brand-accent-light:#C9A25B; /* Soft gold for decorative fills */
  --brand-berry:       #6B2545; /* Deep berry — sparing highlight only */

  /* Backgrounds & Text */
  --bg-main:         #FFFFFF;
  --bg-light:         #F1F6F1; /* Soft sage tint for alternating sections */
  --bg-dark:          #12241A; /* Near-black forest for footer */
  --card-bg:          #FFFFFF;
  --text-main:        #1C2B22;
  --text-muted:       #5B6E62;
  --text-dark:        #FFFFFF;
  --border-color:     #DCE7DE;

  /* Shadows (Subtle Forest Glow) */
  --shadow-sm:  0 2px 8px rgba(31, 92, 62, 0.06);
  --shadow-md:  0 4px 20px rgba(31, 92, 62, 0.10);
  --shadow-lg:  0 14px 35px rgba(31, 92, 62, 0.16);

  /* === FONT ROLES === */
  --font-display: 'Fraunces', serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* === TYPE SCALE === */
  --f-xs:    1.0rem;
  --f-sm:    1.1rem;
  --f-body:  1.05rem;
  --f-md:    1.3rem;
  --f-lg:    1.5rem;
  --f-xl:    1.95rem;
  --f-2xl:   2.45rem;
  --f-3xl:   2.95rem;
  --f-price: 3.3rem;
  --lh-body: 1.75;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
}

/* Typography Basics */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-main); }
h1 { font-size: var(--f-3xl); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; }
h2 { font-size: var(--f-2xl); font-weight: 700; line-height: 1.2; }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3; }
h4 { font-size: var(--f-lg);  font-weight: 600; line-height: 1.35; }
p, li { font-size: var(--f-body); line-height: var(--lh-body); margin-bottom: 18px; }
a { text-decoration: none; color: var(--brand-secondary); }
strong { font-weight: 700; color: var(--brand-primary); }

a:focus-visible, button:focus-visible { outline: 3px solid var(--brand-accent-light); outline-offset: 2px; }

/* ===== UTILITIES ===== */
.section     { padding: 84px 24px; }
.bg-light    { background: var(--bg-light); }
.brand-title { color: var(--brand-primary); }
.sec-title   { text-align: center; font-size: var(--f-2xl); font-weight: 700; color: var(--text-main); margin-bottom: 16px; }
.sec-sub     { text-align: center; font-size: var(--f-md); color: var(--text-muted); margin-bottom: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.wrap        { padding: 0 15px; }
.prose-wrap  { max-width: 780px; margin: 0 auto; text-align: center; }
.prose-wrap .sec-title { margin-bottom: 28px; }
.prose-wrap p { text-align: left; }

.icon { width: 22px; height: 22px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--text-dark) !important;
  padding: 17px 42px;
  border-radius: 8px;
  font-weight: 700;
  font-size: var(--f-lg);
  margin-top: 22px;
  box-shadow: 0 6px 20px rgba(150, 99, 26, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  text-align: center;
}
.btn-cta:hover {
  background: var(--brand-accent-hov);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(150, 99, 26, 0.4);
}
.btn-cta-xl { font-size: 1.35rem; padding: 18px 48px; }
.btn-cta-ghost {
  display: inline-block;
  margin-top: 22px;
  margin-left: 18px;
  padding: 17px 30px;
  font-weight: 700;
  font-size: var(--f-lg);
  color: var(--brand-primary);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.btn-cta-ghost:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* ===== TOP DISCLOSURE BAR + HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.top-disclosure {
  background: var(--bg-dark);
  color: #B7CFC0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2px;
  text-align: center;
  padding: 7px 20px;
}
.header-spacer { height: 106px; }

/* ===== NAVIGATION ===== */
nav {
  background: var(--bg-main);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border-color);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 24px;
}
.nav-logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--brand-primary); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-main); font-weight: 600; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-primary); }
.btn-nav {
  background: var(--brand-primary); color: var(--text-dark) !important;
  padding: 11px 26px; border-radius: 8px;
  font-weight: 700; font-size: var(--f-sm);
  transition: background .2s;
}
.btn-nav:hover { background: var(--brand-secondary); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 28px; height: 3px; background: var(--brand-primary); border-radius: 2px; }
.mob-menu { display: none; flex-direction: column; gap: 16px; padding: 20px 24px; background: var(--bg-main); border-top: 1px solid var(--border-color); }
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 600; font-size: var(--f-md); }
.mob-menu a:hover { color: var(--brand-primary); }
.mob-menu .btn-nav { display: inline-block; text-align: center; margin-top: 6px; }

/* ===== MOBILE SIDEBAR OVERLAY ===== */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(18, 36, 26, 0.55); z-index: 900; }
.mob-overlay.open { display: block; }

/* ===== HERO SECTION ===== */
.hero {
  padding: 64px 24px 0;
  background: linear-gradient(160deg, #ffffff 0%, #EAF3EC 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 50px; align-items: center;
  position: relative; z-index: 1;
  padding-bottom: 60px;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 span { font-style: italic; color: var(--brand-secondary); font-weight: 600; }
.hero-sub { color: var(--text-muted); margin-bottom: 26px; font-size: var(--f-lg); font-weight: 400; max-width: 560px; }

.hero-trust-strip { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.hero-trust-strip li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.98rem; color: var(--text-main); margin-bottom: 0; }
.hero-trust-strip .icon { color: var(--brand-primary); width: 20px; height: 20px; }

.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; }

.hero-art { display: flex; align-items: center; justify-content: center; position: relative; }
.photo-frame-hero { position: relative; width: 100%; max-width: 440px; }
.photo-frame-hero::before {
  content: ""; position: absolute; top: -24px; left: -24px; width: 220px; height: 220px;
  background: var(--brand-secondary); opacity: 0.18; border-radius: 50%; z-index: 0;
}
.photo-frame-hero::after {
  content: ""; position: absolute; bottom: -20px; right: -20px; width: 150px; height: 150px;
  background: var(--brand-accent-light); opacity: 0.22; border-radius: 50%; z-index: 0;
}

.hero-vine { position: relative; left: 0; right: 0; width: 100%; height: 50px; line-height: 0; }
.hero-vine svg { width: 100%; height: 100%; display: block; }
.vine-line { fill: none; stroke: var(--brand-secondary); stroke-width: 2; opacity: 0.5; }

/* ===== PHOTO FRAMES — real <img> containers (What Is / Quality / Hero) ===== */
/* Swap the src on the <img> tags in index.html for your own photos; this   */
/* frame (rounded corners, soft shadow, square crop) stays consistent.      */
.photo-frame {
  position: relative; z-index: 1;
  aspect-ratio: 1 / 1; width: 100%; min-height: 260px;
  border-radius: 20px; overflow: hidden;
  background: var(--bg-light); border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== TWO COLUMNS (ABOUT / QUALITY) ===== */
.two-col { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.two-col h2 { margin-bottom: 22px; }

/* ===== BENEFITS BADGES ===== */
.badges-grid {
  max-width: 1150px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
.badge-card { text-align: center; padding: 34px 20px; border: 2px solid var(--border-color); border-radius: 14px; background: var(--card-bg); transition: border-color .25s, box-shadow .25s, transform .25s; }
.badge-card:hover { border-color: var(--brand-secondary); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.badge-icon { width: 46px; height: 46px; color: var(--brand-primary); margin: 0 auto 16px; display: block; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.badge-card h4 { color: var(--brand-primary); margin-bottom: 10px; font-size: 1.2rem; }
.badge-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== INGREDIENTS — signature "botanical index" specimen cards ===== */
.ing-list { max-width: 950px; margin: 0 auto; list-style: none; }
.ing-item { display: grid; grid-template-columns: 96px 1fr; gap: 24px; align-items: start; padding: 28px 32px; margin-bottom: 18px; background: var(--card-bg); border: 1px solid var(--border-color); border-left: 4px solid var(--brand-primary); border-radius: 4px; transition: box-shadow .25s, border-left-color .25s; }
.ing-item:hover { box-shadow: var(--shadow-md); border-left-color: var(--brand-accent); }
.ing-tag { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ing-num { font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem; color: var(--brand-primary); letter-spacing: 0.5px; }
.ing-icon { width: 44px; height: 44px; color: var(--brand-secondary); stroke-width: 1.6; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.ing-content h4 { color: var(--brand-primary); margin-bottom: 10px; font-size: 1.3rem; }
.ing-content p { margin-bottom: 0; color: var(--text-main); }
.ing-note { max-width: 950px; margin: 26px auto 0; background: var(--bg-light); border: 1px solid var(--border-color); border-radius: 12px; padding: 22px 26px; font-size: 0.98rem; color: var(--text-muted); }
.ing-note strong { color: var(--brand-primary); }

/* ===== BONUSES ===== */
.bonus-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.bonus-card { background: var(--card-bg); border: 2px solid var(--brand-secondary); border-radius: 16px; padding: 34px; position: relative; box-shadow: var(--shadow-sm); }
.bonus-cover { width: 100%; max-width: 160px; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-sm); margin: 0 0 16px; display: block; }
.bonus-tag { position: absolute; top: -15px; left: 30px; background: var(--brand-berry); color: var(--text-dark); font-weight: 700; font-size: 0.9rem; padding: 6px 18px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-card h4 { color: var(--brand-primary); margin: 8px 0 6px; }
.bonus-price { font-size: 1rem; color: var(--text-muted); margin-bottom: 12px; }
.bonus-price .was { text-decoration: line-through; opacity: 0.7; }
.bonus-price .now { color: var(--brand-secondary); font-weight: 700; }
.bonus-card p { margin-bottom: 0; }

/* ===== PRICING TABLES ===== */
.pricing-grid {
  max-width: 1100px; margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; align-items: end; text-align: center;
}
.p-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 25px;
  border: 2px solid var(--border-color);
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.p-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--brand-secondary); }
.p-card.pop { border-color: var(--brand-primary); border-width: 3px; box-shadow: var(--shadow-md); padding-top: 50px; background: #F6FAF7; }
.p-card.pop-alt { border-color: var(--brand-accent); background: #FBF6EE; }
.pop-badge {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  background: var(--brand-primary); color: var(--text-dark);
  font-weight: 700; font-size: 0.95rem; padding: 8px 24px; border-radius: 25px;
  white-space: nowrap; box-shadow: 0 4px 10px rgba(31, 92, 62, 0.3);
}
.p-card.pop-alt .pop-badge { background: var(--brand-accent); box-shadow: 0 4px 10px rgba(150, 99, 26, 0.3); }
.p-photo { width: 100%; max-width: 240px; height: 140px; object-fit: contain; margin: 6px auto 16px; display: block; }
.supply { font-size: var(--f-lg); font-weight: 700; margin-bottom: 4px; color: var(--brand-secondary); }
.supply span { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text-muted); margin-top: 4px; }
.price-big { font-size: var(--f-price); font-weight: 700; color: var(--text-main); line-height: 1; font-family: var(--font-display); }
.per-btl { color: var(--text-muted); margin-bottom: 12px; font-weight: 600; }
.was-price { text-decoration: line-through; opacity: 0.65; font-weight: 400; }
.savings { font-size: 1.1rem; font-weight: 700; color: var(--text-main); margin-bottom: 6px; }
.bonus-callout { font-weight: 700; color: var(--brand-berry); font-size: 0.95rem; margin-bottom: 4px; }
.ship-note { font-weight: 700; color: var(--text-muted); font-size: 0.95rem; margin-bottom: 8px; }
.ship-note.free-ship { color: var(--brand-secondary); }
.guarantee-note { font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; color: var(--text-muted); }

/* ===== GUARANTEE ===== */
.mb-inner { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: center; }
.guarantee-seal { width: 100%; max-width: 220px; display: block; margin: 0 auto; }
.art-seal-ring { fill: none; stroke: var(--brand-primary); stroke-width: 3; }
.art-seal-inner { fill: #EAF3EC; stroke: var(--brand-secondary); stroke-width: 2; }
.seal-text-big { font-family: var(--font-display); font-size: 42px; font-weight: 700; fill: var(--brand-primary); }
.seal-text-small { font-family: var(--font-mono); font-size: 12px; font-weight: 600; letter-spacing: 1px; fill: var(--text-muted); }
.mb-inner h3 { color: var(--brand-primary); margin-bottom: 18px; }

/* ===== FAQ ===== */
.faq-list { max-width: 950px; margin: 36px auto 0; }
.faq-item { background: var(--card-bg); border-radius: 12px; margin-bottom: 14px; border: 1px solid var(--border-color); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 24px 28px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: var(--f-lg); font-weight: 600; color: var(--text-main); font-family: var(--font-body); }
.faq-arrow { color: var(--brand-primary); transition: transform .3s; font-size: 1.1rem; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; padding: 0 28px; color: var(--text-muted); }
.faq-item.open .faq-ans { max-height: 800px; padding: 0 28px 24px; }
.faq-ans p { margin-bottom: 0; }

/* ===== REFERENCES ===== */
.ref-list { max-width: 950px; margin: 0 auto; list-style: none; counter-reset: ref; }
.ref-list li { counter-increment: ref; font-size: 0.9rem; color: var(--text-muted); padding-left: 34px; position: relative; margin-bottom: 12px; }
.ref-list li::before { content: counter(ref) "."; position: absolute; left: 0; font-weight: 700; color: var(--brand-primary); font-family: var(--font-mono); }

/* ===== FOOTER ===== */
footer { background: var(--bg-dark); color: #A9C4B4; padding: 70px 24px 40px; text-align: center; }
.foot-disc { max-width: 1100px; margin: 0 auto; font-size: 0.92rem; line-height: 1.7; text-align: left; }
.foot-disc p { margin-bottom: 14px; }
.foot-disc strong { color: #D3E6DA; }
.foot-links { display: flex; justify-content: center; gap: 26px; margin: 38px 0 24px; flex-wrap: wrap; }
.foot-links a { color: #8FCBA6; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }
.foot-links a:hover { color: #FFFFFF; }
.foot-copy { font-size: 0.88rem; opacity: 0.75; margin-top: 15px; font-family: var(--font-mono); }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  :root {
    --f-body: 1.02rem; --f-md: 1.2rem; --f-lg: 1.35rem;
    --f-xl: 1.7rem; --f-2xl: 2.1rem; --f-3xl: 2.5rem; --f-price: 2.9rem;
  }
  .header-spacer { height: 96px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 40px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-trust-strip { align-items: center; }
  .hero-ctas { justify-content: center; width: 100%; }
  .hero-art { order: -1; margin-bottom: 10px; }
  .hero-art svg { max-width: 300px; }
  .two-col, .mb-inner { grid-template-columns: 1fr; text-align: center; }
  .two-col > div:first-child { max-width: 320px; margin: 0 auto; }
  .two-col p { text-align: left; }
  .badges-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid, .bonus-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .p-card.pop, .p-card.pop-alt { padding-top: 42px; }
  .ing-item { grid-template-columns: 1fr; text-align: center; padding: 46px 24px 26px; position: relative; }
  .ing-tag { flex-direction: row; justify-content: center; position: absolute; top: -18px; left: 50%; transform: translateX(-50%); background: var(--card-bg); padding: 4px 14px; border-radius: 20px; border: 1px solid var(--border-color); }
  .ing-content p { text-align: left; }
}

@media (max-width: 600px) {
  :root {
    --f-body: 0.98rem; --f-md: 1.1rem; --f-lg: 1.25rem;
    --f-xl: 1.5rem; --f-2xl: 1.8rem; --f-3xl: 2.1rem; --f-price: 2.5rem;
  }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-cta, .btn-cta-xl { padding: 16px 20px; font-size: var(--f-md); width: 100%; }
  .btn-cta-ghost { margin-left: 0; width: 100%; text-align: center; }
  .section { padding: 54px 20px; }
  .top-disclosure { font-size: 0.65rem; padding: 6px 14px; }
  .foot-disc { text-align: left; }
  .bonus-tag { left: 50%; transform: translateX(-50%); white-space: nowrap; }
}

/* ==========================================================================
   SIMPLE PAGES (Contact / Privacy / Terms / Disclaimer / Refund / Shipping /
   Unsubscribe) — minimal header+footer variant, reuses tokens above.
   ========================================================================== */
.simple-header { background: var(--bg-main); border-bottom: 1px solid var(--border-color); padding: 20px 24px; }
.simple-header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.simple-header .nav-logo { font-size: 1.5rem; }
.simple-header .back-home { font-weight: 600; font-size: var(--f-sm); color: var(--text-muted); }
.simple-header .back-home:hover { color: var(--brand-primary); }

.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px 90px; }
.legal-wrap h1 { font-size: var(--f-2xl); margin-bottom: 8px; }
.legal-updated { color: var(--text-muted); font-size: var(--f-sm); margin-bottom: 35px; }
.legal-wrap h2 { font-size: var(--f-lg); color: var(--brand-primary); margin-top: 40px; margin-bottom: 12px; }
.legal-wrap h3 { font-size: var(--f-md); margin-top: 22px; margin-bottom: 10px; }
.legal-wrap ul, .legal-wrap ol { margin: 0 0 18px 22px; }
.legal-wrap a { text-decoration: underline; }

.simple-footer { background: var(--bg-dark); color: var(--text-dark); padding: 40px 24px; text-align: center; margin-top: 40px; }
.simple-footer .foot-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 18px; flex-wrap: wrap; }
.simple-footer .foot-links a { color: #8FCBA6; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.simple-footer .foot-links a:hover { color: #FFFFFF; }
.simple-footer .foot-copy { font-size: 0.85rem; opacity: 0.75; }

@media (max-width: 600px) {
  .legal-wrap { padding: 40px 20px 60px; }
}
