/* ============================================
   LIVING PROOF PROTOCOLS — SHARED STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream:    #faf7f2;
  --cream-dk: #f0ece3;
  --ink:      #1c1b18;
  --ink-mid:  #4a4840;
  --ink-lt:   #8a8780;
  --green:    #2d6a4f;
  --green-md: #1b4332;
  --green-lt: #d8f3dc;
  --gold:     #c9a84c;
  --gold-lt:  #faf0d7;
  --rust:     #b5431a;
  --rust-lt:  #faeae4;
  --white:    #ffffff;
  --border:   rgba(28,27,24,0.1);
  --radius:   10px;
  --max-w:    760px;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Jost', system-ui, sans-serif;
  --shadow:   0 2px 20px rgba(28,27,24,0.07);
  --shadow-lg:0 8px 40px rgba(28,27,24,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT ---- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 3.5rem 0; }

/* ---- NAV ---- */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--green);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-pill:hover { background: var(--green-md) !important; transform: translateY(-1px); }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
  display: block;
}
h1, .h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
h1 em, .h1 em { font-style: italic; color: var(--green); }
h2, .h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
h2 em { font-style: italic; color: var(--green); }
h3, .h3 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
p {
  font-size: 15px;
  color: var(--ink-mid);
  margin-bottom: 0.85rem;
  line-height: 1.8;
}
p:last-child { margin-bottom: 0; }
p.lead {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
}
.text-faint { color: var(--ink-lt); }
.text-green { color: var(--green); }

/* ---- DIVIDERS ---- */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}
.ornament {
  text-align: center;
  color: var(--ink-lt);
  font-size: 18px;
  letter-spacing: 0.5em;
  margin: 2.5rem 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-full { display: block; width: 100%; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45,106,79,0.3);
}
.btn-primary:hover { background: var(--green-md); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,106,79,0.35); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green-lt); }

.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--cream-dk); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201,168,76,0.3);
}
.btn-gold:hover { background: #b8912d; transform: translateY(-2px); }

.cta-subtext {
  display: block;
  font-size: 11px;
  color: var(--ink-lt);
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.badge-green { background: var(--green-lt); color: var(--green-md); }
.badge-gold  { background: var(--gold-lt);  color: #7a5c1a; }
.badge-rust  { background: var(--rust-lt);  color: var(--rust); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.card:last-child { margin-bottom: 0; }

/* ---- TESTIMONIAL ---- */
.testimonial {
  border-left: 3px solid var(--gold);
  background: var(--gold-lt);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-lt);
  font-style: normal;
}

/* ---- FEATURE LIST ---- */
.feature-list {
  list-style: none;
  margin: 1rem 0;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 0.45rem;
}

/* ---- PRICE ---- */
.price-display {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-note {
  font-size: 12px;
  color: var(--ink-lt);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

/* ---- STATS ROW ---- */
.stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-lt);
}

/* ---- STEP / PROCESS ---- */
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.step-body h3 { margin-bottom: 0.3rem; }

/* ---- COMPARISON TABLE ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 1rem 0;
}
.compare-table th {
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
}
.compare-table th.col-what { color: var(--ink-lt); background: var(--cream-dk); width: 30%; }
.compare-table th.col-pro  { color: var(--green-md); background: var(--green-lt); }
.compare-table th.col-otc  { color: var(--rust); background: var(--rust-lt); }
.compare-table td {
  padding: 0.6rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.55;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-what { color: var(--ink-mid); font-weight: 600; background: var(--cream-dk); }
.compare-table td.col-pro  { color: var(--green-md); background: #f0faf4; }
.compare-table td.col-otc  { color: var(--rust); background: #fdf5f3; }
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 6px; position: relative; top: -1px; }
.dot-green { background: var(--green); }
.dot-rust  { background: var(--rust); }

/* ---- FULLSCRIPT LINKS ---- */
.fs-box {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--cream-dk);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0.6rem;
}
.fs-box:hover { background: #e4dfd5; transform: translateX(2px); }
.fs-box strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.fs-box span { font-size: 12px; color: var(--ink-lt); }

/* ---- HIGHLIGHT BLOCK ---- */
.highlight {
  background: var(--green-lt);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.highlight-gold {
  background: var(--gold-lt);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

/* ---- PATH CARDS (Prepare/Repair) ---- */
.path-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--white);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.path-card.active-path { border-color: var(--green); }
.path-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.path-tag-green { background: var(--green-lt); color: var(--green-md); }
.path-tag-gold  { background: var(--gold-lt);  color: #7a5c1a; }

/* ---- WBC DATA ROWS ---- */
.wbc-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.wbc-row:last-child { border-bottom: none; border-radius: 0 0 var(--radius) var(--radius); }
.wbc-row:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.wbc-num { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--green); min-width: 65px; }
.wbc-date { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-lt); min-width: 110px; }
.wbc-note { font-size: 13px; color: var(--ink-mid); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  margin-top: 4rem;
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
}
.site-footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.site-footer a:hover { color: var(--white); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.55s ease 0.05s both; }
.anim-2 { animation: fadeUp 0.55s ease 0.15s both; }
.anim-3 { animation: fadeUp 0.55s ease 0.25s both; }
.anim-4 { animation: fadeUp 0.55s ease 0.35s both; }

/* ---- MOBILE ---- */
@media (max-width: 600px) {
  section { padding: 2.5rem 0; }
  .stats-row { gap: 0.75rem; }
  .card, .path-card { padding: 1.25rem; }
  .testimonial { padding: 1.25rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.6rem; font-size: 12px; }
  .nav-links { display: none; }
  .price-display { font-size: 34px; }
}
