/* ============================================================
   glpone1.com — GLP-1 Resource Center
   Editorial design system v2
   Type: Fraunces (display serif) + Inter (text)
   ============================================================ */

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

:root {
  /* palette — restrained, editorial, clinical-trust */
  --ink:        #16201c;   /* near-black, green-tinted */
  --ink-soft:   #3a4a44;
  --muted:      #6f7d77;
  --faint:      #9aa6a0;

  --paper:      #fbfaf6;   /* warm off-white page */
  --paper-2:    #f4f2ea;   /* sectional warm band */
  --card:       #ffffff;

  --forest:     #154a39;   /* primary deep green */
  --forest-d:   #0f3a2c;
  --forest-l:   #e7efe9;
  --clay:       #b4603a;   /* warm secondary accent, used sparingly */
  --clay-l:     #f5e9e2;

  --line:       #e4e0d4;   /* warm hairline */
  --line-2:     #d6d1c2;

  --star:       #c08a2d;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1140px;
  --rad: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--forest-d); }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ---------- Headings ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.14; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clay);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Top disclosure ---------- */
.disclosure-bar {
  background: var(--ink);
  color: #cdd6d1;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 9px 18px;
}
.disclosure-bar a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Header ---------- */
header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(251,250,246,0.88);
  backdrop-filter: saturate(180%) blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex; align-items: center; gap: 11px;
}
.logo:hover { color: var(--ink); }
.logo .mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--forest); color: #fff;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0;
}
.logo .one { color: var(--clay); }
nav.links { display: flex; gap: 30px; align-items: center; }
nav.links a {
  font-family: var(--sans);
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.005em;
  position: relative;
  padding: 4px 0;
}
nav.links a:hover { color: var(--forest); }
nav.links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--clay); transition: width .2s ease;
}
nav.links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  background: var(--forest);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--rad);
  border: 1px solid var(--forest);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .06s ease;
}
.btn:hover { background: var(--forest-d); border-color: var(--forest-d); color: #fff !important; }
.btn:active { transform: translateY(1px); }
.btn.lg { padding: 16px 36px; font-size: 1.05rem; }
.btn.ghost {
  background: transparent; color: var(--forest) !important;
  border: 1px solid var(--line-2);
}
.btn.ghost:hover { background: var(--card); border-color: var(--forest); color: var(--forest) !important; }
.btn.clay { background: var(--clay); border-color: var(--clay); }
.btn.clay:hover { background: #9c5030; border-color: #9c5030; }

/* ---------- Hero (editorial, asymmetric) ---------- */
.hero { padding: 84px 0 72px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 30em; margin-bottom: 30px; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.hero-aside .stat { margin-bottom: 26px; }
.hero-aside .stat:last-child { margin-bottom: 0; }
.hero-aside .num { font-family: var(--serif); font-size: 2.1rem; color: var(--forest); line-height: 1; }
.hero-aside .cap { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* trust line under hero */
.trustline { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.trustline .ti { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--muted); font-weight: 500; }
.trustline .ti svg { width: 17px; height: 17px; stroke: var(--forest); flex-shrink: 0; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.band { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Editorial cards (hairline, no heavy shadow) ---------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.cell {
  background: var(--card);
  padding: 34px 30px;
  transition: background .18s ease;
}
.cell:hover { background: #fcfdfc; }
.cell .ico { width: 30px; height: 30px; margin-bottom: 18px; }
.cell .ico svg { width: 30px; height: 30px; stroke: var(--forest); fill: none; stroke-width: 1.4; }
.cell .klabel { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.cell h3 { margin-bottom: 10px; }
.cell h3 a { color: var(--ink); }
.cell h3 a:hover { color: var(--forest); }
.cell p { color: var(--ink-soft); font-size: 0.98rem; }
.cell .read {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-family: var(--sans); font-weight: 600; font-size: 0.9rem; color: var(--forest);
}
.cell .read:hover { gap: 10px; }

/* ---------- Standalone card (used outside grid) ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 30px;
}

/* ---------- Disclosure / affiliate boxes ---------- */
.affiliate-box {
  background: var(--clay-l);
  border: 1px solid #e8d3c7;
  border-left: 3px solid var(--clay);
  border-radius: var(--rad);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #6a4530;
  margin: 0 0 30px;
}
.affiliate-box strong { color: #5a3a26; }

/* ---------- Article / prose ---------- */
.article { max-width: 720px; margin: 0 auto; padding: 60px 28px 80px; }
.article .meta {
  font-family: var(--sans); color: var(--muted); font-size: 0.86rem;
  letter-spacing: 0.02em; margin-bottom: 22px;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.article .meta::before { content: ""; }
.article > h1 { margin-bottom: 20px; line-height: 1.08; }
.lead-para { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 28px; }

.prose { font-size: 1.06rem; }
.prose p { margin-bottom: 20px; }
.prose h2 { margin: 44px 0 14px; padding-top: 8px; }
.prose h3 { margin: 32px 0 10px; font-size: 1.18rem; }
.prose ul, .prose ol { margin: 0 0 22px 22px; }
.prose li { margin-bottom: 9px; }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line-2); }
.prose a:hover { text-decoration-color: var(--forest); }
.prose sup { color: var(--clay); font-weight: 600; }
.prose blockquote {
  border-left: 2px solid var(--clay);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
}

.callout {
  background: var(--forest-l);
  border-radius: var(--rad);
  padding: 24px 26px;
  margin: 30px 0;
  font-size: 1rem;
  color: var(--ink);
}
.callout strong { color: var(--forest-d); }

.references {
  margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line);
  font-family: var(--sans); font-size: 0.88rem; color: var(--muted);
}
.references h3 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink); margin-bottom: 12px; }
.references ol { margin-left: 18px; }
.references li { margin-bottom: 7px; }
.references em { font-style: italic; }

/* ---------- Author byline ---------- */
.author-box {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px;
  margin: 40px 0;
}
.author-box .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 1.2rem;
  flex-shrink: 0;
}
.author-box .name { font-family: var(--serif); font-weight: 600; font-size: 1.1rem; }
.author-box .role { font-family: var(--sans); color: var(--clay); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin: 2px 0 8px; }
.author-box p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Review list ---------- */
.review-item {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 26px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--rad);
  padding: 26px 28px; margin-bottom: 16px;
}
.review-item:hover { border-color: var(--line-2); }
.review-item .rank {
  font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--forest);
  text-align: center; line-height: 1; border-right: 1px solid var(--line); padding-right: 20px;
}
.review-item .rank small { display: block; font-family: var(--sans); font-size: 0.6rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 6px; }
.review-item h3 { margin-bottom: 5px; }
.review-item h3 a { color: var(--ink); }
.stars { color: var(--star); font-size: 0.92rem; letter-spacing: 2px; }
.score-pill {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 0.82rem;
  color: var(--forest-d); background: var(--forest-l);
  border-radius: 3px; padding: 3px 10px; margin-top: 6px;
}
.review-item .cta { text-align: center; }
.review-item .cta small { display: block; color: var(--muted); font-size: 0.74rem; margin-top: 7px; }

/* pros & cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 28px 0; }
.pros, .cons { border: 1px solid var(--line); border-radius: var(--rad); padding: 22px; }
.pros { background: #f1f6f2; }
.cons { background: #f9f1ed; }
.pros h4, .cons h4 { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.pros h4 { color: var(--forest-d); }
.cons h4 { color: #9c5030; }
.pros ul, .cons ul { list-style: none; }
.pros li, .cons li { padding-left: 24px; position: relative; margin-bottom: 9px; font-size: 0.95rem; }
.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--forest); font-weight: 700; }
.cons li::before { content: "–"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }

/* ---------- VSL block ---------- */
.vsl {
  background: var(--ink); border-radius: var(--rad); aspect-ratio: 16/9;
  display: grid; place-items: center; color: #fff; margin: 30px 0;
  position: relative; overflow: hidden;
}
.vsl .play {
  width: 72px; height: 72px; background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem; cursor: pointer;
  transition: background .2s ease;
}
.vsl .play:hover { background: var(--forest); border-color: var(--forest); }
.vsl .label { position: absolute; bottom: 18px; left: 20px; font-family: var(--sans); font-size: 0.8rem; opacity: .8; letter-spacing: 0.04em; }

/* ---------- Email capture (editorial, not gradient) ---------- */
.capture {
  background: var(--ink); color: #f0efe9;
  border-radius: var(--rad); padding: 56px 48px; margin: 56px auto; max-width: 820px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.capture h2 { color: #fff; margin-bottom: 10px; }
.capture p { color: #b9c3be; font-size: 1rem; margin: 0; }
.capture form { display: flex; flex-direction: column; gap: 10px; }
.capture input {
  padding: 14px 16px; border-radius: var(--rad); border: 1px solid #34433d;
  background: #1f2c27; color: #fff; font-family: var(--sans); font-size: 1rem;
}
.capture input::placeholder { color: #8a958f; }
.capture .btn.clay { width: 100%; text-align: center; }
.capture .fine { font-size: 0.74rem; color: #8a958f; margin-top: 4px; }
.capture .fine a { color: #cdd6d1; text-decoration: underline; }

/* ---------- Footer ---------- */
footer.site { background: var(--ink); color: #aab6b0; padding: 60px 0 32px; margin-top: 0; font-size: 0.92rem; }
footer.site .cols { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
footer.site h4 { font-family: var(--sans); color: #fff; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
footer.site a { color: #97a39d; display: block; margin-bottom: 9px; }
footer.site a:hover { color: #fff; }
footer.site .brand { font-family: var(--serif); font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
footer.site .brand .one { color: var(--clay); }
footer.site .disclaimer { border-top: 1px solid #2a3833; padding-top: 24px; font-size: 0.76rem; color: #76837d; line-height: 1.7; }
footer.site .copy { margin-top: 16px; font-size: 0.74rem; color: #65726c; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-aside { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; display: flex; gap: 36px; }
  .grid-3, .grid-2, .pros-cons { grid-template-columns: 1fr; }
  .capture { grid-template-columns: 1fr; gap: 24px; padding: 40px 28px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  nav.links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--paper); flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  nav.links.open { display: flex; }
  nav.links a { padding: 13px 28px; width: 100%; }
  nav.links a::after { display: none; }
  .nav-toggle { display: block; }
  .review-item { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .review-item .rank { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 12px; }
}
