/* ============================================================
   Sentera — shared stylesheet
   Design language: warm cream, deep oak green, terracotta clay
   Type: Fraunces (display) + Instrument Sans (body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #F4EFE6;          /* warm cream — limestone */
  --bg-alt: #EAE3D5;      /* slightly deeper cream */
  --bg-deep: #E2DBCC;     /* deepest cream tone */
  --ink: #1F1B16;         /* warm near-black */
  --ink-soft: #5A5147;    /* secondary text */
  --ink-faint: #8A8275;   /* labels, eyebrows */
  --forest: #2A3D31;      /* deep oak green — anchor */
  --forest-soft: #3F5747;
  --clay: #C16A4F;        /* terracotta — accent */
  --clay-deep: #A6553D;
  --clay-soft: #E8C8B6;
  --hairline: #D8CFBE;    /* warm divider */

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Instrument Sans', system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --read: 680px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 240px 240px;
  background-attachment: fixed;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.18;
}
h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.25;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  margin: 0 0 1.25rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
/* Eyebrow marker — mosaic row of three tiles (kept per Cj, Aug 2026).
   Uses background-color (not -image) so CTA's clay-soft override still works. */
.eyebrow .dash {
  display: inline-block;
  width: 26px;
  height: 5px;
  background-color: var(--clay);
  -webkit-mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000);
  -webkit-mask-size: 5px 5px, 5px 5px, 5px 5px;
  -webkit-mask-position: 0 50%, 10px 50%, 21px 50%;
  -webkit-mask-repeat: no-repeat;
          mask-image: linear-gradient(#000, #000), linear-gradient(#000, #000), linear-gradient(#000, #000);
          mask-size: 5px 5px, 5px 5px, 5px 5px;
          mask-position: 0 50%, 10px 50%, 21px 50%;
          mask-repeat: no-repeat;
  vertical-align: 0.18em;
}
/* OPTION (on hold, Aug 2026) — footpath eyebrow: dash, dash, destination dot.
   See motif-preview.html. To try it, replace the rule above with:
.eyebrow .dash {
  display: inline-block;
  width: 28px;
  height: 5px;
  background-color: var(--clay);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 5'><rect x='0' y='0' width='9' height='5' rx='2.5' fill='%23000'/><rect x='12' y='0' width='7' height='5' rx='2.5' fill='%23000'/><circle cx='25.5' cy='2.5' r='2.5' fill='%23000'/></svg>");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 5'><rect x='0' y='0' width='9' height='5' rx='2.5' fill='%23000'/><rect x='12' y='0' width='7' height='5' rx='2.5' fill='%23000'/><circle cx='25.5' cy='2.5' r='2.5' fill='%23000'/></svg>");
          mask-size: contain;
          mask-repeat: no-repeat;
  vertical-align: 0.18em;
}
*/

.lede {
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 350;
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  max-width: 38ch;
}

p { margin: 0 0 1.1rem 0; color: var(--ink-soft); max-width: 62ch; }
p strong { color: var(--ink); font-weight: 600; }

.italic-em { font-style: italic; color: var(--forest); font-variation-settings: "opsz" 144, "SOFT" 100; }
.clay-em { font-style: italic; color: var(--clay); font-variation-settings: "opsz" 144, "SOFT" 100; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
  position: relative;
}
section.compact { padding: clamp(3rem, 6vw, 5rem) 0; }

.rule { border: 0; height: 1px; background: var(--hairline); margin: 0; }
.alt-bg { background: var(--bg-alt); }
.deep-bg { background: var(--bg-deep); }

