/* Kenneavy AI — homepage. Recreated from the design handoff (Claude/Anthropic-style:
   ivory paper, terracotta coral, Newsreader serif + Hanken Grotesk). Tokens per README. */

:root {
  --paper:        #f0eee6;
  --cream:        #e9e5d9;
  --dark:         #262420;
  --footer-bg:    #1c1a17;
  --ink:          #2b2a27;
  --body:         #57534a;
  --muted:        #5d564a;
  --muted-soft:   #8a8475;
  --coral:        #d97757;
  --coral-hover:  #c96544;
  --coral-hover-d:#e0876a;
  --coral-text:   #bd5d39;
  --coral-text2:  #b25b38;
  --coral-italic: #e8a07f;
  --coral-num:    #e6bca6;
  --on-dark:      #ece7da;
  --on-dark-2:    #d6d1c4;
  --mut-dark:     #a8a293;
  --mut-dark-2:   #9a9384;
  --mut-dark-3:   #7a7464;
  --hairline:     rgba(60,55,45,.12);
  --hairline-2:   rgba(60,55,45,.16);
  --hairline-d:   rgba(255,255,255,.08);
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
a { text-decoration: none; color: inherit; }
p { text-wrap: pretty; margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 400; }
::selection { background: #f0d9ce; }
img { max-width: 100%; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }

/* ---- containers ---- */
.wrap { width: 100%; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.w-1080 { max-width: 1080px; } .w-900 { max-width: 900px; } .w-860 { max-width: 860px; }
.w-820 { max-width: 820px; }   .w-760 { max-width: 760px; } .w-720 { max-width: 720px; } .w-700 { max-width: 700px; }

/* ---- buttons ---- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  border-radius: 999px; cursor: pointer; border: 0; transition: background .15s ease, box-shadow .15s ease;
}
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-hover); }
.btn-lg { font-size: 18px; padding: 17px 34px; box-shadow: 0 8px 24px rgba(196,108,76,.32); }
.btn-lg:hover { box-shadow: 0 10px 30px rgba(196,108,76,.4); }
.btn-nav { font-size: 15px; padding: 10px 18px; }
/* CTA on dark bands */
.on-dark-cta { box-shadow: 0 10px 30px rgba(0,0,0,.3); }
.on-dark-cta:hover { background: var(--coral-hover-d); box-shadow: 0 14px 36px rgba(0,0,0,.38); }
.btn[aria-disabled="true"] { opacity: .6; cursor: default; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(240,238,230,.82); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--coral);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: 15px; flex: none;
}
.brand-name { font-family: var(--sans); font-weight: 600; font-size: 18px; letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav-link { font-family: var(--sans); font-weight: 500; font-size: 15px; color: #6b6657; }
.nav-link:hover { color: var(--coral-text); }

/* ---- shared type ---- */
.eyebrow {
  font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--coral-text);
}
.serif { font-family: var(--serif); }
.h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 1.12; letter-spacing: -.01em; }
.section-head { text-align: center; }
.section-intro { font-family: var(--sans); font-weight: 400; font-size: 18px; line-height: 1.6; color: var(--muted); }

/* ---- hero ---- */
.hero { padding-top: 96px; padding-bottom: 72px; text-align: center; }
.hero .eyebrow { display: block; margin-bottom: 26px; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: 60px; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); margin-bottom: 26px; }
.hero .lead { font-size: 21px; line-height: 1.55; color: var(--body); max-width: 580px; margin: 0 auto 36px; }
.microcopy { font-family: var(--sans); font-weight: 500; font-size: 15px; color: var(--muted-soft); margin-top: 20px; }

/* ---- dark bands ---- */
.band-dark { background: var(--dark); color: var(--on-dark); }
.band-dark .inner { padding-top: 84px; padding-bottom: 84px; text-align: center; }
.band-dark h2 { font-family: var(--serif); font-weight: 400; font-size: 38px; line-height: 1.18; letter-spacing: -.01em; color: #fff; margin-bottom: 24px; }
.band-dark p { font-size: 19px; line-height: 1.65; color: var(--on-dark-2); }
.band-dark p + p { margin-top: 18px; }
.band-dark em { font-family: var(--serif); font-style: italic; color: var(--coral-italic); }

/* ---- generic light section ---- */
.section { padding-top: 88px; padding-bottom: 72px; }
.band-cream { background: var(--cream); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.band-cream.no-bottom { border-bottom: 0; }

/* ---- benefit grid (15 minutes / why me) ---- */
.benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 56px; }
.benefit-label { font-family: var(--sans); font-weight: 600; font-size: 19px; margin-bottom: 8px; color: var(--coral-text2); }
.benefit p { font-size: 17px; line-height: 1.6; color: var(--body); }

/* ---- why me (dark band, benefit grid) ---- */
.why { background: var(--dark); color: var(--on-dark); padding-top: 88px; padding-bottom: 80px; }
.why .section-head { margin-bottom: 8px; }
.why .eyebrow { display: block; margin-bottom: 16px; color: var(--coral-italic); }
.why h2 { font-family: var(--serif); font-weight: 400; font-size: 40px; line-height: 1.12; letter-spacing: -.01em; color: #fff; }
.why .section-intro { color: var(--on-dark-2); margin: 16px auto 0; max-width: 600px; }
.why .benefits { margin-top: 48px; }
.why .benefit-label { color: var(--coral-italic); }
.why .benefit p { color: var(--on-dark-2); }

/* ---- offerings list ---- */
.offerings { margin-top: 48px; display: flex; flex-direction: column; }
.offering { display: flex; gap: 28px; padding: 26px 0; border-top: 1px solid var(--hairline-2); }
.offering:last-child { border-bottom: 1px solid var(--hairline-2); }
.offering-cat { flex: none; width: 150px; font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-text); padding-top: 3px; }
.offering-body { flex: 1; }
.offering-title { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-bottom: 6px; }
.offering-body p { font-size: 16px; line-height: 1.6; color: var(--body); }

/* ---- steps ---- */
.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.step-num { font-family: var(--serif); font-weight: 400; font-size: 44px; line-height: 1; color: var(--coral-num); margin-bottom: 14px; }
.step-title { font-family: var(--sans); font-weight: 600; font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 16px; line-height: 1.6; color: var(--body); }

/* ---- FAQ ---- */
.faq-h2 { font-family: var(--serif); font-weight: 400; font-size: 38px; line-height: 1.14; letter-spacing: -.01em; text-align: center; margin-bottom: 44px; }
.qa-list { display: flex; flex-direction: column; gap: 30px; }
.qa-q { font-family: var(--serif); font-weight: 500; font-size: 21px; margin-bottom: 7px; }
.qa p { font-size: 17px; line-height: 1.6; color: var(--body); }

/* ---- final CTA ---- */
.cta-final h2 { font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1.1; letter-spacing: -.01em; color: #fff; margin-bottom: 22px; }
.cta-final p { font-size: 19px; line-height: 1.6; color: var(--on-dark-2); margin-bottom: 38px; }

/* ---- talk-to-owner form (lives on the dark #book band) ---- */
.tf { max-width: 520px; margin: 8px auto 0; text-align: left; }
.tf-row { display: flex; gap: 14px; }
.tf-input {
  width: 100%; margin-bottom: 14px; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff;
  font-family: var(--sans); font-size: 16px; -webkit-appearance: none;
}
.tf-row .tf-input { flex: 1; }
.tf-input::placeholder { color: #9a9384; }
.tf-input:focus { outline: none; border-color: var(--coral); background: rgba(255,255,255,.10); }
.tf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.tf-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 8px; }
.tf-link { background: none; border: 0; color: var(--mut-dark); font: 500 15px var(--sans); cursor: pointer; text-decoration: underline; padding: 6px; }
.tf-link:hover { color: var(--on-dark-2); }
.tf-status { max-width: 520px; margin: 18px auto 0; font-size: 17px; line-height: 1.5; color: var(--on-dark-2); }
.tf-status .tf-ok { color: #cfe8d6; } .tf-status .tf-warn { color: #f0c0a8; }
.tf-spin { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,.3); border-top-color: var(--coral); border-radius: 50%; animation: tfspin .8s linear infinite; vertical-align: -2px; margin-right: 6px; }
@keyframes tfspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .tf-spin { animation: none; } }
@media (max-width: 560px) { .tf-row { flex-direction: column; gap: 0; } }

/* ---- brand lockup + tagline (header) ---- */
.brand-lockup { display: flex; flex-direction: column; line-height: 1.12; }
.brand-tagline { font: 600 11px var(--sans); letter-spacing: .02em; color: var(--coral-text); }

/* ---- founder ---- */
.founder { padding-top: 64px; padding-bottom: 8px; }
.founder-inner { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; }
.founder-photo { width: 300px; height: 375px; object-fit: cover; object-position: center 28%; border-radius: 18px; box-shadow: var(--shadow); background: var(--cream); }
.founder-text .eyebrow { display: block; margin-bottom: 12px; }
.founder-text .h2 { margin-bottom: 16px; }
.founder-text p { font-size: 18px; line-height: 1.6; color: var(--body); margin-bottom: 14px; }
.founder-text strong { color: var(--ink); }
.founder-text em { font-style: italic; font-family: var(--serif); }
.founder-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 18px 0 0; padding: 0; }
.founder-facts li { font: 600 13px var(--sans); color: var(--coral-text); background: rgba(217,119,87,.10); border-radius: 999px; padding: 6px 13px; }

/* ---- plans ---- */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
.plan { background: #faf8f2; border: 1px solid var(--hairline-2); border-radius: 16px; padding: 30px 26px; }
.plan.featured { background: #2b2421; border: 1.5px solid var(--coral); box-shadow: 0 16px 40px rgba(120,70,50,.28); position: relative; }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font: 600 12px var(--sans); letter-spacing: .07em; text-transform: uppercase; color: #fff; background: var(--coral); padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.plan-tier { font: 600 14px var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--muted-soft); margin-bottom: 14px; }
.plan.featured .plan-tier { color: var(--coral-italic); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-amt { font: 400 46px var(--serif); color: var(--ink); }
.plan.featured .plan-amt { color: #fff; }
.plan-per { font: 500 15px var(--sans); color: var(--muted-soft); }
.plan-desc { font-size: 15px; line-height: 1.55; color: var(--body); margin-bottom: 22px; }
.plan.featured .plan-desc { color: var(--on-dark-2); }
.plan-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.plan-feat { display: flex; gap: 10px; font: 400 15px/1.5 var(--sans); color: #3d3a34; }
.plan-feat.strong { font-weight: 600; color: var(--ink); }
.plan.featured .plan-feat { color: #e6e1d6; }
.plan.featured .plan-feat.strong { color: #fff; font-weight: 600; }
.plan-feat .ck { color: var(--coral); font-weight: 700; flex: none; }
.plan.featured .plan-feat .ck { color: var(--coral-italic); }
.plan-cta { display: block; text-align: center; font: 600 16px var(--sans); color: var(--ink); background: transparent; border: 1.5px solid #c9b9a3; padding: 13px; border-radius: 999px; transition: border-color .15s, color .15s; }
.plan-cta:hover { border-color: var(--coral); color: var(--coral-text); text-decoration: none; }
.plan-cta.solid { color: #fff; background: var(--coral); border-color: var(--coral); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.plan-cta.solid:hover { background: var(--coral-hover-d); color: #fff; }
.plans-note { text-align: center; font: 500 14px var(--sans); color: var(--muted-soft); margin: 26px 0 0; }

@media (max-width: 820px) {
  .founder-inner { grid-template-columns: 1fr; gap: 24px; justify-items: center; text-align: center; }
  .founder-facts { justify-content: center; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan.featured { order: -1; }
}

/* ---- footer ---- */
.site-footer { background: var(--footer-bg); color: var(--mut-dark-2); }
.footer-inner { padding-top: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 26px; height: 26px; border-radius: 7px; font-size: 13px; }
.footer-brand .brand-name { font-size: 16px; color: var(--on-dark); }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 760px; margin-bottom: 8px; }
.footer-area { font-size: 13px; line-height: 1.7; max-width: 760px; color: var(--mut-dark-3); margin-bottom: 18px; }
.footer-legal { font-size: 13px; color: #5f5a4d; border-top: 1px solid var(--hairline-d); padding-top: 18px; }

/* ---- responsive ---- */
@media (max-width: 820px) {
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .h2, .faq-h2 { font-size: clamp(30px, 7vw, 40px); }
  .cta-final h2 { font-size: clamp(32px, 8vw, 46px); }
  .band-dark h2 { font-size: clamp(28px, 7vw, 38px); }
}
@media (max-width: 720px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .nav { gap: 16px; }
  .nav .nav-link { display: none; }
  .benefits { grid-template-columns: 1fr; gap: 30px; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .offering { flex-direction: column; gap: 6px; }
  .offering-cat { width: auto; padding-top: 0; }
  .hero { padding-top: 64px; }
  .section, .band-dark .inner { padding-top: 64px; padding-bottom: 56px; }
  .hero h1 br { display: none; }
}
