/* ═══════════════════════════════════════════════════════════
   Footwear Guru by Big Peach East Cobb + Alpharetta
   Site stylesheet — v2 (from homepage v3 + fit process v5e mockups)
   ═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: light;
  --bg: #fff7ed;
  --panel: #ffffff;
  --ink: #16312b;
  --muted: #5f6f68;
  --soft: #7b8982;
  --green: #005b3a;
  --green-2: #0b7650;
  --green-3: #073f31;
  --peach: #ff8a3d;
  --peach-2: #f05a28;
  --gold: #f4b23d;
  --cream: #fffaf3;
  --line: rgba(22, 49, 43, .12);
  --shadow: 0 22px 50px rgba(29, 40, 37, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, .24), transparent 28rem),
    radial-gradient(circle at 90% 9%, rgba(0, 91, 58, .13), transparent 24rem),
    linear-gradient(180deg, #fffaf3 0%, var(--bg) 48%, #ffffff 100%);
  color: var(--ink);
}

img { max-width: 100%; }
.page { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px;
  background: var(--green); color: #fff;
  padding: 10px 16px; border-radius: 0 0 12px 0;
  z-index: 100; text-decoration: none; font-weight: 800;
}
.skip-link:focus { left: 0; top: 0; }

/* ─── Typography ───────────────────────────────────────────── */

h1 { font-size: clamp(3.2rem, 6.4vw, 6.85rem); letter-spacing: -.085em; line-height: .88; margin: 18px 0 22px; }
body.page-fit h1 { font-size: clamp(3.1rem, 5.9vw, 6.1rem); line-height: .92; }
h2 { font-size: clamp(2rem, 3.3vw, 3.35rem); letter-spacing: -.055em; line-height: .98; margin: 0; }
h3 { font-size: 1.18rem; letter-spacing: -.035em; line-height: 1.13; margin: 0 0 12px; }
p { color: var(--muted); font-size: 1.04rem; line-height: 1.62; margin: 0; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.34rem); max-width: 820px; color: #4f635b; }
body.page-fit .lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); max-width: 760px; }

/* ─── Header / nav ─────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 243, .88);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1180px, calc(100% - 48px)); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 22px;
}
.brand-zone { display: flex; align-items: center; gap: 20px; min-width: 0; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 280px; text-decoration: none; color: inherit; }
.mark {
  width: 50px; height: 50px; flex: 0 0 50px; border-radius: 16px; background: #fff;
  border: 1px solid rgba(0, 91, 58, .14);
  box-shadow: 0 10px 20px rgba(0, 91, 58, .10);
  display: grid; place-items: center; overflow: hidden;
}
.mark img { width: 108%; height: 108%; object-fit: cover; object-position: center; display: block; }
.brand-title { font-weight: 950; letter-spacing: -.035em; line-height: 1; font-size: 1.14rem; white-space: nowrap; }
.brand-sub { color: var(--muted); font-size: .78rem; margin-top: 3px; font-weight: 650; white-space: nowrap; }
.header-bp-logo { width: 148px; height: auto; display: block; opacity: .98; flex: 0 0 auto; }

.site-nav { display: flex; align-items: center; gap: 20px; font-weight: 780; color: var(--muted); font-size: .94rem; }
.site-nav a { text-decoration: none; color: inherit; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green); }
.nav-cta {
  background: var(--green); color: #fff !important;
  padding: 11px 17px; border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 91, 58, .18);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-2); }

.menu-btn {
  display: none;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  width: 44px; height: 44px; cursor: pointer;
  place-items: center; color: var(--green); padding: 0; flex: 0 0 auto;
}
.menu-btn svg { width: 22px; height: 22px; }
.menu-btn .icon-close { display: none; }

/* ─── Buttons / eyebrow ────────────────────────────────────── */

.buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 22px; border-radius: 999px;
  font-weight: 950; letter-spacing: -.015em; text-decoration: none;
  min-width: 160px; border: 1px solid rgba(0, 91, 58, .16);
  font-size: 1rem; cursor: pointer;
}
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--peach), var(--peach-2));
  box-shadow: 0 18px 34px rgba(240, 90, 40, .25);
  border: none;
}
.button.primary:hover { filter: brightness(1.05); }
.button.secondary { color: var(--green); background: rgba(255, 255, 255, .76); }
.button.secondary:hover { background: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 91, 58, .08); color: var(--green);
  border: 1px solid rgba(0, 91, 58, .14); border-radius: 999px;
  padding: 9px 14px; font-size: .82rem; font-weight: 900;
  letter-spacing: .02em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--peach); border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 138, 61, .18);
}

/* ─── Sections / cards ─────────────────────────────────────── */

.section { padding: 38px 0 48px; }
body.page-fit .section { padding: 40px 0 52px; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
body.page-fit .section-header { align-items: flex-start; }
.section-note { max-width: 560px; color: var(--muted); line-height: 1.55; margin: 0; font-size: 1.03rem; }
body.page-fit .section-note { max-width: 510px; line-height: 1.5; margin-top: 10px; font-size: 1.06rem; }

.cards { display: grid; gap: 20px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 26px; padding: 28px;
  box-shadow: 0 15px 35px rgba(29, 40, 37, .06);
}
.card p { font-size: 1rem; }

.pill {
  display: inline-flex; align-items: center;
  padding: 7px 12px; border-radius: 999px;
  color: var(--green); background: rgba(0, 91, 58, .08);
  border: 1px solid rgba(0, 91, 58, .13);
  font-weight: 900; font-size: .78rem; margin-bottom: 14px;
}

/* ─── Footer (shared) ──────────────────────────────────────── */

.site-footer { padding: 36px 0 52px; margin-top: 30px; }
.footer-inner {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; align-items: center; gap: 44px;
}
.footer-logo { width: 210px; height: auto; display: block; flex: 0 0 auto; }
.tagline { font-weight: 900; font-style: italic; color: #5f6f68; font-size: 1.03rem; text-wrap: balance; }

/* ═══════════════════════════════════════════════════════════
   HOME PAGE
   ═══════════════════════════════════════════════════════════ */

.hero { padding: 42px 0 52px; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 54px; align-items: center; }
.hero-visual { width: 100%; display: block; filter: drop-shadow(0 22px 50px rgba(29, 40, 37, .10)); }
.hero-visual img { width: 100%; height: auto; display: block; border-radius: 42px; }

.step-card { min-height: 168px; padding: 26px 28px; }
.step-title { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.step-num {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 14px;
  display: grid; place-items: center;
  background: #ffe9dd; color: var(--peach-2);
  font-weight: 950; font-size: 1.03rem;
}
.step-title h3 { margin: 0; }

.trust {
  background: var(--green-3); color: #fff;
  border-radius: 40px; padding: 42px 56px; margin: 40px 0 18px;
  box-shadow: 0 24px 60px rgba(0, 91, 58, .20);
}
.trust h2, .trust p { color: #fff; }
.trust-grid { display: grid; grid-template-columns: .92fr 1.18fr; gap: 38px; align-items: center; }
.trust h2 { max-width: 410px; }
.trust p { color: rgba(255, 255, 255, .90); font-size: 1.08rem; line-height: 1.56; }
.pills { display: flex; gap: 10px; flex-wrap: nowrap; margin-top: 22px; align-items: center; }
.pills .pill {
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .20);
  color: rgba(255, 255, 255, .92);
  font-size: .82rem; padding: 8px 12px;
  white-space: nowrap; margin-bottom: 0;
}

/* Store cards (home + visit) */

.store-section { padding-top: 30px; }
.store-card { min-height: 236px; padding: 34px 38px; display: flex; flex-direction: column; justify-content: space-between; }
.store-card .tag {
  color: var(--peach-2); font-weight: 950; font-size: .86rem;
  letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; width: fit-content; margin-bottom: 18px;
}
.store-card h3 { font-size: 1.8rem; margin-bottom: 12px; letter-spacing: -.05em; }
.store-card address { font-style: normal; color: var(--muted); line-height: 1.48; font-size: 1.06rem; margin-bottom: 24px; }
.store-card .phone {
  display: inline-block; margin: -12px 0 24px;
  color: var(--green); font-weight: 950; font-size: 1.1rem;
  text-decoration: none;
}
.store-card .phone:hover { color: var(--green-2); }
.store-actions { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; }
.store-actions a {
  text-align: center; text-decoration: none; border-radius: 999px;
  padding: 11px 16px; font-weight: 950; white-space: nowrap;
}
.store-actions a.sa-green { color: var(--green); background: rgba(0, 91, 58, .08); border: 1px solid rgba(0, 91, 58, .12); }
.store-actions a.sa-green:hover { background: rgba(0, 91, 58, .14); }
.store-actions a.sa-peach { color: var(--peach-2); background: #ffeadf; border: 1px solid rgba(240, 90, 40, .12); }
.store-actions a.sa-peach:hover { background: #ffe0cf; }

/* ═══════════════════════════════════════════════════════════
   FIT PROCESS PAGE
   ═══════════════════════════════════════════════════════════ */

body.page-fit .hero { padding: 42px 0 34px; }
.fit-hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 36px; align-items: stretch; }
.hero-copy { padding-top: 20px; display: flex; flex-direction: column; }
.hero-copy h1 { max-width: 690px; line-height: .96; }
.hero-copy .lead { max-width: 610px; }

.process-panel {
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--line);
  border-radius: 38px;
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative; overflow: hidden;
}
.process-panel::before {
  content: ""; position: absolute; inset: auto -18% -20% 18%; height: 260px;
  background: radial-gradient(circle, rgba(255, 138, 61, .18), transparent 66%);
  pointer-events: none;
}
.process-inner { position: relative; z-index: 1; }
.process-panel-title { font-size: 1.16rem; letter-spacing: -.035em; margin: 0 0 10px; color: var(--ink); }
.process-subhead { color: var(--muted); max-width: 640px; margin: 0 0 14px; line-height: 1.48; font-size: .98rem; }
.process-list { display: grid; gap: 9px; }
.process-step {
  display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 15px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(22, 49, 43, .11);
  border-radius: 21px; padding: 13px 18px;
  box-shadow: 0 10px 28px rgba(29, 40, 37, .04);
}
.process-step .num {
  width: 42px; height: 42px; border-radius: 15px;
  background: #ffe9dd; color: var(--peach-2);
  display: grid; place-items: center; font-weight: 950; font-size: 1.05rem;
}
.process-step h3 { margin: 0 0 3px; font-size: 1.07rem; }
.process-step p { font-size: .95rem; line-height: 1.32; }
.process-callout { margin-top: 14px; background: var(--green); color: #fff; border-radius: 26px; padding: 18px 20px; }
.process-callout h3 { color: #fff; font-size: 1.26rem; margin: 0 0 8px; }
.process-callout p { color: rgba(255, 255, 255, .88); margin: 0; line-height: 1.45; }

/* Five experiences */

.experiences { grid-template-columns: repeat(5, 1fr); gap: 18px; }
.experience-card { min-height: 392px; position: relative; overflow: hidden; padding: 24px 22px 22px; display: flex; flex-direction: column; }
.experience-card::after {
  content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255, 138, 61, .12); right: -58px; top: -58px;
}
.experience-card > * { position: relative; z-index: 1; }
.exp-icon { width: 76px; height: 76px; object-fit: contain; display: block; margin-bottom: 20px; }
.experience-card h3 { color: var(--green); font-size: 1.45rem; margin-bottom: 14px; }
.experience-card p { line-height: 1.48; color: #596861; }
.exp-desc { min-height: 74px; }
.best-start { margin-top: 16px; }
.best-start strong { display: block; margin-bottom: 10px; color: var(--green); font-weight: 950; }

/* Five Experiences header: h2 vertically centered against the note */
#experiences .section-header { align-items: center; }
#experiences .section-header .section-note { margin-top: 0; }

/* Research */

.research-shell {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 36px; padding: 34px;
  box-shadow: 0 18px 48px rgba(29, 40, 37, .07);
}
.research-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: start; }
.research-copy h2 { margin-bottom: 20px; }
.research-copy p + p { margin-top: 14px; }
.research-copy a { color: #0a7db8; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.tool-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 25px; overflow: hidden;
  box-shadow: 0 14px 30px rgba(29, 40, 37, .06);
}
.tool-card img { width: 100%; height: 182px; object-fit: cover; display: block; }
.tool-card .tool-body { padding: 18px; }
.tool-card h3 { font-size: 1.08rem; color: var(--green); margin-bottom: 8px; }
.tool-card p { font-size: .94rem; line-height: 1.46; }

/* Scenarios */

.scenario-card { padding: 24px; }
.scenario-card h3 { font-size: 1.22rem; margin-bottom: 10px; }

/* Footwear Guru example section */

.fg-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 34px; align-items: center; }
.phone-wrap { background: var(--green-3); border-radius: 36px; padding: 20px; box-shadow: 0 24px 55px rgba(0, 91, 58, .18); }
.phone { background: #fffaf3; border-radius: 26px; padding: 18px; }
.example-label { font-weight: 950; color: var(--green); text-transform: uppercase; font-size: .78rem; letter-spacing: .04em; margin-bottom: 12px; }
.bubble { border-radius: 18px; padding: 13px 14px; line-height: 1.38; font-size: .92rem; margin-bottom: 12px; }
.bubble.user { background: #ffe9dd; border: 1px solid rgba(240, 90, 40, .16); }
.bubble.bot { background: #fff; border: 1px solid rgba(22, 49, 43, .12); }
.bubble b { color: var(--green-3); }
.phone .button { width: 100%; min-width: 0; margin-top: 5px; padding: 13px 18px; }
.fg-content .cards.three { margin-top: 22px; }
.fg-content .card { min-height: 154px; }

/* FAQ */

.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
.faq-item { background: rgba(255, 255, 255, .78); border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; }
.faq-item h3 { color: var(--green); font-size: 1.02rem; margin: 0 0 8px; }
.faq-item p { font-size: .96rem; line-height: 1.48; }

/* ═══════════════════════════════════════════════════════════
   VISIT PAGE
   ═══════════════════════════════════════════════════════════ */

.visit-head { text-align: center; max-width: 820px; margin: 0 auto; padding: 52px 0 8px; }
.visit-head h1 { font-size: clamp(3rem, 5.4vw, 5.4rem); line-height: 1.04; margin: 18px auto 22px; }

.coupon-section { padding-top: 4px; }
.coupon {
  max-width: 640px; margin: 0 auto; text-align: center;
  background: #fff;
  border: 3px dashed rgba(0, 91, 58, .45);
  border-radius: 26px;
  padding: 34px 30px 28px;
  box-shadow: 0 15px 35px rgba(29, 40, 37, .06);
}
.coupon-label {
  display: inline-flex;
  color: var(--green); font-weight: 950; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px;
}
.coupon-amount { color: var(--green); font-weight: 950; font-size: clamp(3rem, 6vw, 4.6rem); letter-spacing: -.05em; line-height: 1; }
.coupon-sub { font-weight: 800; font-size: 1.35rem; color: var(--ink); margin-top: 12px; letter-spacing: -.02em; }
.coupon-fine { font-size: .85rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.visit-head .lead { margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   ASK PAGE — all hooks used by ask.js preserved
   ═══════════════════════════════════════════════════════════ */

.ask-main {
  height: calc(100dvh - 79px); /* header ≈ 79px; chat fills remaining viewport */
  display: flex; flex-direction: column;
  padding: 20px clamp(12px, 4vw, 44px);
  overflow: hidden;
}
.ask-panel {
  flex: 1; min-height: 0;
  max-width: 980px; width: 100%;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 14px;
}
.ask-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-bottom: 2px; }
.ask-header h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: .98; letter-spacing: -.045em;
}

.prompt-examples { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.prompt-examples > summary {
  padding: 10px 0; color: var(--muted);
  font-size: .85rem; font-weight: 700; cursor: pointer;
  list-style: none; user-select: none;
  display: flex; align-items: center; gap: 6px;
}
.prompt-examples > summary::-webkit-details-marker { display: none; }
.prompt-examples > summary::after { content: "▾"; font-size: .72rem; margin-left: auto; opacity: .6; }
.prompt-examples[open] > summary::after { content: "▴"; }
.prompt-examples .prompt-cloud { padding: 10px 0 14px; display: flex; flex-wrap: wrap; gap: 8px; }

.prompt-cloud button {
  background: #fff;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); cursor: pointer;
  font: inherit; font-size: .86rem; font-weight: 700;
  padding: 7px 14px; min-height: 34px;
  transition: border-color .1s, color .1s;
}
.prompt-cloud button:hover { border-color: var(--peach-2); color: var(--ink); }

.chat-list {
  flex: 1; min-height: 0;
  overflow-y: auto; list-style: none;
  padding: 0 0 6px; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.message {
  max-width: 880px;
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 49, 43, .12);
  background: #fff;
  line-height: 1.55;
  box-shadow: 0 10px 24px rgba(22, 49, 43, .05);
}
.message p { color: var(--ink); }
.message.user {
  align-self: flex-end;
  background: #ffe9dd;
  border-color: rgba(240, 90, 40, .16);
  max-width: 72%;
  box-shadow: none;
}
.message.assistant { align-self: flex-start; width: min(880px, 100%); }

.message > strong,
.answer-block > strong {
  display: block; margin-bottom: 8px;
  color: var(--green);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
}
.markdown-body strong {
  display: inline; color: inherit; font-size: inherit;
  text-transform: none; letter-spacing: normal;
  font-weight: 700; margin: 0;
}

.summarize-row {
  display: none; /* shown by JS when history.length >= 2 */
  align-items: center; gap: 8px;
  padding: 8px 0; border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.action-btn {
  font-size: .8rem; padding: 7px 14px;
  color: var(--muted); background: #fff;
  border: 1px solid var(--line); border-radius: 999px;
  cursor: pointer; font: inherit; font-weight: 700;
  transition: border-color .1s, color .1s;
}
.action-btn:hover { border-color: var(--green); color: var(--ink); }
.summarize-btn {
  font-size: .86rem; padding: 8px 18px;
  color: var(--green); background: rgba(0, 91, 58, .08);
  border: 1px solid rgba(0, 91, 58, .16); border-radius: 999px;
  cursor: pointer; font: inherit; font-weight: 900;
  margin-left: auto;
  transition: background .1s, border-color .1s;
}
.summarize-btn:hover { background: rgba(0, 91, 58, .14); border-color: var(--green); }

.summary-message {
  max-width: 100% !important; width: 100%;
  background: transparent; border: none; padding: 0; box-shadow: none;
}
.summary-card {
  background: #fff;
  border: 1px solid rgba(240, 90, 40, .35);
  border-radius: 20px; overflow: hidden; width: 100%;
  box-shadow: 0 18px 36px rgba(22, 49, 43, .08);
}
.summary-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #ffe9dd;
}
.summary-title {
  color: var(--peach-2);
  font-size: .76rem; font-weight: 950;
  text-transform: uppercase; letter-spacing: .06em;
}
.summary-body { padding: 16px; }
.copy-summary-btn {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); cursor: pointer;
  font: inherit; font-size: .78rem; font-weight: 700;
  padding: 5px 12px;
  transition: border-color .1s, color .1s;
}
.copy-summary-btn:hover { border-color: var(--peach-2); color: var(--ink); }

.composer {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px; align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.composer textarea { resize: vertical; min-height: 58px; }
select, textarea {
  border: 1px solid var(--line);
  background: #fff; color: var(--ink);
  border-radius: 16px; padding: 12px 14px;
  font: inherit; width: 100%;
}
textarea:focus, select:focus { outline: 2px solid rgba(0, 91, 58, .35); outline-offset: 1px; }

button[type="submit"] {
  background: linear-gradient(135deg, var(--peach), var(--peach-2));
  color: #fff; border: none; border-radius: 999px;
  padding: 13px 26px;
  font: inherit; font-weight: 950; font-size: .98rem;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 12px 26px rgba(240, 90, 40, .22);
}
button[type="submit"]:hover { filter: brightness(1.05); }
button:disabled { opacity: .55; cursor: not-allowed; filter: none; }

.answer-block { display: grid; gap: 12px; }
.answer-block p, .answer-block li { color: var(--ink); line-height: 1.55; }

.feedback-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.feedback-row button {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  color: var(--muted); cursor: pointer;
  font: inherit; font-size: .82rem; font-weight: 700;
  padding: 7px 13px;
}
.feedback-row button:hover { border-color: var(--peach-2); color: var(--ink); }
.fallback-note { font-size: .8rem; opacity: .7; font-style: italic; }

.markdown-body p { margin: .4rem 0; color: var(--ink); }
.markdown-body h2, .markdown-body h3, .markdown-body h4 { margin: .9rem 0 .35rem; font-size: 1rem; letter-spacing: normal; line-height: 1.3; }
.markdown-body ul, .markdown-body ol { margin: .4rem 0 .4rem 1.2rem; padding-left: .4rem; }
.markdown-body li { margin: .2rem 0; }
.markdown-body table {
  border-collapse: collapse; margin: .6rem 0;
  width: 100%; font-size: .92em;
  display: block; overflow-x: auto;
}
.markdown-body th, .markdown-body td {
  border: 1px solid var(--line);
  padding: .4rem .6rem; text-align: left; vertical-align: top;
}
.markdown-body th {
  background: rgba(0, 91, 58, .06);
  color: var(--green);
  font-size: .82rem; text-transform: uppercase;
}
.markdown-body a { color: var(--peach-2); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .fit-hero-grid, .research-grid, .fg-section { grid-template-columns: 1fr; }
  .hero-copy { display: block; }
  .experiences { grid-template-columns: repeat(2, 1fr); }
  .experience-card { min-height: 0; }
  .exp-desc { min-height: 0; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .menu-btn { display: grid; }
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 14px clamp(18px, 6vw, 40px) 20px;
    box-shadow: 0 24px 40px rgba(22, 49, 43, .12);
    font-size: 1.05rem;
  }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav .nav-cta { margin-top: 10px; text-align: center; border-bottom: none; border-radius: 999px; padding: 13px 17px; }
  .site-header.nav-open .site-nav { display: flex; }
  .site-header.nav-open .menu-btn .icon-open { display: none; }
  .site-header.nav-open .menu-btn .icon-close { display: block; }

  .brand-zone { gap: 14px; }
  .header-bp-logo { width: 128px; }
  .hero-grid, .trust-grid { grid-template-columns: 1fr; }
  .cards.three, .cards.two { grid-template-columns: 1fr; }
  .pills { flex-wrap: wrap; }
  .section-header { display: block; }
  .section-note { margin-top: 14px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .tagline { max-width: 22ch; margin: 0 auto; }
  .ask-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 620px) {
  .page, .nav { width: min(100% - 30px, 1180px); }
  .nav { gap: 12px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-sub .sub-plus { display: block; } /* "+ Alpharetta" wraps to its own line on phones */
  .brand-title { font-size: 1.06rem; }
  .mark { width: 44px; height: 44px; flex: 0 0 44px; }
  .brand-zone { gap: 12px; }
  .header-bp-logo { width: 98px; }
  .hero { padding: 30px 0 30px; }
  h1 { font-size: clamp(3rem, 17vw, 4.7rem); }
  body.page-fit h1 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .trust { padding: 30px; border-radius: 30px; }
  .experiences, .faq-grid, .tool-grid { grid-template-columns: 1fr; }
  .process-panel, .research-shell { padding: 18px; border-radius: 28px; }
  .process-step { grid-template-columns: 52px 1fr; padding: 16px; }
  .composer { grid-template-columns: 1fr; }
  .message.user { max-width: 90%; }
  .buttons .button { width: 100%; }
}
