/* ============================================================
   Salt City Labs — Mineral / topographic editorial
   Palette: sandstone paper, navy-charcoal ink, sage green,
   copper secondary. Fonts: Fraunces (display) + Hanken Grotesk.
   ============================================================ */

:root {
  /* Surfaces */
  --paper:      #f5f0e6;   /* warm sandstone off-white */
  --paper-2:    #efe7d8;   /* slightly deeper band */
  --card:       #fcfaf4;   /* card surface */
  --ink:        #1b2330;   /* deep navy-charcoal text */
  --ink-90:     #232c3b;
  --ink-soft:   #3a4452;   /* secondary text (AA on paper) */
  --ink-muted:  #5a6473;   /* muted captions (AA on paper) */

  /* Accents */
  --sage:       #4e6a5a;
  --sage-deep:  #3c5447;   /* primary button bg */
  --sage-tint:  #e3e8e0;
  --copper:     #9a5430;   /* secondary accent (AA on paper) */
  --copper-dim: #8f4f30;

  /* Lines / shadows */
  --line:       rgba(27, 35, 48, 0.12);
  --line-soft:  rgba(27, 35, 48, 0.08);
  --shadow-sm:  0 1px 2px rgba(27, 35, 48, 0.05);
  --shadow-md:  0 14px 34px -18px rgba(27, 35, 48, 0.32);
  --shadow-lg:  0 28px 60px -28px rgba(27, 35, 48, 0.4);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1120px;
  --radius: 14px;
  --radius-lg: 20px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1.1rem;
  border-radius: 0 0 10px 10px;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 0.85rem;
  --btn-px: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-py) var(--btn-px);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease,
              border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--sage-deep);
  color: #f7f3ea;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background-color: #32483d; box-shadow: var(--shadow-lg); }

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background-color: rgba(27,35,48,0.04); }

.btn-sm { --btn-py: 0.6rem; --btn-px: 1.1rem; font-size: 0.9rem; }
.btn-lg { --btn-py: 1rem; --btn-px: 2rem; font-size: 1.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(245, 240, 230, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark-mark {
  display: inline-flex;
  color: var(--sage-deep);
}

/* ---------- Nav ---------- */
.site-nav { display: flex; align-items: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav-menu a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.15s ease;
}
.nav-menu > li:not(.nav-cta) > a {
  position: relative;
  padding-bottom: 2px;
}
.nav-menu > li:not(.nav-cta) > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-menu > li:not(.nav-cta) > a:hover { color: var(--ink); }
.nav-menu > li:not(.nav-cta) > a:hover::after { transform: scaleX(1); }
.nav-cta a { color: #f7f3ea; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(3.5rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.topo {
  position: absolute;
  inset: 0;
  color: var(--sage);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 75%, transparent);
}
.topo svg { width: 100%; height: 100%; }

.hero-inner { position: relative; z-index: 1; max-width: 820px; }

.eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.1rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 1.4rem;
}

