/* ============================================================================
   en-gelagen.com  --  style.css
   Hand-written CSS. No framework, no build step, no runtime dependency.
   Every class carries the eg- prefix so this file cannot collide with anything.

   Contents
     01  tokens
     02  reset and base
     03  layout
     04  typography helpers
     05  buttons
     06  header, top bar, navigation
     07  notice bar
     08  hero
     09  trust strip
     10  cards, panels, notes
     11  benefits
     12  steps
     13  ingredients
     14  label table
     15  reviews
     16  bonuses
     17  pricing
     18  guarantee
     19  accordion
     20  footer
     21  sticky bar
     22  motion and utilities
     23  responsive
   ========================================================================== */

/* -- 01  tokens ----------------------------------------------------------- */
:root {
  --eg-ivory:      #FBF7F0;
  --eg-ivory-2:    #F5EDE0;
  --eg-cream:      #FFFFFF;
  --eg-sand:       #EFE2CD;

  --eg-gold:       #C79A3A;
  --eg-gold-deep:  #A87A20;
  --eg-gold-soft:  #E7C87E;
  --eg-gold-pale:  #F7EBD2;

  --eg-espresso:   #2C1E0E;
  --eg-bark:       #4A3720;
  --eg-ink:        #23180B;
  --eg-body:       #5D4E3C;
  --eg-mute:       #857661;

  --eg-berry:      #C6414B;
  --eg-berry-soft: #FBE7E6;

  --eg-line:       #E6D8C0;
  --eg-line-2:     #D6C3A3;

  --eg-shadow:     0 14px 34px -18px rgba(44, 30, 14, .30);
  --eg-shadow-lg:  0 30px 60px -28px rgba(44, 30, 14, .45);

  --eg-r-sm: 8px;
  --eg-r:    14px;
  --eg-r-lg: 22px;
  --eg-r-xl: 32px;

  --eg-shell: 1200px;
  --eg-read:  46rem;

  --eg-head: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --eg-body-font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* -- 02  reset and base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 130px;
}

body {
  margin: 0;
  background: var(--eg-ivory);
  color: var(--eg-body);
  font-family: var(--eg-body-font);
  font-size: 19px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--eg-head);
  color: var(--eg-ink);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.018em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(32px, 4.4vw, 50px); letter-spacing: -.028em; }
h2 { font-size: clamp(26px, 3vw, 36px); }
h3 { font-size: 21px; font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--eg-gold-deep); text-decoration: none; text-underline-offset: 3px; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }
strong, b { color: var(--eg-ink); font-weight: 700; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.35em; }
li { margin-bottom: .5em; }

[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--eg-gold-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--eg-gold-soft); color: var(--eg-ink); }

.eg-skip { position: absolute; left: -9999px; }
.eg-skip:focus {
  left: 16px; top: 16px; z-index: 90;
  background: #fff; padding: 12px 20px; border-radius: 999px;
  box-shadow: var(--eg-shadow);
}

/* -- 03  layout ----------------------------------------------------------- */
.eg-shell { width: 100%; max-width: var(--eg-shell); margin: 0 auto; padding: 0 24px; }
.eg-narrow { width: 100%; max-width: var(--eg-read); margin: 0 auto; }

