/* Reconcite — brand kit v1 (Jul 2026)
   Navy #152A47 · Brass #AD8A52 · Cream #F7F3EC · Ink #2A2A28
   Lora (display) + Work Sans (UI/body), loaded via Google Fonts in each page head. */

:root {
  --navy: #152A47;
  --navy-deep: #0E1D33;      /* darker step for hovers / gradients */
  --navy-soft: #3A4E6B;      /* secondary text on light */
  --brass: #AD8A52;
  --brass-dark: #8F703F;     /* brass for borders / large text */
  --brass-text: #6F5730;     /* brass for small text on tinted chips — 4.5:1+ */
  --brass-tint: rgba(173, 138, 82, .14);
  --cream: #F7F3EC;
  --cream-deep: #EFE8DB;     /* card borders / washes on cream */
  --ink: #2A2A28;
  --muted: #6B6E66;
  --line: #E5DFD2;
  --bg: #FFFFFF;
  --radius: 12px;
  --maxw: 1080px;
  --shadow: 0 1px 2px rgba(21,42,71,.06), 0 8px 24px rgba(21,42,71,.07);
  --font-display: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

/* Skip link: hidden until keyboard focus */
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 100;
  background: var(--navy); color: var(--cream);
  padding: 10px 18px; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Keep section titles clear of the sticky header when jumped to */
section[id] { scroll-margin-top: 84px; }

/* Visible keyboard focus for all interactive elements */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 .5em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 .6em; }
h3 { font-size: 1.25rem; margin: 0 0 .4em; }
p { margin: 0 0 1em; }
a { color: var(--brass-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(247,243,236,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--navy-soft); font-size: .98rem; font-weight: 500; padding: 8px 0; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links .btn { color: var(--cream); padding: 12px 22px; }

/* Mobile disclosure menu — no JavaScript required */
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  list-style: none; cursor: pointer; width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px; color: var(--navy);
  font-size: 1.4rem; line-height: 1; background: var(--bg);
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu[open] summary { background: var(--cream-deep); }
.mobile-panel {
  position: absolute; right: 0; top: 54px; width: 230px;
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; display: flex; flex-direction: column; gap: 2px;
}
.mobile-panel a { color: var(--navy-soft); font-weight: 500; padding: 12px 14px; border-radius: 8px; }
.mobile-panel a:hover { background: var(--cream); text-decoration: none; }
.mobile-panel .btn { color: var(--cream); text-align: center; margin-top: 6px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; background: var(--navy); color: var(--cream);
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  font-family: var(--font-body);
  border: 1px solid transparent; transition: transform .05s ease, background .2s ease;
}
.btn:hover { background: var(--navy-deep); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--brass); }
.btn-ghost:hover { background: var(--brass-tint); }
.btn-brass { background: var(--brass); color: var(--navy-deep); }
.btn-brass:hover { background: #BD9A62; }

/* ---------- Hero ---------- */
.hero {
  padding: 92px 0 68px;
  background:
    radial-gradient(900px 420px at 78% -10%, var(--brass-tint), transparent 62%),
    var(--cream);
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brass-text); background: var(--brass-tint);
  border: 1px solid rgba(173,138,82,.28);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero p.lede { font-size: 1.22rem; color: var(--navy-soft); max-width: 640px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-note { margin-top: 18px; font-size: .92rem; color: var(--muted); }

/* Hero layout: copy left, answer card right; stacks on narrow screens */
.hero-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .answer-card { max-width: 480px; }
}

/* ---------- AI answer card (hero signature) ---------- */
.answer-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 22px 18px;
}
.ac-question {
  font-weight: 600; color: var(--navy); font-size: .98rem;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 999px 999px 999px 4px; padding: 10px 16px;
  display: inline-block; margin-bottom: 16px;
}
.ac-intro { color: var(--muted); font-size: .88rem; margin: 0 0 10px; }
.ac-firm {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 8px;
}
.ac-you { border-color: var(--brass); background: var(--brass-tint); }
.ac-check { width: 22px; height: 22px; color: var(--navy); flex: none; }
.ac-name { font-weight: 600; color: var(--navy); font-size: 1rem; }
.ac-tag {
  margin-left: auto; font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brass-text);
}
.ac-ghost { background: var(--cream); }
.ac-bar { height: 10px; border-radius: 999px; background: var(--cream-deep); display: block; }
.ac-engines {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted); letter-spacing: .02em;
}

