/* ============================================================
   Fogarty Research & Consulting — site stylesheet
   Shared across index.html, readiness-assessment.html, about.html
   Colour tokens locked 2026-05-22 (forc-brand-tokens.css).
   ============================================================ */

/* --- Zilla Slab, self-hosted --- */
@font-face { font-family:'Zilla Slab'; font-style:normal; font-weight:300; font-display:swap;
  src:url('assets/fonts/ZillaSlab-Light.woff2') format('woff2'); }
@font-face { font-family:'Zilla Slab'; font-style:normal; font-weight:400; font-display:swap;
  src:url('assets/fonts/ZillaSlab-Regular.woff2') format('woff2'); }
@font-face { font-family:'Zilla Slab'; font-style:italic; font-weight:400; font-display:swap;
  src:url('assets/fonts/ZillaSlab-Italic.woff2') format('woff2'); }
@font-face { font-family:'Zilla Slab'; font-style:normal; font-weight:500; font-display:swap;
  src:url('assets/fonts/ZillaSlab-Medium.woff2') format('woff2'); }
@font-face { font-family:'Zilla Slab'; font-style:normal; font-weight:600; font-display:swap;
  src:url('assets/fonts/ZillaSlab-SemiBold.woff2') format('woff2'); }
@font-face { font-family:'Zilla Slab'; font-style:normal; font-weight:700; font-display:swap;
  src:url('assets/fonts/ZillaSlab-Bold.woff2') format('woff2'); }

/* --- Brand tokens --- */
:root {
  --frc-ink:        #4C2E48;
  --frc-ink-muted:  #6E6168;
  --frc-paper:      #FBF9F8;
  --frc-surface:    #F2EEEF;
  --frc-hairline:   #E4DDE0;
  --frc-plum:       #7E4257;
  --frc-plum-deep:  #592F3E;
  --frc-plum-wash:  #F3EAEE;
  --frc-fern:       #4C6650;
  --frc-fern-deep:  #324836;
  --frc-fern-wash:  #E5EBE5;
  --frc-fern-tint:  #86AA8C;
  --frc-font:       'Zilla Slab', Georgia, serif;
  --measure:        38rem;   /* prose column width */
  --wide:           60rem;   /* full layout width */
}
@media (prefers-color-scheme: dark) {
  :root {
    --frc-ink:        #E3D3DC;
    --frc-ink-muted:  #9A9097;
    --frc-paper:      #1F1A1D;
    --frc-surface:    #2A2329;
    --frc-hairline:   #3A3238;
    --frc-plum:       #B07489;
    --frc-plum-deep:  #C99FB0;
    --frc-plum-wash:  #2E2228;
    --frc-fern:       #9CBE9F;
    --frc-fern-deep:  #B6D2B8;
    --frc-fern-wash:  #232A24;
    --frc-fern-tint:  #6E8C77;
  }
}

/* --- Reset & base --- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--frc-font);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.62;
  color: var(--frc-ink);
  background: var(--frc-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; }
a { color: var(--frc-plum); text-underline-offset: 0.15em; }
a:hover { color: var(--frc-plum-deep); }

/* --- Skip link --- */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--frc-plum); color: #fff; padding: 0.6rem 1rem;
  text-decoration: none; z-index: 100;
}
.skip:focus { left: 0; }

/* --- Layout helpers --- */
.wrap { width: 100%; max-width: var(--wide); margin: 0 auto; padding: 0 1.5rem; }
.prose { max-width: var(--measure); }

/* --- Masthead --- */
.site-header {
  border-bottom: 1px solid var(--frc-hairline);
  background: var(--frc-paper);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; padding-top: 0.9rem; padding-bottom: 0.9rem;
  flex-wrap: wrap;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; line-height: 1; }
.brand svg { width: 168px; height: auto; display: block; }
.logo-lockup .ink   { fill: var(--frc-ink); }
.logo-lockup .fern  { fill: var(--frc-fern); }
.logo-lockup .fern-s{ stroke: var(--frc-fern); }
.brand .full-name {
  margin-left: 0.85rem; font-size: 0.82rem; font-weight: 500;
  color: var(--frc-ink-muted); max-width: 11rem; line-height: 1.3;
}
.nav { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--frc-ink); font-weight: 500;
  font-size: 1.02rem; padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--frc-plum); }
.nav a[aria-current="page"] {
  color: var(--frc-plum); border-bottom-color: var(--frc-plum);
}

/* --- Buttons --- */
.btn {
  display: inline-block; font-family: var(--frc-font);
  font-weight: 600; font-size: 1.05rem; line-height: 1.2;
  padding: 0.85rem 1.6rem; border-radius: 7px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: background-color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--frc-plum); color: #fff; }
.btn-primary:hover { background: var(--frc-plum-deep); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--frc-plum);
  border-color: var(--frc-hairline); font-weight: 600;
}
.btn-ghost:hover { border-color: var(--frc-plum); color: var(--frc-plum-deep); }
@media (prefers-color-scheme: dark) {
  .btn-primary { color: #1F1A1D; }
  .btn-primary:hover { color: #1F1A1D; }
}

/* --- Section rhythm --- */
main { display: block; }
section { padding: 3.4rem 0; }
section + section { border-top: 1px solid var(--frc-hairline); }
.section-tint { background: var(--frc-fern-wash); }
.section-tint, .section-tint + section { border-top-color: transparent; }

h1, h2, h3 { font-weight: 600; line-height: 1.18; color: var(--frc-ink); }
h1 { font-size: 2.55rem; margin: 0 0 1rem; letter-spacing: -0.01em; }
h2 { font-size: 1.72rem; margin: 0 0 0.9rem; }
h3 { font-size: 1.24rem; margin: 1.6rem 0 0.4rem; }
p { margin: 0 0 1.05rem; }
.eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--frc-fern-deep);
  margin: 0 0 0.7rem;
}
.lead { font-size: 1.28rem; line-height: 1.5; }
.muted { color: var(--frc-ink-muted); }
.price { color: var(--frc-plum); font-weight: 600; }