.eg-sec       { padding: 84px 0; }
.eg-sec-sm    { padding: 56px 0; }
.eg-ivory     { background: var(--eg-ivory); }
.eg-ivory-2   { background: var(--eg-ivory-2); }
.eg-white     { background: var(--eg-cream); }
.eg-dark      { background: var(--eg-espresso); color: #E9DCC5; }
.eg-dark h2, .eg-dark h3, .eg-dark h4 { color: #fff; }
.eg-goldband  { background: linear-gradient(135deg, #C79A3A 0%, #A87A20 55%, #8A6314 100%); color: #fff; }
.eg-goldband h2, .eg-goldband h3 { color: #fff; }

.eg-grid { display: grid; gap: 28px; }
.eg-g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eg-g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eg-g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.eg-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.eg-split-l { grid-template-columns: 0.85fr 1.15fr; }
.eg-split-r { grid-template-columns: 1.15fr 0.85fr; }

/* -- 04  typography helpers ----------------------------------------------- */
.eg-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--eg-head); font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--eg-gold-deep); margin: 0 0 16px;
}
.eg-kicker::before, .eg-kicker::after {
  content: ""; width: 26px; height: 2px; background: var(--eg-gold-soft); border-radius: 2px;
}
.eg-kicker-light { color: var(--eg-gold-soft); }
.eg-kicker-light::before, .eg-kicker-light::after { background: rgba(231, 200, 126, .45); }

.eg-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.eg-head p { font-size: 20px; color: var(--eg-mute); margin: 0; }
.eg-dark .eg-head p, .eg-goldband .eg-head p { color: rgba(255, 255, 255, .82); }
.eg-head-l { margin-left: 0; text-align: left; }

.eg-lede { font-size: 21px; line-height: 1.62; color: var(--eg-mute); }
.eg-small { font-size: 15px; color: var(--eg-mute); }
.eg-center { text-align: center; }

.eg-prose { max-width: var(--eg-read); margin: 0 auto; }
.eg-prose h2 { margin: 2.1em 0 .55em; font-size: 28px; }
.eg-prose h2:first-child { margin-top: 0; }
.eg-prose h3 { margin: 1.7em 0 .5em; }
.eg-prose ul, .eg-prose ol { margin-bottom: 1.3em; }

/* -- 05  buttons ---------------------------------------------------------- */
.eg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--eg-head); font-size: 17px; font-weight: 800;
  padding: 16px 34px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.eg-btn:hover { text-decoration: none; transform: translateY(-2px); }
.eg-btn:active { transform: translateY(0); }

.eg-btn-gold {
  background: linear-gradient(135deg, #D9AC4C 0%, #C79A3A 45%, #A87A20 100%);
  color: #fff; box-shadow: 0 14px 26px -14px rgba(168, 122, 32, .85);
}
.eg-btn-gold:hover { box-shadow: 0 20px 34px -14px rgba(168, 122, 32, .95); color: #fff; }

.eg-btn-dark { background: var(--eg-espresso); color: #fff; border-color: var(--eg-espresso); }
.eg-btn-dark:hover { background: #1B1207; border-color: #1B1207; color: #fff; }

.eg-btn-line { background: #fff; color: var(--eg-ink); border-color: var(--eg-line-2); }
.eg-btn-line:hover { border-color: var(--eg-gold); color: var(--eg-gold-deep); }

.eg-btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.eg-btn-ghost:hover { background: #fff; color: var(--eg-ink); }

.eg-btn-lg { font-size: 19px; padding: 19px 42px; }
.eg-btn-sm { font-size: 15px; padding: 11px 22px; }
.eg-btn-block { width: 100%; }

.eg-btnrow { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* -- 06  header, top bar, navigation -------------------------------------- */
.eg-topbar {
  background: var(--eg-espresso);
  color: #E4D3AE;
  font-family: var(--eg-head);
  font-size: 13.5px;
  font-weight: 600;
}
.eg-topbar .eg-shell {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 34px; padding-top: 10px; padding-bottom: 10px;
}
.eg-topbar span { display: inline-flex; align-items: center; gap: 8px; }

.eg-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 240, .96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--eg-line);
}
.eg-header .eg-shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 80px;
}
.eg-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.eg-logo:hover { text-decoration: none; }
.eg-logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #D9AC4C, #A87A20);
  color: #fff; font-family: var(--eg-head); font-weight: 800; font-size: 21px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--eg-shadow);
}
.eg-logo-word {
  font-family: var(--eg-head); font-size: 25px; font-weight: 800;
  color: var(--eg-ink); line-height: 1;
}
.eg-logo-sub {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: .3em;
  color: var(--eg-gold-deep); margin-top: 6px;
}

.eg-nav { display: flex; align-items: center; gap: 26px; }
.eg-nav a {
  font-family: var(--eg-head); font-size: 16px; font-weight: 600;
  color: var(--eg-bark); text-decoration: none;
}
.eg-nav a:hover { color: var(--eg-gold-deep); text-decoration: none; }
.eg-nav a.eg-on { color: var(--eg-gold-deep); }

.eg-burger {
  display: none; flex-direction: column; gap: 5px;
  background: #fff; border: 1px solid var(--eg-line-2);
  border-radius: 999px; padding: 13px; cursor: pointer;
}
.eg-burger span { display: block; width: 18px; height: 2px; background: var(--eg-espresso); border-radius: 2px; }

/* -- 07  notice bar ------------------------------------------------------- */
.eg-notice {
  background: var(--eg-berry-soft);
  border-bottom: 1px solid #F2CFCC;
  color: #8E2F35;
  font-size: 14.5px;
  line-height: 1.6;
}
.eg-notice .eg-shell { display: flex; gap: 12px; align-items: flex-start; padding-top: 12px; padding-bottom: 12px; }
.eg-notice svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; stroke: var(--eg-berry); }
.eg-notice p { margin: 0; }
.eg-notice b { color: #8E2F35; }
.eg-notice a { color: #8E2F35; text-decoration: underline; }

/* -- 08  hero ------------------------------------------------------------- */
.eg-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(231, 200, 126, .55) 0%, rgba(231, 200, 126, 0) 60%),
    linear-gradient(180deg, #FDF9F3 0%, #F5EDE0 100%);
  padding: 72px 0 64px;
}
.eg-hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 48px; align-items: center; }
.eg-hero h1 { margin-bottom: 22px; }
.eg-hero-lede { font-size: 21px; line-height: 1.6; color: var(--eg-mute); margin-bottom: 32px; max-width: 32em; }
.eg-hero-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.eg-hero-art::before {
  content: ""; position: absolute; width: 420px; max-width: 92%; aspect-ratio: 1;
  background: #fff; opacity: .72;
  border-radius: 48% 52% 55% 45% / 52% 45% 55% 48%;
}
.eg-hero-art img { position: relative; z-index: 2; width: 430px; max-width: 100%; }

.eg-hero-facts { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; }
.eg-hero-facts li { display: flex; gap: 14px; align-items: flex-start; margin: 0; }
.eg-hero-facts .eg-ic {
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  color: var(--eg-gold-deep); display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; box-shadow: var(--eg-shadow);
}
.eg-hero-facts .eg-ic svg { width: 19px; height: 19px; }
.eg-hero-facts b { display: block; font-family: var(--eg-head); font-size: 16.5px; }
.eg-hero-facts span.eg-sub { font-size: 15px; color: var(--eg-mute); }

.eg-rating { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.eg-stars { display: inline-flex; gap: 3px; }
.eg-stars svg { width: 18px; height: 18px; fill: var(--eg-gold); stroke: none; }

/* -- 09  trust strip ------------------------------------------------------ */
.eg-strip { background: var(--eg-espresso); }
.eg-strip .eg-shell {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-top: 22px; padding-bottom: 22px;
}
.eg-strip-item { display: flex; gap: 14px; align-items: center; color: #E4D3AE; }
.eg-strip-item svg { width: 22px; height: 22px; stroke: var(--eg-gold-soft); flex: 0 0 auto; }
.eg-strip-item b { display: block; color: #fff; font-family: var(--eg-head); font-size: 15.5px; }
.eg-strip-item span { font-size: 14px; opacity: .8; }

/* -- 10  cards, panels, notes --------------------------------------------- */
.eg-card {
  background: #fff; border-radius: var(--eg-r-lg); padding: 34px;
  box-shadow: var(--eg-shadow);
}
.eg-card-line { background: #fff; border: 1px solid var(--eg-line); border-radius: var(--eg-r-lg); padding: 34px; }

.eg-note {
  background: var(--eg-gold-pale); border: 1px solid var(--eg-line);
  border-radius: var(--eg-r-lg); padding: 26px 32px; margin: 36px 0;
}
.eg-note h3 { margin: 0 0 10px; font-size: 19px; color: var(--eg-gold-deep); }
.eg-note-warn { background: #FFF8E8; border-color: #EFD9A2; }
.eg-note-stop { background: var(--eg-berry-soft); border-color: #F2CFCC; }
.eg-note-stop h3 { color: #8E2F35; }

.eg-quote {
  background: var(--eg-espresso); color: #F2E6CE;
  border-radius: var(--eg-r-lg); padding: 34px 40px; margin: 38px 0;
  font-family: var(--eg-head); font-size: 21px; line-height: 1.5;
}

/* -- 11  benefits --------------------------------------------------------- */
.eg-benefit {
  background: #fff; border-radius: var(--eg-r-lg); padding: 36px 32px;
  box-shadow: var(--eg-shadow); position: relative; overflow: hidden;
  height: 100%;
}
.eg-benefit::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, #E7C87E, #C79A3A, #A87A20);
}
.eg-benefit .eg-ic {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--eg-gold-pale); color: var(--eg-gold-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.eg-benefit .eg-ic svg { width: 27px; height: 27px; }
.eg-benefit h3 { margin-bottom: 10px; }
.eg-benefit p { font-size: 16.5px; color: var(--eg-mute); }

.eg-benefit-row {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: flex-start;
  padding: 26px 0; border-top: 1px solid var(--eg-line);
}
.eg-benefit-row:first-child { border-top: 0; padding-top: 0; }
.eg-benefit-row .eg-num {
  width: 46px; height: 46px; border-radius: 50%; flex: 0 0 auto;
  background: linear-gradient(135deg, #D9AC4C, #A87A20); color: #fff;
  font-family: var(--eg-head); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

/* -- 12  steps ------------------------------------------------------------ */
.eg-step {
  background: #fff; border-radius: var(--eg-r-lg); padding: 32px 28px;
  box-shadow: var(--eg-shadow); position: relative; padding-top: 42px; height: 100%;
}
.eg-step-n {
  position: absolute; top: -18px; left: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--eg-espresso); color: var(--eg-gold-soft);
  font-family: var(--eg-head); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.eg-step h3 { font-size: 19px; margin-bottom: 8px; }
.eg-step p { font-size: 16px; color: var(--eg-mute); }

/* -- 13  ingredients ------------------------------------------------------ */
.eg-ing {
  background: #fff; border-radius: var(--eg-r-lg); overflow: hidden;
  box-shadow: var(--eg-shadow); display: flex; flex-direction: column; height: 100%;
}
.eg-ing img { width: 100%; height: 190px; object-fit: cover; }
.eg-ing-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.eg-ing-amt {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--eg-head); font-size: 14.5px; font-weight: 700;
  color: var(--eg-gold-deep); margin-bottom: 10px;
}
.eg-ing-amt em { font-style: normal; color: var(--eg-mute); font-weight: 600; }
.eg-ing h3 { font-size: 19px; margin-bottom: 10px; }
.eg-ing p { font-size: 16px; color: var(--eg-mute); }

.eg-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.eg-pill {
  display: inline-flex; align-items: baseline; gap: 7px;
  background: #fff; border: 1px solid var(--eg-line);
  border-radius: 999px; padding: 9px 18px;
  font-family: var(--eg-head); font-size: 15px; font-weight: 700; color: var(--eg-ink);
}
.eg-pill em { font-style: normal; font-weight: 600; color: var(--eg-gold-deep); }

/* -- 14  label table ------------------------------------------------------ */
.eg-tblwrap {
  overflow-x: auto; background: #fff; border-radius: var(--eg-r-lg);
  box-shadow: var(--eg-shadow); margin: 34px 0;
}
.eg-tbl { width: 100%; border-collapse: collapse; font-size: 16.5px; min-width: 520px; }
.eg-tbl caption { position: absolute; left: -9999px; }
.eg-tbl th, .eg-tbl td { padding: 14px 22px; border-bottom: 1px solid var(--eg-line); text-align: left; vertical-align: top; }
.eg-tbl thead th {
  background: var(--eg-espresso); color: #F2E6CE;
  font-family: var(--eg-head); font-size: 12.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .13em; border-bottom: 0;
}
.eg-tbl tbody th { font-family: var(--eg-head); font-weight: 700; color: var(--eg-ink); font-size: 16.5px; }
.eg-tbl tbody tr:last-child th, .eg-tbl tbody tr:last-child td { border-bottom: 0; }
.eg-tbl tbody tr:nth-child(even) { background: #FDFAF4; }
.eg-tbl .eg-dv { color: var(--eg-gold-deep); font-family: var(--eg-head); font-weight: 700; white-space: nowrap; }
.eg-tbl .eg-amt { font-family: var(--eg-head); font-weight: 700; color: var(--eg-ink); white-space: nowrap; }

/* -- 15  reviews ---------------------------------------------------------- */
.eg-review {
  background: #fff; border-radius: var(--eg-r-lg); padding: 34px 30px;
  box-shadow: var(--eg-shadow); display: flex; flex-direction: column; height: 100%;
  position: relative;
}
.eg-review-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.eg-review-top img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 4px var(--eg-gold-pale);
}
.eg-review-name { font-family: var(--eg-head); font-weight: 800; font-size: 17px; color: var(--eg-ink); }
.eg-review-meta { font-size: 14px; color: var(--eg-mute); display: block; margin-top: 2px; }
.eg-review blockquote { margin: 0; padding: 0; font-size: 17px; color: var(--eg-body); flex: 1; }
.eg-review-foot {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--eg-line);
  font-size: 14px; color: var(--eg-mute); display: flex; align-items: center; gap: 8px;
}
.eg-review-foot svg { width: 15px; height: 15px; stroke: var(--eg-gold-deep); }

.eg-sample {
  display: inline-block; background: var(--eg-berry); color: #fff;
  font-family: var(--eg-head); font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}

/* -- 16  bonuses ---------------------------------------------------------- */
.eg-bonus {
  background: #fff; border-radius: var(--eg-r-lg); padding: 26px;
  box-shadow: var(--eg-shadow); display: flex; gap: 22px; align-items: flex-start; height: 100%;
}
.eg-bonus img { width: 108px; flex: 0 0 auto; }
.eg-bonus h3 { font-size: 17.5px; margin-bottom: 8px; }
.eg-bonus p { font-size: 15.5px; color: var(--eg-mute); }
.eg-bonus-tag {
  display: inline-block; font-family: var(--eg-head); font-size: 12.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--eg-gold-deep); margin-bottom: 6px;
}
.eg-bonus-val { text-decoration: line-through; color: var(--eg-mute); font-weight: 600; }

/* -- 17  pricing ---------------------------------------------------------- */
.eg-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; max-width: 1060px; margin: 0 auto; }
.eg-plan {
  background: #fff; border-radius: var(--eg-r-xl); padding: 0 0 32px;
  box-shadow: var(--eg-shadow); overflow: hidden; text-align: center; position: relative;
}
.eg-plan-head {
  background: var(--eg-sand); color: var(--eg-bark);
  font-family: var(--eg-head); font-weight: 800; font-size: 16px;
  letter-spacing: .06em; text-transform: uppercase; padding: 13px 16px;
}
.eg-plan-body { padding: 26px 26px 0; }
.eg-plan-qty { font-family: var(--eg-head); font-weight: 800; font-size: 22px; color: var(--eg-ink); margin-bottom: 2px; }
.eg-plan-supply { font-size: 14.5px; color: var(--eg-mute); margin-bottom: 20px; }
.eg-plan-img { height: 190px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 20px; }
.eg-plan-img img { max-height: 190px; width: auto; }
.eg-plan-price { font-family: var(--eg-head); font-weight: 800; line-height: 1; color: var(--eg-ink); }
.eg-plan-price .eg-cur { font-size: 24px; vertical-align: super; }
.eg-plan-price .eg-num2 { font-size: 58px; letter-spacing: -.03em; }
.eg-plan-per { font-size: 12.5px; text-transform: uppercase; letter-spacing: .16em; color: var(--eg-mute); margin: 8px 0 14px; }
.eg-plan-list { list-style: none; margin: 0 0 22px; padding: 0; text-align: left; }
.eg-plan-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; margin-bottom: 9px; }
.eg-plan-list svg { width: 16px; height: 16px; stroke: var(--eg-gold-deep); stroke-width: 2.6; flex: 0 0 auto; margin-top: 5px; }
.eg-plan-total { font-size: 16px; margin-bottom: 6px; }
.eg-plan-total s { color: var(--eg-mute); }
.eg-plan-total b { color: var(--eg-gold-deep); }
.eg-plan-ship { font-size: 14px; color: var(--eg-mute); margin-bottom: 20px; }
.eg-plan-cta { padding: 0 26px; }
.eg-plan-note { font-size: 13.5px; color: var(--eg-mute); margin-top: 14px; padding: 0 26px; }

.eg-plan-best { box-shadow: var(--eg-shadow-lg); transform: translateY(-14px); }
.eg-plan-best .eg-plan-head { background: linear-gradient(135deg, #D9AC4C, #A87A20); color: #fff; }
.eg-plan-save {
  display: inline-block; background: var(--eg-berry-soft); color: #8E2F35;
  font-family: var(--eg-head); font-size: 13px; font-weight: 800;
  border-radius: 999px; padding: 5px 14px; margin-bottom: 14px;
}

/* -- 18  guarantee -------------------------------------------------------- */
.eg-guarantee { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: center; }
.eg-guarantee img { width: 220px; }

/* -- 19  accordion -------------------------------------------------------- */
.eg-acc { max-width: 880px; margin: 0 auto; }
.eg-acc-item {
  background: #fff; border-radius: var(--eg-r); margin-bottom: 12px;
  box-shadow: var(--eg-shadow); overflow: hidden;
}
.eg-acc-btn {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--eg-head); font-size: 18px; font-weight: 700; color: var(--eg-ink);
  padding: 22px 62px 22px 28px; position: relative; line-height: 1.45;
}
.eg-acc-btn::before, .eg-acc-btn::after {
  content: ""; position: absolute; right: 28px; top: 50%; background: var(--eg-gold-deep);
  transition: transform .24s ease, opacity .24s ease; border-radius: 2px;
}
.eg-acc-btn::before { width: 15px; height: 2.5px; margin-top: -1px; }
.eg-acc-btn::after { width: 2.5px; height: 15px; margin-top: -7.5px; margin-right: 6.25px; }
.eg-acc-item.eg-open .eg-acc-btn::after { transform: rotate(90deg); opacity: 0; }
.eg-acc-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.eg-acc-body p { padding: 0 28px 24px; margin: 0; font-size: 17px; }
.eg-acc-item.eg-open .eg-acc-body { max-height: 800px; }

/* -- 20  footer ----------------------------------------------------------- */
.eg-footer { background: var(--eg-espresso); color: #CFBB96; padding: 72px 0 34px; }
.eg-footer h2 { font-family: var(--eg-head); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; color: var(--eg-gold-soft); margin-bottom: 18px; }
.eg-footer ul { list-style: none; margin: 0; padding: 0; }
.eg-footer li { margin-bottom: 11px; }
.eg-footer a { color: #E4D3AE; text-decoration: none; font-size: 15.5px; }
.eg-footer a:hover { color: #fff; text-decoration: none; }
.eg-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.eg-footer-brand .eg-logo-word { color: #fff; }
.eg-footer-brand p { font-size: 15px; color: rgba(207,187,150,.9); margin-top: 18px; }
.eg-footer-legal { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; margin-top: 36px; font-size: 13px; line-height: 1.65; color: rgba(207,187,150,.75); }
.eg-footer-legal b { color: #E4D3AE; }
.eg-footer-legal p { margin: 0; }
.eg-footer-base {
  margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 13px; color: rgba(207,187,150,.7);
}

/* -- 21  sticky bar ------------------------------------------------------- */
.eg-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--eg-espresso);
  transform: translateY(100%); transition: transform .3s ease;
}
.eg-sticky.eg-up { transform: translateY(0); }
.eg-sticky .eg-shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 13px; padding-bottom: 13px; }
.eg-sticky p { margin: 0; color: #E4D3AE; font-size: 16px; }
.eg-sticky b { color: #fff; font-family: var(--eg-head); }

/* -- 22  motion and utilities --------------------------------------------- */
.eg-js .eg-rise { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.eg-js .eg-rise.eg-in { opacity: 1; transform: none; }

.eg-seals { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; }
.eg-seal { text-align: center; }
.eg-seal img { width: 96px; margin: 0 auto 12px; mix-blend-mode: multiply; }
.eg-seal b { display: block; font-family: var(--eg-head); font-size: 15.5px; color: var(--eg-ink); }
.eg-seal span { font-size: 14px; color: var(--eg-mute); }

.eg-crumb { font-family: var(--eg-head); font-size: 14.5px; margin-bottom: 18px; color: var(--eg-mute); }
.eg-crumb a { color: var(--eg-gold-deep); }
.eg-crumb i { font-style: normal; margin: 0 9px; color: var(--eg-line-2); }

.eg-stamp { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; font-size: 14.5px; color: var(--eg-mute); margin-top: 26px; font-family: var(--eg-head); }
.eg-stamp span { display: inline-flex; align-items: center; gap: 8px; }
.eg-stamp svg { width: 15px; height: 15px; stroke: var(--eg-gold-deep); }

.eg-band {
  background: var(--eg-gold-pale); border-radius: var(--eg-r-lg);
  padding: 30px 36px; margin: 40px 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
}
.eg-band p { margin: 0; }
.eg-band .eg-band-t { font-family: var(--eg-head); font-weight: 800; font-size: 20px; color: var(--eg-ink); margin-bottom: 4px; }

.eg-onward { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.eg-onward a {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 999px; padding: 12px 24px;
  font-family: var(--eg-head); font-weight: 700; font-size: 16px;
  color: var(--eg-ink); box-shadow: var(--eg-shadow); text-decoration: none;
}
.eg-onward a:hover { color: var(--eg-gold-deep); text-decoration: none; }
.eg-onward svg { width: 15px; height: 15px; stroke: var(--eg-gold-deep); }

svg {
  width: 1em; height: 1em; flex: 0 0 auto; vertical-align: -.14em;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.eg-ic svg { width: 1.35em; height: 1.35em; }
.eg-stars svg { width: 18px; height: 18px; }

/* -- 23  responsive ------------------------------------------------------- */
@media (max-width: 1080px) {
  .eg-nav {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--eg-ivory); border-bottom: 1px solid var(--eg-line);
    padding: 0 24px 22px; box-shadow: var(--eg-shadow);
  }
  .eg-nav.eg-open { display: flex; }
  .eg-nav a { padding: 15px 0; border-bottom: 1px solid var(--eg-line); }
  .eg-nav .eg-btn { margin-top: 18px; border-bottom: 0; }
  .eg-burger { display: flex; }
  .eg-header .eg-shell { position: relative; }

  .eg-g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eg-g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eg-hero-grid, .eg-split, .eg-split-l, .eg-split-r { grid-template-columns: 1fr; gap: 40px; }
  .eg-hero-art { min-height: 380px; }
  .eg-strip .eg-shell { grid-template-columns: repeat(2, 1fr); }
  .eg-plans { grid-template-columns: 1fr; max-width: 460px; }
  .eg-plan-best { transform: none; }
  .eg-footer-top { grid-template-columns: repeat(2, 1fr); }
  .eg-seals { grid-template-columns: repeat(2, 1fr); }
  .eg-sec { padding: 64px 0; }
}

@media (max-width: 720px) {
  body { font-size: 18px; }
  .eg-shell { padding: 0 18px; }
  .eg-g2, .eg-g3, .eg-g4 { grid-template-columns: 1fr; }
  .eg-hero-facts { grid-template-columns: 1fr; }
  .eg-strip .eg-shell { grid-template-columns: 1fr; }
  .eg-footer-top, .eg-footer-legal { grid-template-columns: 1fr; }
  .eg-guarantee { grid-template-columns: 1fr; text-align: center; }
  .eg-guarantee img { margin: 0 auto; }
  .eg-bonus { flex-direction: column; }
  .eg-bonus img { width: 132px; margin: 0 auto; }
  .eg-sticky p { display: none; }
  .eg-sticky .eg-btn { width: 100%; }
  .eg-btn { width: 100%; }
  .eg-btnrow .eg-btn { width: 100%; }
  .eg-card, .eg-card-line, .eg-benefit, .eg-review { padding: 26px 22px; }
  .eg-note { padding: 22px 24px; }
  .eg-quote { padding: 26px 24px; font-size: 19px; }
  .eg-band { padding: 24px 22px; }
  .eg-sec { padding: 52px 0; }
  .eg-topbar .eg-shell { flex-direction: column; gap: 6px; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eg-js .eg-rise { opacity: 1; transform: none; transition: none; }
  .eg-btn:hover { transform: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
