/* ==========================================================================
   FOR THE LITTLE GUY — Brand tokens sampled directly from supplied source
   assets (Official Logo, Icon, Title, Tagline, Url lockups + brand board
   mockups). Rooted in people. Grounded in what works.
   ========================================================================== */

:root {
  /* ---- Sampled brand colors ---- */
  --cream:        #F5EFE6;   /* paper background, sampled from brand board texture */
  --cream-soft:   #FBF7F0;   /* card surface */
  --cream-deep:   #ECE3D4;   /* recessed panels */
  --paper-line:   #DED2BB;   /* hairline borders */

  --forest:       #2F4E29;   /* deep forest green — sampled from URL badge pill */
  --forest-dark:  #203419;   /* pressed / deep shade */
  --forest-tint:  rgba(47,78,41,.08);

  --leaf:         #47612F;   /* leaf green — sampled from icon leaf fill */
  --leaf-light:   #7C9A5B;
  --leaf-pale:    #E6ECDA;

  --earth:        #5E381C;   /* root brown — sampled from icon roots */
  --earth-light:  #8C6A44;

  --clay:         #723711;   /* tagline warm brown — sampled from tagline lockup */

  --ink:          #191509;   /* near-black — matches wordmark black */
  --ink-soft:     #4F4A3D;   /* muted body copy */
  --white:        #FFFFFF;

  /* ---- Type ---- */
  --font-display: "Fraunces", "Iowan Old Style", ui-serif, Georgia, serif;
  --font-body:    "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script:  "Caveat", cursive;

  /* ---- Rhythm ---- */
  --wrap: 1200px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(25, 21, 9, .06);
  --shadow-md: 0 14px 36px rgba(25, 21, 9, .10);
  --shadow-lg: 0 28px 64px rgba(25, 21, 9, .16);

  /* Fallback sticky-header height (real value is measured and written here
     by js/main.js on load/resize, since the header's height is fluid via
     the logo's clamp()). Covers the max clamp(42px,6vw,60px) logo height
     plus its 10px top/bottom padding and 1px border. */
  --header-h: 84px;

  color-scheme: light;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* subtle grain / paper texture across the whole page for tactile warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 3000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Any in-page anchor target (nav links, skip link, footer links, "Let's
   Talk" CTAs) clears the sticky header instead of scrolling underneath it.
   One rule on [id] covers every current and future anchor target, so
   nothing needs to be listed by hand. */
[id] {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

/* ==========================================================================
   TYPE SCALE
   ========================================================================== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.08; }
h1 em, h2 em, .promise-section__statement em, .final-cta__headline em { font-style: italic; font-weight: 500; color: var(--forest); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
}
.eyebrow--inverse { color: var(--leaf-pale); }
.eyebrow--inverse::before { background: var(--leaf-pale); }

.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 18px; }
.section-head__sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 56ch; }
.section-head--left .section-head__sub { margin-inline: 0; }
.section-head:not(.section-head--left) .section-head__sub { margin-inline: auto; }

.section { padding-block: clamp(70px, 10vw, 128px); position: relative; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(47,78,41,.30);
}
.btn--primary:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47,78,41,.38); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--sm { padding: 11px 22px; font-size: 13.5px; }
.btn--block { width: 100%; }

/* Below ~480px a full nowrap .btn--lg with long copy ("Let's Talk About
   Your Business") is wider than the viewport's own content column. Let it
   wrap and go full-width within the existing gutters instead of
   overflowing or getting crushed against its sibling button. */
@media (max-width: 480px) {
  .btn--lg {
    width: 100%;
    padding: 15px clamp(18px, 6vw, 34px);
    font-size: clamp(14px, 3.8vw, 16px);
    white-space: normal;
    text-align: center;
  }
}

/* ==========================================================================
   ANNOUNCEMENT STRIP
   ========================================================================== */
.announce {
  background: var(--ink);
  color: var(--cream-soft);
  position: relative;
}
.announce__message {
  text-align: center;
  padding-block: 8px;
  padding-inline: 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ==========================================================================
   BRAND LOGO
   ========================================================================== */
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Approved final logo (full lockup: icon + wordmark + tagline + url badge).
   object-fit:contain + intrinsic width/height attributes preserve the exact
   aspect ratio (2048x1033) and prevent layout shift — no cropping, no scaling
   distortion. Sized larger than a typical nav logo so the tagline/url badge
   text stays legible, per brand requirement that the complete lockup appear
   uncropped and prominent in the header. */
.brand__logo {
  display: block;
  height: clamp(42px, 6vw, 60px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand__logo--panel { height: clamp(42px, 13vw, 54px); }
.mobile-nav__brand { display: block; flex-shrink: 0; }

.brand__icon { display: inline-flex; width: 40px; height: 40px; flex-shrink: 0; }
.brand__icon svg { width: 100%; height: 100%; }
.brand__word {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  line-height: .98;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}
.brand__word--dark { color: var(--ink); }
.brand__dot { color: var(--leaf); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid var(--paper-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
}

/* "Local Editorial" nav: compact tracked-caps labels, no bullets, no wrap,
   thin green underline on hover (echoes the .eyebrow treatment used
   throughout the rest of the site). */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li { white-space: nowrap; }
.main-nav a {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: right .25s cubic-bezier(.2,.8,.2,1);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); margin-inline: auto; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }

/* Nav switches to the hamburger layout below ~1100px so the compact desktop
   nav (logo + 5 labels + CTA) never gets squeezed against the header edge. */
@media (max-width: 1099px) {
  .main-nav, .site-header__actions .btn--sm { display: none; }
  .nav-toggle { display: flex; }
}

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 21, 9, .45);
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }

.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--cream-soft);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.2,.8,.2,1);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }

.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-nav__close { font-size: 32px; line-height: 1; color: var(--ink-soft); }
.mobile-nav nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding-block: 10px;
  border-bottom: 1px solid var(--paper-line);
  color: var(--ink);
  white-space: nowrap;
}
.mobile-nav__tagline { font-size: 13px; color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin-top: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: 40px;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 480px at 88% 8%, var(--leaf-pale) 0%, transparent 62%),
    radial-gradient(520px 420px at 6% 92%, var(--cream-deep) 0%, transparent 60%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  padding-bottom: 56px;
}
.hero__copy { max-width: 640px; }
.hero__headline {
  /* Old min bound (2.5rem) was a hard floor: below ~460px viewport width
     5.4vw undershoots it, so every phone rendered the identical fixed
     40px size regardless of how narrow the screen got. A steeper vw
     coefficient with a lower floor keeps it scaling down through 320px
     while still maxing out at the same size as before on desktop. */
  font-size: clamp(2.05rem, 8vw, 4.1rem);
  margin-bottom: 22px;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.hero__note { font-size: 13.5px; color: var(--earth-light); font-weight: 600; letter-spacing: .02em; }

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 14px; }
}