/* Staged reveal on load; skipped entirely under reduced motion */
@media (prefers-reduced-motion: no-preference) {
  .answer-card .ac-question, .answer-card .ac-intro,
  .answer-card .ac-firm, .answer-card .ac-engines {
    opacity: 0; transform: translateY(8px);
    animation: ac-rise .5s ease forwards;
  }
  .ac-question { animation-delay: .15s; }
  .ac-intro { animation-delay: .45s; }
  .ac-you { animation-delay: .65s; }
  .ac-firm.ac-ghost:nth-of-type(3) { animation-delay: .85s; }
  .ac-firm.ac-ghost:nth-of-type(4) { animation-delay: 1s; }
  .ac-engines { animation-delay: 1.2s; }
}
@keyframes ac-rise { to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-soft { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head p { color: var(--navy-soft); font-size: 1.1rem; }

/* ---------- Grid cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 3px solid var(--brass);
  padding: 28px; box-shadow: var(--shadow);
}
.card .num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 14px;
}
.card h3 { margin-bottom: .3em; }
.card p { color: var(--navy-soft); margin-bottom: 0; font-size: 1rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
@media (max-width: 820px){ .stats { grid-template-columns: 1fr; } }
.stat .big {
  font-size: 2.7rem; font-weight: 700; color: var(--navy); line-height: 1;
  font-family: var(--font-display);
}
.stat .lbl { color: var(--navy-soft); font-size: 1rem; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px;
  margin-bottom: 14px; background: var(--cream);
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--navy); padding: 16px 0; font-size: 1.08rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brass); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { color: var(--navy-soft); margin: 0 0 18px; font-size: 1.02rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  color: var(--cream); text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: #C9CFDA; max-width: 560px; margin: 0 auto 28px; font-size: 1.12rem; }
.cta-band .btn { background: var(--brass); color: var(--navy-deep); }
.cta-band .btn:hover { background: #BD9A62; }
.cta-band .btn-ghost { background: transparent; color: var(--cream); border-color: rgba(247,243,236,.35); }
.cta-band .btn-ghost:hover { background: rgba(247,243,236,.08); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 56px 0 44px; background: var(--navy);
  border-top: 3px solid var(--brass);
}
.footer-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer p { color: #A9B2C2; font-size: .92rem; }
.site-footer a { color: #C9CFDA; font-size: .92rem; }
.site-footer a:hover { color: var(--cream); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { padding: 8px 0; }

/* ---------- Blog ---------- */
.post-list { display: grid; gap: 20px; }
.post-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  background: var(--bg); box-shadow: var(--shadow);
  border-top: 3px solid var(--brass);
}
.post-card h2 { font-size: 1.25rem; margin: 0 0 .3em; }
.post-card h2 a { color: var(--navy); }
.post-card .meta { color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.post-card p { color: var(--navy-soft); margin-bottom: 12px; }

article.post { max-width: 720px; margin: 0 auto; }
article.post .meta { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
article.post h2 { margin-top: 1.6em; }
article.post h3 { margin-top: 1.4em; }
article.post ul { color: var(--navy-soft); padding-left: 1.2em; }
article.post li { margin-bottom: .5em; }
article.post blockquote {
  border-left: 3px solid var(--brass); margin: 1.5em 0; padding: 4px 0 4px 20px;
  color: var(--navy-soft); font-style: italic;
  font-family: var(--font-display); font-size: 1.08rem;
}
.key-takeaway {
  background: var(--bg); border: 1px solid var(--line); border-left: 4px solid var(--brass);
  border-radius: 8px; padding: 18px 22px; margin: 28px 0;
}
.key-takeaway strong { color: var(--navy); }

.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 18px; }

/* ---------- Contact form ---------- */
.audit-form {
  max-width: 520px; margin: 0 auto; text-align: left;
  background: rgba(247,243,236,.06); border: 1px solid rgba(247,243,236,.16);
  border-radius: var(--radius); padding: 28px;
}
.audit-form .field { margin-bottom: 16px; }
.audit-form label { display: block; font-size: .9rem; font-weight: 600; color: var(--cream); margin-bottom: 6px; }
.audit-form input, .audit-form textarea {
  width: 100%; padding: 12px 14px; font-size: 1rem; font-family: inherit;
  border: 1px solid rgba(21,42,71,.25); border-radius: 8px;
  background: var(--cream); color: var(--ink);
}
.audit-form textarea { min-height: 96px; resize: vertical; }
.audit-form .btn { width: 100%; border: none; cursor: pointer; font-size: 1.05rem; }
.audit-form .hp { position: absolute; left: -9999px; }
.form-alt { margin-top: 18px; font-size: .9rem; color: #C9CFDA; text-align: center; }