/* Subtle topographic background — used on dedicated sections */
.topo-bg {
  position: relative;
}
.topo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'><g fill='none' stroke='%232A3D31' stroke-width='0.6' opacity='0.06'><path d='M0,300 Q150,180 300,300 T600,300'/><path d='M0,340 Q150,220 300,340 T600,340'/><path d='M0,380 Q150,260 300,380 T600,380'/><path d='M0,260 Q150,140 300,260 T600,260'/><path d='M0,220 Q150,100 300,220 T600,220'/><path d='M0,420 Q150,300 300,420 T600,420'/><path d='M0,180 Q150,60 300,180 T600,180'/></g></svg>");
  background-repeat: repeat;
  background-size: 600px 600px;
  pointer-events: none;
  opacity: 1;
}
.topo-bg > * { position: relative; z-index: 1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.site-header.scrolled { border-color: var(--hairline); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
  font-weight: 500;
  font-variation-settings: "opsz" 24;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
}
.wordmark .name { font-weight: 600; }
.wordmark .tag {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}

nav.primary {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  align-items: center;
}
nav.primary a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color .2s ease;
  font-weight: 500;
}
nav.primary a:hover,
nav.primary a.active { color: var(--ink); }
nav.primary a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right .35s cubic-bezier(.2,.7,.2,1);
}
nav.primary a:not(.btn):hover::after,
nav.primary a.active:not(.btn)::after { right: 0; }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.85rem;
}
.menu-btn .bars {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 14px;
}
.menu-btn .bars span {
  display: block;
  height: 1px;
  background: currentColor;
  width: 100%;
}
.menu-btn .bars span:nth-child(2) { width: 70%; }

@media (max-width: 760px) {
  nav.primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--hairline);
  }
  nav.primary.open { display: flex; }
  nav.primary a {
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--hairline);
    font-size: 1.1rem;
    font-family: var(--display);
  }
  nav.primary a:last-child { border-bottom: 0; margin-top: 0.5rem; }
  .menu-btn { display: inline-flex; }
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--bg);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--ink); border-color: var(--ink); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn.btn--clay { background: var(--clay); border-color: var(--clay); }
.btn.btn--clay:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.btn.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn.compact { padding: 0.55rem 1.05rem; font-size: 0.88rem; }
.btn.large { padding: 1.05rem 1.85rem; font-size: 1rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  transition: border-color .25s ease;
}
.text-link:hover { border-color: var(--ink); }

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  max-width: 980px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 220px 1fr; }
  .section-head .eyebrow { margin: 0; padding-top: 0.6rem; }
}

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 1fr;
}
.section-head--center .eyebrow { justify-content: center; padding-top: 0; }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}

/* Soft radial atmosphere behind hero */
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at center, rgba(193, 106, 79, 0.13), rgba(193, 106, 79, 0) 65%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}
.hero h1 .em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .clay {
  color: var(--clay);
  font-style: italic;
}

.hero-sub {
  margin-top: 1.75rem;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 2.2rem;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
  font-weight: 500;
}
.hero-trust .dot {
  width: 6px; height: 6px; background: var(--clay); border-radius: 999px;
  animation: pulse 3.6s ease-in-out infinite;
}
.hero-trust .sep { color: var(--hairline); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* Page-hero — used on subpages (smaller than home hero) */
.page-hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 18ch;
}
.page-hero .lede { margin-top: 1.5rem; max-width: 50ch; }

/* ---------- Photo placeholder ---------- */
.photo {
  width: 100%;
  border-radius: var(--radius);
  background: var(--bg-deep);
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  /* Subtle inset texture so it doesn't read as a broken image */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  background-blend-mode: multiply;
}
.photo::before {
  content: "PHOTO";
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--ink-faint);
  background: rgba(244, 239, 230, 0.85);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}
.photo .photo-desc {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  font-variation-settings: "opsz" 14, "SOFT" 100;
}
.photo.tall { aspect-ratio: 4 / 5; }
.photo.wide { aspect-ratio: 3 / 2; }
.photo.cinematic { aspect-ratio: 21 / 9; }
.photo.square { aspect-ratio: 1 / 1; }
.photo.portrait { aspect-ratio: 3 / 4; }

/* When a real image is dropped into a .photo figure, drop the placeholder chrome */
.photo:has(> img) {
  padding: 0;
  background: var(--bg-deep);
  background-image: none;
}
.photo:has(> img)::before { display: none; }
.photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Icon ---------- */
.icon {
  width: 36px;
  height: 36px;
  color: var(--forest);
  flex-shrink: 0;
}
.icon-bubble {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-deep);
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.icon-bubble .icon { width: 26px; height: 26px; color: var(--forest); }