/* --- Hero --- */
.hero { padding: 4.6rem 0 4rem; }
.hero h1 { font-size: 3rem; }
.hero .lead { max-width: 34rem; margin-bottom: 1.8rem; }

/* --- Hero & intro with photo --- */
.hero-grid, .intro-grid {
  display: grid; gap: 3rem; align-items: center;
}
.hero-grid  { grid-template-columns: 1.08fr 0.92fr; }
.intro-grid { grid-template-columns: 1fr 17rem; gap: 2.6rem; }
.hero-photo, .portrait { margin: 0; }
.hero-photo img, .portrait img {
  display: block; width: 100%; height: auto;
  border-radius: 10px; border: 1px solid var(--frc-hairline);
}

/* --- In-page figures --- */
figure.shot { margin: 2.2rem 0 0; }
figure.shot img {
  display: block; width: 100%; height: auto;
  border-radius: 9px; border: 1px solid var(--frc-hairline);
}
figure.shot figcaption {
  font-size: 0.96rem; color: var(--frc-ink-muted);
  margin-top: 0.55rem; line-height: 1.5;
}
figure.shot.tall { text-align: center; }
figure.shot.tall img { max-width: 22rem; margin: 0 auto; }

/* --- Two-column body section (text + photo) --- */
.split { display: grid; grid-template-columns: 1fr 19rem; gap: 2.6rem; align-items: start; }
.split figure.shot { margin: 0; }

/* --- Pull quote / positioning callout --- */
.pullquote {
  margin: 2rem 0; padding: 1.4rem 1.6rem;
  background: var(--frc-plum-wash); border-left: 4px solid var(--frc-plum);
  border-radius: 0 7px 7px 0;
  font-size: 1.3rem; font-weight: 500; line-height: 1.42;
  color: var(--frc-ink);
}

/* --- Offer card (homepage core offer) --- */
.offer {
  margin-top: 1.6rem; padding: 1.8rem; border-radius: 9px;
  background: var(--frc-surface); border: 1px solid var(--frc-hairline);
}
.offer h2 { margin-top: 0; }
.offer .cta-row { margin-top: 1.2rem; }

/* --- Lists --- */
.checklist { list-style: none; padding: 0; margin: 1.1rem 0; }
.checklist li {
  position: relative; padding: 0.32rem 0 0.32rem 1.85rem;
  margin-bottom: 0.25rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.78em;
  width: 0.62rem; height: 0.62rem; border-radius: 2px;
  background: var(--frc-fern);
}
ul.plain { padding-left: 1.25rem; }
ul.plain li { margin-bottom: 0.4rem; }

/* --- Price banner --- */
.price-line {
  font-size: 1.05rem; font-weight: 500; color: var(--frc-ink-muted);
  margin: -0.4rem 0 1.4rem;
}

/* --- Founding-client callout --- */
.callout {
  padding: 1.8rem; border-radius: 9px;
  background: var(--frc-fern-wash); border: 1px solid var(--frc-hairline);
}
.callout h2 { margin-top: 0; }

/* --- FAQ --- */
.faq-q { font-weight: 600; color: var(--frc-ink); margin-bottom: 0.2rem; }
.faq-a { margin-bottom: 1.25rem; }

/* --- CTA block --- */
.cta-block { }
.cta-row {
  display: flex; align-items: center; gap: 1.1rem 1.4rem;
  flex-wrap: wrap; margin-top: 1.3rem;
}
.cta-row .contact { color: var(--frc-ink-muted); font-size: 1.02rem; }
.cta-row .contact a { font-weight: 500; }

/* --- Credentials --- */
.creds { list-style: none; padding: 0; margin: 1rem 0; }
.creds li {
  padding: 0.55rem 0; border-bottom: 1px solid var(--frc-hairline);
  font-weight: 500;
}
.creds li:first-child { border-top: 1px solid var(--frc-hairline); }

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--frc-hairline);
  background: var(--frc-surface);
  padding: 2.6rem 0; margin-top: 0;
  font-size: 0.98rem; color: var(--frc-ink-muted);
}
.site-footer .wrap {
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.site-footer a { color: var(--frc-plum); }
.site-footer .foot-nav { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.site-footer .foot-nav a { text-decoration: none; font-weight: 500; }
.site-footer .foot-nav a:hover { text-decoration: underline; }

/* --- Responsive --- */
@media (max-width: 720px) {
  body { font-size: 1.06rem; }
  h1 { font-size: 2.1rem; }
  .hero h1 { font-size: 2.3rem; }
  h2 { font-size: 1.46rem; }
  .lead { font-size: 1.14rem; }
  .pullquote { font-size: 1.14rem; }
  .site-header .wrap { gap: 0.6rem; }
  .brand .full-name { display: none; }
  .nav { gap: 1.1rem; width: 100%; }
  .hero { padding: 3rem 0 2.6rem; }
  section { padding: 2.6rem 0; }
  .offer, .callout { padding: 1.4rem; }
  .hero-grid, .intro-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .intro-grid .portrait { max-width: 15rem; }
  .split { grid-template-columns: 1fr; gap: 1.7rem; }
  .split figure.shot { max-width: 17rem; margin: 0 auto; }
}
@media (max-width: 380px) {
  .nav { gap: 0.85rem; }
  .nav a { font-size: 0.95rem; }
}
