/* ───────────────────────────────────────────────────────────────────
   Honestly Lonnie — Warm & Human, elevated
   Rebuild of honestlylonnie.com for Lonnie Weaver-Johnson.
   Brand DNA kept from her existing site (rose / navy / sage / cream,
   Newsreader display + Mulish body), executed at a higher level.
   Built by Motivational Media, 2026.
   ─────────────────────────────────────────────────────────────────── */

:root {
  --paper:      #FBF8F3;   /* warm cream */
  --paper-2:    #F3ECE2;   /* deeper cream for alt sections */
  --card:       #FFFFFF;
  --navy:       #232A68;   /* primary ink + headings (her brand) */
  --navy-soft:  #3A4180;
  --ink-2:      #4C4A55;
  --muted:      #7C7689;
  --rose:       #CC7D84;   /* primary accent (her brand) */
  --rose-deep:  #B05D66;   /* hover / emphasis */
  --rose-soft:  #F3E2E0;
  --sage:       #8DB7A4;   /* secondary accent (her brand) */
  --sage-soft:  #E3EEE7;
  --line:       #E8DFD2;
  --line-2:     #D9CCBA;
  --shadow-sm:  0 1px 2px rgba(35,42,104,.05), 0 4px 16px -8px rgba(35,42,104,.12);
  --shadow-md:  0 2px 4px rgba(35,42,104,.06), 0 18px 40px -20px rgba(35,42,104,.22);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Mulish", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1.1rem; text-wrap: pretty; }
a { color: var(--rose-deep); text-underline-offset: 3px; }
.serif { font-family: "Newsreader", Georgia, serif; }
.italic { font-style: italic; }

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

.eyebrow {
  font-family: "Mulish", sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1rem;
}
.eyebrow.sage { color: var(--sage); }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-2); line-height: 1.6; max-width: 40em; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: "Mulish", sans-serif; font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 100px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  background: var(--rose); color: #fff; box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--rose-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn-ghost:hover { background: var(--navy); color: #fff; box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--navy-soft); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251,248,243,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: "Newsreader", serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); text-decoration: none; letter-spacing: -0.01em; display: inline-flex; align-items: center; }
.brand span { color: var(--rose-deep); }
.brand img { height: 44px; width: auto; display: block; }
.footer .brand img { height: 40px; }
@media (max-width: 820px) { .brand img { height: 38px; } }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: "Mulish", sans-serif; font-weight: 600; font-size: .98rem; color: var(--navy); text-decoration: none; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); }
.nav-links .btn { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--navy); }
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; background: var(--paper); flex-direction: column; gap: 1.2rem; padding: 1.5rem 24px 2rem; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .25s ease; align-items: flex-start; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; }
}

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.alt { background: var(--paper-2); }
.section.navy { background: var(--navy); color: #fff; }
.section.navy h1, .section.navy h2, .section.navy h3 { color: #fff; }
.section.navy .lede { color: #D7DAEE; }
.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Hero */
.hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem,6vw,5rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; background: var(--paper-2); position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { color: var(--rose-deep); font-style: italic; }
.hero .lede { margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-strip { margin-top: 2.2rem; font-family: "Newsreader", serif; font-style: italic; font-size: 1.15rem; color: var(--sage); display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.hero-strip span { white-space: nowrap; }
.hero-strip span::before { content: "~ "; color: var(--rose); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; order: -1; }
}

/* Stat / proof row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stat { padding: 1.4rem 1.2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.stat .num { font-family: "Newsreader", serif; font-size: 2.4rem; line-height: 1; color: var(--rose-deep); margin-bottom: .35rem; }
.stat .lbl { font-size: .92rem; color: var(--muted); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }

/* Split (meet lonnie preview) */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.flip { grid-template-columns: 1.15fr .85fr; }
.split-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3/4; background: var(--paper-2); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
@media (max-width: 820px) { .split, .split.flip { grid-template-columns: 1fr; } .split-photo { max-width: 380px; } }

/* Keynote cards */
.keynotes { display: grid; gap: 1.5rem; }
.keynote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: start; transition: transform .15s ease, box-shadow .15s ease; }
.keynote:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.keynote-num { font-family: "Newsreader", serif; font-size: 2.4rem; color: var(--rose); line-height: 1; opacity: .8; }
.keynote h3 { margin-bottom: .15rem; }
.keynote .sub { font-family: "Mulish", sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: .9rem; }
.keynote p { margin-bottom: .6rem; color: var(--ink-2); font-size: .98rem; }
.keynote .for { font-style: italic; font-family: "Newsreader", serif; color: var(--muted); font-size: 1.02rem; }
@media (max-width: 560px) { .keynote { grid-template-columns: 1fr; gap: .6rem; } }

/* Ways to work */
.ways { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.way { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.way h3 { font-size: 1.3rem; margin-bottom: .4rem; display: flex; align-items: center; gap: .6rem; }
.way h3 .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
.way:nth-child(2) h3 .dot { background: var(--sage); }
.way:nth-child(3) h3 .dot { background: var(--navy); }
.way:nth-child(4) h3 .dot { background: var(--rose-deep); }
.way p { margin: 0; color: var(--ink-2); font-size: .98rem; }
@media (max-width: 640px) { .ways { grid-template-columns: 1fr; } }

/* Specialties list (speaker topics) */
.specialties { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.spec { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.spec h3 { font-size: 1.25rem; margin-bottom: .9rem; padding-bottom: .7rem; border-bottom: 2px solid var(--rose-soft); }
.spec ul { margin: 0; padding: 0; list-style: none; }
.spec li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; color: var(--ink-2); font-size: .97rem; }
.spec li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
@media (max-width: 720px) { .specialties { grid-template-columns: 1fr; } }

/* Reel / video */
.reel { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; background: #000; }
.reel iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Trusted by marquee */
.trusted { text-align: center; }
.trusted .label { font-family: "Mulish", sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.8rem; }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3.5rem; width: max-content; animation: scroll 38s linear infinite; align-items: center; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 56px; width: auto; opacity: .7; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.marquee-track img:hover { opacity: 1; filter: grayscale(0); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testimonial { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 2.2rem; box-shadow: var(--shadow-sm); position: relative; }
.testimonial::before { content: "\201C"; position: absolute; top: .2rem; left: 1.2rem; font-family: "Newsreader", serif; font-size: 4.5rem; color: var(--rose-soft); line-height: 1; }
.testimonial blockquote { margin: 0 0 1.1rem; padding-top: 1.2rem; font-family: "Newsreader", serif; font-size: 1.22rem; line-height: 1.45; color: var(--navy); position: relative; }
.testimonial .who { font-family: "Mulish", sans-serif; font-weight: 700; color: var(--rose-deep); font-size: .95rem; }
.testimonial .who span { display: block; font-weight: 400; color: var(--muted); font-size: .88rem; }
@media (max-width: 720px) { .testimonials { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lede { margin: 0 auto 2rem; }

/* Form */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: "Mulish", sans-serif; font-weight: 700; font-size: .85rem; color: var(--navy); }
.field label .req { color: var(--rose-deep); }
.field input, .field select, .field textarea {
  font-family: "Mulish", sans-serif; font-size: 1rem; color: var(--navy);
  padding: .75rem .9rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--paper); outline: none; transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-soft); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.checks { display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.check { display: inline-flex; align-items: center; gap: .45rem; font-size: .92rem; color: var(--ink-2); cursor: pointer; }
.form-note { font-size: .92rem; color: var(--muted); margin-top: 1rem; min-height: 1.2em; }
.form-note.ok { color: var(--sage); font-weight: 700; }
.form-note.err { color: var(--rose-deep); font-weight: 700; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Footer */
.footer { background: var(--navy); color: #C9CDEC; padding: 3rem 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer .brand { color: #fff; }
.footer .brand span { color: var(--rose); }
.footer a { color: #C9CDEC; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; font-size: .95rem; }
.footer-col .head { font-weight: 700; color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .3rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social a:hover { background: var(--rose); }
.footer-social svg { width: 18px; height: 18px; }
.footer-base { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; color: #9499C8; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; }

/* Reveal on scroll. Progressive enhancement: content is visible by default,
   and only hidden-then-animated when JS is running (html.js). This guarantees
   content can never be permanently invisible if JS/observer fails. */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } .marquee-track { animation: none; } }