/* ---------- Home: high-level "what & who" ---------- */
.value-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 760px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform .3s ease, border-color .3s ease;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--clay);
  box-shadow: 0 10px 28px -14px rgba(193, 106, 79, 0.22);
}
.value-card:hover .icon-bubble {
  background: var(--clay-soft);
  border-color: var(--clay);
}
.value-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 0.6rem;
}
.value-card p { margin: 0; font-size: 0.98rem; }

/* Two-column intro section (home: what we do | who we are) */
.two-col {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 880px) {
  .two-col { grid-template-columns: 1.2fr 1fr; }
}
.two-col h2 { margin-bottom: 1.25rem; }
.two-col p { font-size: 1.05rem; }

/* ---------- Process / steps (services page) ---------- */
.steps { display: grid; gap: clamp(2rem, 4.5vw, 3.5rem); margin-top: 3rem; }
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 760px) {
  .step { grid-template-columns: 220px 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
}
.step-num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 0.9;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.step-num em {
  font-style: italic;
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--body);
  font-weight: 500;
  transform: translateY(-0.6em);
}
.step-content h3 { margin-bottom: 0.7rem; }
.step-content p { font-size: 1.02rem; margin-bottom: 0; }

/* ---------- Industries ---------- */
.industries { display: grid; gap: 0; margin-top: 2rem; }
.industry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.industry:last-of-type { border-bottom: 1px solid var(--hairline); }
@media (min-width: 820px) {
  .industry { grid-template-columns: 100px 220px 1fr; gap: clamp(1.5rem, 3vw, 3rem); }
}
.industry .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.industry .icon-wrap .icon { width: 30px; height: 30px; }
.industry h3 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin: 0;
}
.industry p { margin: 0; font-size: 1rem; max-width: 50ch; }

.anti-fit {
  margin-top: 2.5rem;
  padding: 1.4rem 1.6rem;
  background: rgba(193, 106, 79, 0.08);
  border-left: 2px solid var(--clay);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: var(--read);
}

/* ---------- Outcomes / what changes ---------- */
.outcomes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 720px) {
  .outcomes { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--hairline); }
}
.outcome {
  padding: clamp(1.75rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 720px) { .outcome { border-right: 1px solid var(--hairline); } }
.outcome .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
  display: block;
}
.outcome h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  margin-bottom: 0.6rem;
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.outcome p { margin: 0; font-size: 0.98rem; }

.outcome-aside {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-left: 3px solid var(--clay);
  background: rgba(232, 200, 182, 0.10);
  max-width: 72ch;
}
.outcome-aside p { margin: 0; font-size: 1rem; line-height: 1.6; }
.outcome-aside p + p { margin-top: 0.75rem; }
.outcome-aside .eyebrow { margin-bottom: 0.85rem; }

/* ---------- About page ---------- */
.founders {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
@media (min-width: 720px) { .founders { grid-template-columns: repeat(2, 1fr); } }
.founder h3 {
  margin-top: 1.4rem;
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.founder .role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0.4rem 0 0.6rem;
  font-weight: 500;
}
.founder p { margin: 0.6rem 0 0; }

.signature {
  margin-top: 2rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1.3;
  max-width: 32ch;
}

/* ---------- Contact CTA section (used as final CTA on every page) ---------- */
.cta {
  background: var(--forest);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.18'/></svg>");
  background-size: 240px 240px;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -60%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  max-width: 1000px; max-height: 1000px;
  background: radial-gradient(circle at center, rgba(193, 106, 79, 0.18), rgba(193, 106, 79, 0) 60%);
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }
.cta .eyebrow { color: rgba(244, 239, 230, 0.7); justify-content: center; }
.cta .eyebrow .dash { background: var(--clay-soft); }
.cta h2 {
  color: var(--bg);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.cta p {
  color: rgba(244, 239, 230, 0.78);
  max-width: 56ch;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.08rem;
}
.cta .btn { background: var(--clay); border-color: var(--clay); color: var(--bg); }
.cta .btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.cta .btn.btn--ghost {
  background: transparent;
  color: var(--bg);
  border-color: rgba(244, 239, 230, 0.4);
}
.cta .btn.btn--ghost:hover {
  background: rgba(244, 239, 230, 0.1);
  border-color: var(--bg);
}
.cta-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
}
.cta-foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 239, 230, 0.2);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  font-size: 0.9rem;
  color: rgba(244, 239, 230, 0.65);
}
.cta-foot strong { color: var(--bg); font-weight: 500; }