.lede { font-size: clamp(1.15rem, 2.3vw, 1.4rem); line-height: 1.5; color: var(--ink-soft); }
.hero-sub { max-width: 660px; margin-bottom: 2.2rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.hero-note { font-size: 0.95rem; color: var(--ink-muted); }

/* ---------- Section scaffolding ---------- */
.section {
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative;
}
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}
.kicker-on-dark { color: #a9c3b4; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- Problems ---------- */
.section-problems { background-color: var(--paper-2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.problem-card {
  background-color: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.problem-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}
.problem-card h3 { font-size: 1.18rem; margin-bottom: 0.55rem; line-height: 1.18; }
.problem-card p { font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--sage);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.service-card:hover::before { transform: scaleY(1); }
.service-card h3 { font-size: 1.22rem; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.98rem; color: var(--ink-soft); }

/* ---------- Audit (feature section) ---------- */
.section-audit { background-color: var(--ink); color: #e9e4d8; }
.section-audit .section-intro { color: #c8d0cb; }
.section-audit h2 { color: #fbf7ee; }

.audit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.audit-intro h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1.1rem; }
.audit-blurb { margin-bottom: 1.8rem; max-width: 46ch; }

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.price-label { font-size: 0.95rem; color: #b9c1bb; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.price-amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: #fbf7ee; line-height: 1; }
.price-note { font-size: 0.98rem; color: #b9c1bb; }

.audit-microcopy { font-size: 0.92rem; color: #aab4ad; margin-top: 0.9rem; }

.audit-detail { display: grid; gap: 1.2rem; }
.audit-panel {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
}
.audit-panel-title {
  font-size: 1.15rem;
  color: #fbf7ee;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.check-list { display: grid; gap: 0.7rem; }
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 0.98rem;
  color: #d9ddd6;
  line-height: 1.4;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background-color: rgba(122, 158, 138, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 L5 8.6 L9.6 3.4' stroke='%23a9c3b4' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Implementation ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.package-card {
  background-color: var(--card);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--copper);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.package-card h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.package-card p { font-size: 0.95rem; color: var(--ink-soft); }
.impl-note {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 60ch;
  padding-left: 1.2rem;
  border-left: 3px solid var(--sage);
}

/* ---------- Who it's for ---------- */
.section-who { background-color: var(--paper-2); }
.who-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.who-head { margin-bottom: 0; }
.who-verticals { margin-top: 1.2rem; font-size: 1.02rem; color: var(--ink-soft); }
.who-list { display: grid; gap: 0.9rem; align-self: center; }
.who-list li {
  position: relative;
  padding: 1rem 1.2rem 1rem 3rem;
  background-color: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  font-size: 1.02rem;
  color: var(--ink-90);
  box-shadow: var(--shadow-sm);
}
.who-list li::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.25rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-tint);
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.why-card {
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card), var(--paper));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.97rem; color: var(--ink-soft); }
.why-local {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 60ch;
}

.founder {
  background-color: var(--ink);
  color: #e3ddd0;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-lg);
}
.founder-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a9c3b4;
  margin-bottom: 0.9rem;
}
.founder-text { font-size: clamp(1.1rem, 2.2vw, 1.35rem); line-height: 1.5; font-family: var(--font-display); font-weight: 400; }
.founder-text strong { color: #fbf7ee; font-weight: 600; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background-color: var(--sage-deep);
  color: #eef2ec;
  text-align: center;
  overflow: hidden;
}
.final-cta .topo-cta { color: #2c3f35; opacity: 0.6; mask-image: none; -webkit-mask-image: none; }
.final-cta-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.final-cta h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); color: #fbf8f1; margin-bottom: 1.1rem; }
.final-cta-sub { color: #d4ded6; margin-bottom: 2.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--ink);
  color: #c4cbd2;
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-wordmark { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: #fbf8f1; }
.footer-tagline { margin-top: 0.5rem; color: #9aa3ad; font-size: 0.98rem; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer-mail {
  color: #d9ded5;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-mail:hover { color: #fff; border-color: #fff; }
.footer-contact .btn-ghost { color: #e9e4d8; border-color: rgba(255,255,255,0.25); }
.footer-contact .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.footer-bottom { padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.9rem; color: #8a939d; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.reveal:nth-child(1) { animation-delay: 0.05s; }
.reveal:nth-child(2) { animation-delay: 0.14s; }
.reveal:nth-child(3) { animation-delay: 0.23s; }
.reveal:nth-child(4) { animation-delay: 0.32s; }
.reveal:nth-child(5) { animation-delay: 0.41s; }

@keyframes reveal-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Free-review callout ---------- */
.review-callout { padding-block: clamp(2.25rem, 5vw, 3.25rem); }
.review-callout-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 3vw, 1.6rem);
  align-items: start;
  background: linear-gradient(180deg, var(--card), var(--paper));
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.1rem) clamp(1.4rem, 4vw, 2.3rem);
  box-shadow: var(--shadow-md);
}
.review-callout-mark { color: var(--sage-deep); margin-top: 0.15rem; }
.review-callout h2 { font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: 0.6rem; }
.review-callout p { font-size: 1.05rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- "In practice" block (within services) ---------- */
.practice-block {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.4rem, 3vw, 1.8rem) clamp(1.5rem, 3vw, 2rem);
  background-color: var(--paper-2);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.practice-block h3 { font-size: clamp(1.25rem, 2.6vw, 1.5rem); margin-bottom: 0.55rem; }
.practice-block p { font-size: 1.08rem; color: var(--ink-soft); max-width: 72ch; }

/* ---------- Example improvements (inline list, not cards) ---------- */
.examples-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem;
}
.examples-list li {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.9rem;
  font-size: 1.05rem;
  color: var(--ink-90);
  border-bottom: 1px solid var(--line-soft);
}
.examples-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.85rem;
  height: 0.85rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2 7h9M7.5 3.5 11 7l-3.5 3.5' stroke='%239a5430' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Post-audit CTA band ---------- */
.cta-band {
  background-color: var(--paper-2);
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4.25rem);
}
.cta-band-inner { max-width: 620px; margin-inline: auto; }
.cta-band-lead { margin-bottom: 1.5rem; color: var(--ink); }
.cta-reassure { margin-top: 1.1rem; font-size: 0.95rem; color: var(--ink-muted); }

/* ---------- Not the right fit (inline, not a card) ---------- */
.not-fit {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid var(--line);
  max-width: 78ch;
}
.not-fit h3 { font-size: clamp(1.3rem, 2.8vw, 1.55rem); margin-bottom: 0.7rem; }
.not-fit p { font-size: 1.05rem; color: var(--ink-soft); }

/* ---------- Audit "what you get" lead ---------- */
.audit-panel-lead { font-size: 0.98rem; color: #c8d0cb; margin-bottom: 1rem; }

/* ---------- FAQ (accordion) ---------- */
.section-faq { background-color: var(--paper-2); }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 0.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.08rem, 2.2vw, 1.2rem);
  color: var(--ink);
  transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--sage-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M9 3v12M3 9h12' stroke='%233c5447' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0.25rem 1.45rem; }
.faq-answer p { font-size: 1.02rem; color: var(--ink-soft); max-width: 72ch; }

/* ---------- Final CTA reassurance ---------- */
.final-cta-reassure { margin-top: 1.2rem; font-size: 0.95rem; color: #c2cfc6; }
.final-cta-social { margin-top: 0.8rem; font-size: 0.9rem; color: #9fb0a6; }
.final-cta-social a { color: #cde0d4; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 1px; transition: color 0.15s ease, border-color 0.15s ease; }
.final-cta-social a:hover { color: #fff; border-color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-layout { grid-template-columns: 1fr; }
  .who-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.5rem clamp(1.25rem, 5vw, 2.5rem) 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-menu li { border-top: 1px solid var(--line-soft); }
  .nav-menu li:first-child { border-top: none; }
  .nav-menu a { display: block; padding: 0.95rem 0; font-size: 1.05rem; }
  .nav-cta { margin-top: 0.6rem; border-top: none !important; }
  .nav-cta a { text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .examples-list { grid-template-columns: 1fr; gap: 0; }
  .examples-list li:last-child { border-bottom: none; }
  .cta-band .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { flex-direction: column; }
  .footer-contact { align-items: stretch; width: 100%; }
  .footer-contact .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .problem-card:hover, .service-card:hover,
  .package-card:hover, .why-card:hover, .work-card:hover { transform: none; }
}

/* ============================================================
   Work / About pages + Recent-work & founder additions
   (reuses the existing token system above)
   ============================================================ */

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.section-alt { background-color: var(--paper-2); }
.page-hero { padding-bottom: clamp(2.5rem, 6vw, 4rem); }

/* Shared sage-check "tick" lists (paper surfaces) */
.tick-list { display: grid; gap: 0.65rem; }
.tick-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.98rem;
  color: var(--ink-90);
  line-height: 1.45;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.26em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background-color: var(--sage-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2 L5 8.6 L9.6 3.4' stroke='%233c5447' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.tick-list--cols { grid-template-columns: repeat(2, 1fr); gap: 0.65rem 2rem; }

/* Secondary LinkedIn / inline links */
.link-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--sage-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.link-linkedin:hover { color: var(--copper); border-color: var(--copper); }

/* ---------- Recent work (homepage) ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.work-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.work-card-title { font-size: 1.18rem; margin-bottom: 0.4rem; line-height: 1.18; }
.work-card-sub {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.work-card-desc { font-size: 0.97rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.work-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sage-deep);
  text-decoration: none;
}
.work-card-link .arrow { transition: transform 0.15s ease; }
.work-card-link:hover .arrow { transform: translateX(3px); }
.work-card-tag {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.work-cta-row { display: flex; }

/* ---------- Case studies (work page) ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.case-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.case-card--wide { grid-column: 1 / -1; }
.case-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
}
.case-title { font-size: clamp(1.35rem, 3vw, 1.8rem); margin-bottom: 0.8rem; }
.case-desc { font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 1.4rem; max-width: 70ch; }
.case-card .tick-list { margin-bottom: 1.7rem; }
.case-card .btn, .case-card .work-card-tag { margin-top: auto; align-self: flex-start; }

/* ---------- Timeline (about page) ---------- */
.timeline {
  display: grid;
  gap: 0;
  max-width: 820px;
  border-left: 2px solid var(--line);
  margin-top: 0.5rem;
}
.timeline-item { position: relative; padding: 0 0 1.7rem 1.9rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--paper);
}
.timeline-role { font-family: var(--font-display); font-weight: 600; font-size: 1.14rem; margin-bottom: 0.3rem; line-height: 1.2; }
.timeline-desc { font-size: 0.98rem; color: var(--ink-soft); max-width: 64ch; }

/* About prose + sub-sections */
.about-copy { font-size: clamp(1.08rem, 2vw, 1.25rem); color: var(--ink-soft); line-height: 1.6; max-width: 64ch; }
.about-block { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.about-block > h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.3rem; }
.about-linkedin { margin-top: clamp(2rem, 4vw, 2.75rem); display: flex; flex-wrap: wrap; gap: 0.9rem 1.8rem; align-items: center; }

/* ---------- Founder block additions (homepage) ---------- */
.founder-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fbf7ee;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 1rem;
  line-height: 1.12;
}
.founder-body { margin-top: 1rem; font-size: 1.02rem; line-height: 1.6; color: #cfd4cb; }
.founder-links {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.8rem;
  align-items: center;
}
.founder-about-link { font-weight: 600; text-decoration: none; color: #cde0d4; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; transition: color 0.15s ease, border-color 0.15s ease; }
.founder-about-link:hover { color: #fff; border-color: #fff; }
.founder .link-linkedin { color: #cde0d4; border-color: rgba(255,255,255,0.25); }
.founder .link-linkedin:hover { color: #fff; border-color: #fff; }

/* ---------- Footer nav ---------- */
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a {
  color: #c4cbd2;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  transition: color 0.15s ease;
}
.footer-nav a:hover { color: #fff; }

/* ---------- Responsive (page additions) ---------- */
@media (max-width: 960px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .case-card--wide .tick-list--cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; }
  .tick-list--cols, .case-card--wide .tick-list--cols { grid-template-columns: 1fr; }
  .work-cta-row .btn, .work-cta-row { width: 100%; }
  .work-cta-row .btn { width: 100%; }
}