.hero__art { position: relative; aspect-ratio: 1 / 1; max-width: 560px; margin-inline: auto; width: 100%; }

/* Approved hero collage (contractor, café owner, baker). object-fit:contain +
   an aspect-ratio container matching the asset's own 1:1 ratio exactly means
   the full image always renders edge-to-edge with no letterboxing, cropping,
   or distortion at any breakpoint — faces stay fully visible on mobile. */
.hero__collage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(25, 21, 9, .16));
}

.hero__divider { display: block; width: 100%; height: 44px; position: relative; z-index: 1; margin-top: -2px; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  /* Fluid instead of a flat 400px: on a 375-430px phone a flat cap still
     renders a near-full-viewport square that shoves the rest of the page
     down. Scaling by vw keeps the collage prominent without dominating
     the screen at any width in this range. */
  .hero__art { max-width: clamp(200px, 55vw, 400px); margin-top: 24px; margin-inline: auto; }
}

/* ==========================================================================
   WHO THIS IS FOR
   ========================================================================== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  background: var(--cream-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.who-card__icon { width: 38px; height: 38px; color: var(--forest); margin-bottom: 18px; }
.who-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.who-card p { color: var(--ink-soft); font-size: .96rem; }

.who-card--cta {
  background: var(--forest);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-card--cta p { color: var(--leaf-pale); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-bottom: 10px; }
.who-card--cta h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 16px; }
.who-card--cta a { font-weight: 700; color: var(--cream); border-bottom: 2px solid var(--leaf-light); padding-bottom: 2px; display: inline-block; width: fit-content; }
.who-card--cta:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

@media (max-width: 1080px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   THE PROBLEM — NOISE vs SIGNAL
   ========================================================================== */
.problem-section { background: var(--cream-deep); }

.noise-signal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: stretch;
}
.noise-signal__label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.noise-signal__col--noise .noise-signal__label { color: var(--earth-light); }
.noise-signal__col--signal .noise-signal__label { color: var(--forest); }

.noise-cloud { display: flex; flex-wrap: wrap; gap: 12px; align-content: flex-start; }
.noise-cloud span {
  display: inline-block;
  transform: rotate(var(--r));
  background: var(--cream-soft);
  border: 1px dashed var(--paper-line);
  color: var(--ink-soft);
  text-decoration: line-through;
  text-decoration-color: var(--earth-light);
  font-size: .87rem;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: var(--radius-sm);
  opacity: .78;
}

.noise-signal__divider { width: 40px; }
.noise-signal__divider svg { height: 100%; width: 100%; }

.signal-list { display: flex; flex-direction: column; gap: 14px; }
.signal-list li {
  position: relative;
  padding-left: 32px;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
}
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
}
.signal-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg);
}

@media (max-width: 780px) {
  .noise-signal { grid-template-columns: 1fr; }
  .noise-signal__divider { display: none; }
}