/* ---------- Contact page form area ---------- */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.1fr 1fr; } }
.contact-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-card h3 {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 1rem;
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--hairline);
}
.contact-list li:first-child { border-top: 0; }
.contact-list .icon { width: 22px; height: 22px; color: var(--forest); margin-top: 0.15rem; }
.contact-list .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.contact-list .value {
  font-size: 1rem;
  color: var(--ink);
  margin-top: 0.15rem;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.25rem 0 2.5rem;
  font-size: 0.84rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--hairline);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.site-footer .footer-nav { display: flex; gap: 1.4rem; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--ink); }

/* ---------- Packages (services page) ---------- */
.packages-intro {
  max-width: 56ch;
  margin: 0 0 2.5rem 0;
  font-size: 1.05rem;
}
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2vw, 1.5rem);
  margin-top: 1rem;
  align-items: stretch;
}
@media (min-width: 880px) {
  .packages { grid-template-columns: repeat(3, 1fr); }
}
.package {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.4vw, 2.1rem);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
}
.package:hover {
  transform: translateY(-3px);
  border-color: var(--forest);
}
.package--featured {
  background: var(--bg-deep);
  border-color: var(--clay-soft);
}
.package--featured::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: var(--clay);
  border-radius: var(--radius) var(--radius) 0 0;
}
.package-tier {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.85rem;
}
.package--featured .package-tier { color: var(--clay-deep); }
.package-name {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1.05;
  margin: 0 0 0.7rem 0;
  letter-spacing: -0.01em;
}
.package-lede {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem 0;
  max-width: 32ch;
  line-height: 1.45;
}
.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.4rem;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}
.package-features li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 999px;
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.package-features .also {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay-deep);
  font-family: var(--body);
  padding: 0.4rem 0 0.2rem;
  letter-spacing: 0.18em;
}
.package-features .also::before { display: none; }
.package-best {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.package-best-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 0.5rem;
}
.package-best p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  line-height: 1.45;
}
.package-foot {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.package-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--forest);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

/* ---------- Industry triptych (home page — three-on-one-row) ---------- */
.industry-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(193, 106, 79, 0.05), transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(212, 165, 116, 0.05), transparent 60%);
}
.industry-trio--two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 600px) {
  .industry-trio,
  .industry-trio--two { grid-template-columns: 1fr; }
}
.industry-trio-col {
  text-align: center;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(0.75rem, 1.5vw, 1.5rem);
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background-color .35s ease;
}
.industry-trio-col:last-child { border-right: 0; }
.industry-trio-col:hover { background-color: rgba(232, 200, 182, 0.18); }
@media (max-width: 600px) {
  .industry-trio-col {
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .industry-trio-col:last-child { border-bottom: 0; }
}
.industry-trio-col .icon-bubble {
  margin: 0 auto 1rem auto;
  width: 56px;
  height: 56px;
  background: var(--bg);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.industry-trio-col:hover .icon-bubble {
  background: var(--clay-soft);
  border-color: var(--clay);
  transform: scale(1.04);
}
.industry-trio-col h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-bottom: 0.5rem;
}
.industry-trio-col p {
  font-size: 0.92rem;
  margin: 0 auto;
  max-width: 28ch;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Hand-drawn underline (warmth detail) ---------- */
.hand-underline {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M3,7 Q35,2 70,7 T135,7 T185,5 L197,6' stroke='%23C16A4F' stroke-width='2.4' fill='none' stroke-linecap='round' opacity='0.7'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 100% 0.5em;
  padding-bottom: 0.12em;
}

/* ---------- Ornament — mosaic row (clay tiles, varied shapes & angles; kept per Cj, Aug 2026) ---------- */
.ornament {
  display: block;
  text-align: center;
  padding: 1.75rem 0;
  line-height: 0;
}
.ornament::before {
  content: "";
  display: inline-block;
  width: 88px;
  height: 12px;
  opacity: 0.85;
  /* Five tiles of varied size & rotation, suggesting hand-set mosaic stones */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 12' fill='%23C16A4F'><rect x='0' y='3' width='7' height='7'/><rect x='14' y='1' width='9' height='9' transform='rotate(12 18.5 5.5)'/><rect x='34' y='2' width='8' height='8'/><rect x='52' y='3' width='7' height='7' transform='rotate(-8 55.5 6.5)'/><rect x='70' y='2' width='9' height='9'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/* OPTION (on hold, Aug 2026) — footpath ornament: winding dashed trail arriving
   at a ringed destination marker. See motif-preview.html. To try it, replace the
   .ornament::before rule above with:
.ornament::before {
  content: "";
  display: inline-block;
  width: 104px;
  height: 16px;
  opacity: 0.85;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 104 16'><path d='M2 11 C 18 3, 32 14, 48 8 S 74 4, 88 8' fill='none' stroke='%23C16A4F' stroke-width='2.4' stroke-linecap='round' stroke-dasharray='5 6.5'/><circle cx='97' cy='8' r='2.8' fill='%23C16A4F'/><circle cx='97' cy='8' r='6' fill='none' stroke='%23C16A4F' stroke-width='1.2' opacity='0.45'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
*/

/* ---------- Signature line (about page) ---------- */
.signature-line {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  font-weight: 350;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  color: var(--clay);
  letter-spacing: -0.005em;
  margin: 1.5rem 0 0;
  display: block;
  line-height: 1.3;
}

/* ---------- Family role note (small italic line under role) ---------- */
.family-note {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--clay);
  font-variation-settings: "opsz" 14, "SOFT" 100;
  margin: 0.45rem 0 0;
  letter-spacing: -0.005em;
}

/* ---------- Founders intro paragraph ---------- */
.founders-intro {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 2.5rem;
}

/* ---------- Flywheel (How it spreads) ---------- */
.flywheel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  align-items: stretch;
}
@media (min-width: 760px) {
  .flywheel {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0.5rem;
    align-items: stretch;
  }
}
.flywheel-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2rem) 1.25rem;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.flywheel-step:hover {
  border-color: var(--clay);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -14px rgba(193, 106, 79, 0.22);
}
.flywheel-step:hover .icon-bubble {
  background: var(--clay-soft);
  border-color: var(--clay);
}
.flywheel-step .icon-bubble {
  margin: 0 auto 1.1rem auto;
  width: 60px;
  height: 60px;
}
.flywheel-step .step-label {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--clay-deep);
  margin-bottom: 0.6rem;
  display: block;
}
.flywheel-step h4 {
  font-family: var(--display);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--forest);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.flywheel-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 24ch;
}
.flywheel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  color: var(--clay);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  padding: 0 0.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
@media (max-width: 760px) {
  .flywheel-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
    align-self: center;
  }
}
.flywheel-loop {
  text-align: center;
  margin-top: 2.25rem;
  font-family: var(--display);
  font-style: italic;
  color: var(--clay-deep);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-variation-settings: "opsz" 14, "SOFT" 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.flywheel-loop svg {
  width: 24px;
  height: 24px;
  color: var(--clay);
  animation: rotate 12s linear infinite;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .flywheel-loop svg { animation: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Name definition line (hero) ---------- */
.defn {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--clay);
  padding-left: 1rem;
  margin: 1.4rem 0 0;
  max-width: 34rem;
  line-height: 1.6;
}
.defn strong {
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.defn .defn-pos {
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