/* ==========================================================================
   HOW WE HELP
   ========================================================================== */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.help-card {
  background: var(--cream-soft);
  padding: 34px 30px;
  transition: background-color .25s ease;
}
.help-card:hover { background: var(--white); }
.help-card__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--leaf-light);
  font-size: 1.1rem;
  font-weight: 600;
}
.help-card h3 { font-size: 1.2rem; margin-top: 10px; margin-bottom: 10px; }
.help-card p { color: var(--ink-soft); font-size: .95rem; }

@media (max-width: 900px) { .help-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .help-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CORE PROMISE
   ========================================================================== */
.promise-section {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.promise-section__texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 50% 120%, rgba(255,255,255,.06), transparent 70%);
}
.promise-section__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.promise-section__statement {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 28px;
}
.promise-section__statement em { color: var(--leaf-light); }
.promise-section__body { font-size: 1.1rem; color: rgba(245,239,230,.82); max-width: 56ch; margin-inline: auto; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.process-steps__line { position: absolute; top: 26px; left: 8%; right: 8%; height: 20px; z-index: 0; }
.process-steps__line svg { width: 100%; height: 100%; }

.process-step {
  position: relative;
  z-index: 1;
  background: var(--cream-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.process-step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); }

@media (max-width: 820px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps__line { display: none; }
}

/* ==========================================================================
   HUMAN STORY / OUR STORY
   ========================================================================== */
.story-section__inner { display: block; }
.story-questions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.story-question {
  background: var(--cream-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.story-question span { font-family: var(--font-display); font-style: italic; color: var(--leaf-light); font-weight: 600; font-size: 1rem; }
.story-question p { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-top: 14px; }

/* 3-across still left long questions (esp. #05) wrapping almost
   word-by-word once card width dropped below ~230px. Tablet now steps
   straight to 2-up (plenty of width per card); phones get one card per
   row, and the fixed min-height is dropped there since a single wide
   column no longer needs it to line up against neighboring cards. */
@media (max-width: 980px) { .story-questions { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .story-questions { grid-template-columns: 1fr; }
  .story-question { min-height: 0; }
}

.founders {
  text-align: center;
  border-top: 1px solid var(--paper-line);
  padding-top: 56px;
}
.founders__lede { max-width: 52ch; margin-inline: auto; font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 26px; }
.founders__names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
}
.founders__amp { font-style: italic; color: var(--leaf-light); }
.founders__note { margin-top: 12px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--clay); }

/* ==========================================================================
   MANIFESTO
   ========================================================================== */
.manifesto-section {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.manifesto-section__inner { max-width: 820px; margin-inline: auto; text-align: center; }
.manifesto-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.manifesto-list li {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--cream);
  padding-block: 10px;
  opacity: .96;
}
.manifesto-list li em { color: var(--leaf-light); font-style: italic; }

.manifesto-closer {
  font-size: 1.15rem;
  color: rgba(245,239,230,.75);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: 34px;
}
.manifesto-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--leaf-light);
  line-height: 1.35;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { text-align: center; }
.final-cta__inner { max-width: 720px; margin-inline: auto; }

/* Approved "in your corner" photo (business owner + two advisors).
   width:100%/height:auto + object-fit:contain preserve the source's exact
   3:2 ratio at every size, so the full graphic is always visible — no
   cropping of faces or hands, on mobile or desktop. */
.final-cta__art-wrap { max-width: 1000px; margin-inline: auto; margin-bottom: 28px; }
.final-cta__art { display: block; width: 100%; height: auto; object-fit: contain; }

.final-cta__headline { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 20px; }
.final-cta__sub { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 34px; }
.final-cta__ctas { margin-bottom: 22px; display: flex; justify-content: center; }
.final-cta__note { font-size: 13px; color: var(--earth-light); max-width: 38ch; margin-inline: auto; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--forest); color: var(--cream); padding-top: 72px; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,239,230,.14);
}
.site-footer__brand { max-width: 300px; }
.brand__icon--footer { width: 44px; height: 44px; margin-bottom: 14px; }
.brand__word--footer { color: var(--cream); font-size: 17px; }
.brand__dot--footer { color: var(--leaf-light); }
.site-footer__tagline { margin-top: 18px; font-size: 13.5px; color: rgba(245,239,230,.68); letter-spacing: .04em; }

.site-footer__nav ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__nav a { font-size: 14.5px; color: rgba(245,239,230,.82); transition: color .2s ease; }
.site-footer__nav a:hover { color: var(--cream); }

.site-footer__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--leaf-light); font-weight: 700; margin-bottom: 14px; }
.site-footer__url { display: inline-block; font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; border-bottom: 2px solid var(--leaf-light); padding-bottom: 2px; }
.site-footer__placeholder { font-size: 13px; color: rgba(245,239,230,.6); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 24px;
  font-size: 12.5px;
  color: rgba(245,239,230,.6);
}

@media (max-width: 780px) {
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
