:root {
  --ink:       #1a1814;
  --ink-mid:   #4a4740;
  --ink-light: #8a8780;
  --parchment: #f5f2ec;
  --parchment-dark: #ece8e0;
  --white:     #fdfcfa;
  --green:     #2e4d36;
  --green-mid: #3d6347;
  --green-pale: #e8f0ea;
  --rule:      #d8d4cc;
  --gold:      #9a7c3a;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5vw;
  background: rgba(245,242,236,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.76rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  color: var(--white) !important;
  background: var(--ink); padding: 0.6rem 1.4rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--green) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 5vw 6rem;
  position: relative; overflow: hidden;
}
.hero-rule { position: absolute; top: 0; width: 1px; background: var(--rule); }
.hero-rule-1 { right: 10vw; height: 100%; opacity: 0.5; }
.hero-rule-2 { right: 28vw; height: 55%; opacity: 0.3; }

.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.8s ease 0.1s forwards;
}
.hero-eyebrow::before { content: ''; width: 2.5rem; height: 1px; background: var(--green); }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.015em; max-width: 22ch;
  opacity: 0; animation: fadeUp 0.9s ease 0.25s forwards;
}
h1 em { font-style: italic; color: var(--green); }

.hero-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-top: 4rem; align-items: end;
  opacity: 0; animation: fadeUp 0.9s ease 0.45s forwards;
}
.hero-text p { font-size: 1.05rem; color: var(--ink-mid); line-height: 1.9; max-width: 46ch; }
.hero-text p + p { margin-top: 1rem; }
.hero-text strong { color: var(--ink); font-weight: 500; }

.hero-ctas {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-metrics { border-left: 1px solid var(--rule); padding-left: 3.5rem; }
.metric { padding: 1.3rem 0; border-bottom: 1px solid var(--rule); }
.metric:last-child { border-bottom: none; }
.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; line-height: 1;
  color: var(--ink);
}
.metric-val span { color: var(--green); font-size: 1.5rem; }
.metric-label { font-size: 0.78rem; color: var(--ink-light); margin-top: 0.2rem; letter-spacing: 0.03em; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block; background: var(--ink); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.2rem;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--green); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--ink-mid); text-decoration: none;
  letter-spacing: 0.05em; border-bottom: 1px solid var(--rule);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }

/* ─── SECTIONS ─── */
section { padding: 7rem 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-size: 0.82rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-mid);
  font-weight: 500;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
.eyebrow::after { content: ''; width: 2rem; height: 1px; background: var(--rule); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 300; line-height: 1.15; letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--green); }

/* ─── SCENARIO (replaces FOR WHOM) ─── */
.scenario { background: var(--ink); }
.scenario .eyebrow { color: #9aa898; }
.scenario .eyebrow::after { background: #5a6258; }
.scenario h2 { color: var(--parchment); margin-bottom: 3.5rem; }
.scenario h2 em { color: #7aaa85; }
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid #2e2c28; }
.scenario-col {
  padding: 3rem;
  border-right: 1px solid #2e2c28;
}
.scenario-col:last-child { border-right: none; }
.scenario-label {
  font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: #7aaa85;
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.scenario-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400;
  color: var(--parchment); margin-bottom: 1.2rem; line-height: 1.3;
}
.scenario-col p { font-size: 0.88rem; color: #7a7670; line-height: 1.85; }
.scenario-col p + p { margin-top: 0.8rem; }
.scenario-col strong { color: #aaa8a4; font-weight: 500; }

.fw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid #2e2c28; }
.fwc {
  padding: 2.5rem;
  border-right: 1px solid #2e2c28;
  position: relative;
}
.fwc:last-child { border-right: none; }
.fwc::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--green); opacity: 0;
  transition: opacity 0.2s;
}
.fwc:hover::before { opacity: 1; }
.fwc:hover { background: #1e1c18; }
.fwc-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: #2e2c28;
  line-height: 1; margin-bottom: 1.5rem;
}
.fwc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--parchment); margin-bottom: 0.8rem; line-height: 1.3;
}
.fwc p { font-size: 0.86rem; color: #6a6660; line-height: 1.75; }

/* ─── VALUE ─── */
.value { background: var(--white); }
.value-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; margin-top: 4rem; }
.value-left h2 { margin-bottom: 1.5rem; }
.value-left p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.85; }
.value-left p + p { margin-top: 1rem; }
.value-left strong { color: var(--ink); font-weight: 500; }
.evidence-box {
  background: var(--green); padding: 2.5rem; margin-top: 2rem;
}
.evidence-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  color: var(--white); line-height: 1.6;
}
.evidence-box .evidence-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-style: normal;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 1.2rem;
  line-height: 1.6;
}
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--rule); }
.pain {
  padding: 2.2rem; border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
}
.pain:nth-child(2n) { border-right: none; }
.pain:nth-last-child(-n+2) { border-bottom: none; }
.pain:hover { background: var(--parchment); }
.pain-tag { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.pain h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; line-height: 1.3; }
.pain p { font-size: 0.87rem; color: var(--ink-mid); line-height: 1.75; }

/* ─── WHY US (replaces generic differentiators) ─── */
.why-us { background: var(--parchment-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid var(--rule); margin-top: 4rem; }
.why-item {
  padding: 2.5rem; border-right: 1px solid var(--rule);
  position: relative;
}
.why-item:last-child { border-right: none; }
.why-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--green); opacity: 0;
  transition: opacity 0.25s;
}
.why-item:hover::before { opacity: 1; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--rule); line-height: 1;
  margin-bottom: 1.5rem;
}
.why-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.8rem; line-height: 1.3; color: var(--ink);
}
.why-item p { font-size: 0.86rem; color: var(--ink-mid); line-height: 1.8; }
.why-item strong { color: var(--ink); font-weight: 500; }

/* ─── ENGAGEMENTS ─── */
.engagements { background: var(--white); }
.eng-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 4rem; }
.eng-text h2 { margin-bottom: 1.5rem; }
.eng-text p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }
.eng-list { border: 1px solid var(--rule); background: var(--white); }
.eng {
  padding: 2rem 2rem 2rem 1.6rem;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 2.5rem 1fr;
  gap: 1.2rem; position: relative;
  transition: background 0.2s;
}
.eng:last-child { border-bottom: none; }
.eng:hover { background: var(--parchment); }
.eng::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--green); opacity: 0;
  transition: opacity 0.2s;
}
.eng:hover::before { opacity: 1; }
.eng-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--rule); line-height: 1.2;
  padding-top: 0.1rem;
}
.eng-c h4 { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.4rem; }
.eng-c p { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.65; margin-bottom: 0.5rem; }
.eng-price { font-size: 0.74rem; letter-spacing: 0.09em; color: var(--green); font-weight: 500; }

/* ─── CAPABILITY ─── */
.capability { background: var(--parchment-dark); }
.cap-layout {
  max-width: 900px;
  margin: 4rem auto 0;
}
.cap-layout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 4rem; }
.cap-block { border: 1px solid var(--rule); background: var(--white); padding: 2.5rem; }
.cap-block-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.cap-block-label {
  font-size: 0.78rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.cap-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; line-height: 1.2;
}
.cap-row {
  padding: 1rem 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem;
}
.cap-row:last-child { border-bottom: none; padding-bottom: 0; }
.cap-org {
  font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); padding-top: 0.15rem;
}
.cap-detail { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.6; }
.cap-detail strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: 0.1rem; font-size: 0.87rem; }
.cap-insight {
  background: var(--parchment); border-left: 3px solid var(--green);
  padding: 1.2rem 1.5rem; margin-top: 1.5rem;
  font-size: 0.86rem; color: var(--ink-mid); line-height: 1.75;
}
.cap-insight strong { color: var(--ink); font-weight: 500; }

/* ─── CREDENTIALS STRIP ─── */
.cred-strip {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 2.2rem 1rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cred-strip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.cred-strip-row + .cred-strip-row {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--rule);
}
.cred-strip-row-secondary .cred-item {
  font-size: 1.2rem;
}
.cred-strip-label {
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-light);
  margin-right: 2.5rem;
  font-weight: 500;
}
.cred-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  padding: 0.4rem 1.6rem;
  position: relative;
}
.cred-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.4rem;
  background: var(--rule);
}
.cred-item em {
  font-style: italic;
  color: var(--ink-mid);
  font-size: 0.85em;
  margin-left: 0.35rem;
  letter-spacing: 0.02em;
}

/* ─── TEAM ─── */
.team { background: var(--white); }
.team-intro { max-width: 60ch; margin-bottom: 5rem; }
.team-intro p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.9; margin-top: 1.2rem; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.person { background: var(--parchment-dark); padding: 3rem; }
.person-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; margin-bottom: 0.2rem;
}
.person-title {
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 1.8rem; display: flex; align-items: center; gap: 0.8rem;
}
.person-title::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.person p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.85; margin-bottom: 1rem; }
.person p:last-of-type { margin-bottom: 0; }
.person strong { color: var(--ink); font-weight: 500; }
.person-creds { margin-top: 2rem; border-top: 1px solid var(--rule); }
.pcred {
  padding: 1rem 0; border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem;
}
.pcred:last-child { border-bottom: none; }
.pcred-org {
  font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); padding-top: 0.15rem;
}
.pcred-detail { font-size: 0.83rem; color: var(--ink-mid); line-height: 1.6; }
.pcred-detail strong { display: block; font-weight: 500; color: var(--ink); margin-bottom: 0.1rem; font-size: 0.86rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag {
  font-size: 0.7rem; letter-spacing: 0.07em;
  padding: 0.32rem 0.75rem; border: 1px solid var(--rule);
  color: var(--ink-mid); background: var(--parchment);
}

/* ─── CTA ─── */
.cta-sec { background: var(--ink); }
.cta-sec .eyebrow { color: #9aa898; }
.cta-sec .eyebrow::after { background: #5a6258; }
.cta-inner { max-width: 800px; margin: 0 auto; }
.cta-inner h2 { color: var(--parchment); margin-bottom: 1rem; }
.cta-inner h2 em { color: #7aaa85; }
.cta-sub { font-size: 1rem; color: #6a6660; line-height: 1.85; margin-bottom: 4rem; }

.audit-card {
  border: 1px solid #2e2c28; padding: 3rem; margin-bottom: 3rem;
  position: relative; background: #1a1814;
}
.audit-tag {
  position: absolute; top: -0.6rem; left: 2rem;
  background: var(--ink); padding: 0 0.6rem;
  font-size: 0.63rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
}
.audit-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--parchment);
  margin-bottom: 0.3rem;
}
.audit-card .price { font-size: 0.78rem; color: var(--green); letter-spacing: 0.1em; margin-bottom: 2rem; }
.audit-list { list-style: none; margin-bottom: 2.5rem; }
.audit-list li {
  font-size: 0.88rem; color: #7a7670;
  padding: 0.7rem 0; border-bottom: 1px solid #2e2c28;
  display: flex; gap: 0.8rem; align-items: flex-start;
  line-height: 1.5;
}
.audit-list li::before { content: '→'; color: var(--green); flex-shrink: 0; }
.audit-list li:last-child { border-bottom: none; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-inv {
  display: inline-block; background: var(--parchment); color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.2rem; transition: background 0.25s;
}
.btn-primary-inv:hover { background: var(--green-pale); }
.btn-ghost-inv {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: #6a6660; text-decoration: none;
  letter-spacing: 0.05em; border-bottom: 1px solid #3a3830;
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-inv:hover { color: #7aaa85; border-color: #7aaa85; }

/* ─── FOOTER ─── */
footer {
  background: #111009; padding: 2.5rem 5vw;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid #1e1c18;
}
.f-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--parchment);
  letter-spacing: 0.06em; text-decoration: none;
}
.f-logo span { color: #7aaa85; }
.f-info {
  font-size: 0.75rem; color: #4a4640;
  letter-spacing: 0.06em; text-align: right;
}
.f-info a { color: #5a7860; text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── MOBILE ─── */
@media (max-width: 800px) {
  .nav-links a:not(.nav-cta) { display: none; }
  h1 { font-size: 2.8rem; }
  .hero-body, .value-layout, .eng-layout, .team-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cap-layout { margin-top: 3rem; }
  .cred-strip { padding: 1.5rem 0.5rem; }
  .cred-strip-row { gap: 0.3rem 0.6rem; }
  .cred-strip-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 0.5rem; }
  .cred-item { font-size: 1.1rem; padding: 0.3rem 0.6rem; }
  .cred-strip-row-secondary .cred-item { font-size: 1rem; }
  .cred-item:not(:last-child)::after { display: none; }
  .cred-item em { display: block; margin-left: 0; }
  .hero-metrics { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 1.5rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain { border-right: none !important; }
  .pain:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .pain:last-child { border-bottom: none; }
  .fw-grid, .why-grid, .scenario-grid { grid-template-columns: 1fr; }
  .fwc, .why-item, .scenario-col { border-right: none; border-bottom: 1px solid #2e2c28; }
  .fwc:last-child, .why-item:last-child, .scenario-col:last-child { border-bottom: none; }
  footer { flex-direction: column; text-align: center; }
  .f-info { text-align: center; }
  .cta-btns { flex-direction: column; }
}

/* ─── content sub-pages (services / insights / faq) ─────────────────────── */
.subnav-pad { height: 0; }
.page-hero { max-width: 1080px; margin: 0 auto; padding: 11rem 2rem 3.5rem; }
.page-hero .eyebrow { margin-bottom: 1.25rem; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; color: var(--ink); margin: 0 0 1.25rem; letter-spacing: -0.01em; }
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero .lede { font-size: 1.2rem; color: var(--ink-mid); line-height: 1.7; max-width: 62ch; }
.crumb { max-width: 1080px; margin: 0 auto; padding: 0 2rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-light); }
.crumb a { color: var(--ink-light); text-decoration: none; } .crumb a:hover { color: var(--green); }
.prose { max-width: 720px; margin: 0 auto; padding: 1rem 2rem 4rem; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.9rem; color: var(--ink); margin: 2.5rem 0 0.75rem; }
.prose h3 { font-weight: 500; font-size: 1.15rem; color: var(--ink); margin: 1.75rem 0 0.5rem; }
.prose p, .prose li { font-size: 1.06rem; line-height: 1.85; color: var(--ink-mid); }
.prose p { margin: 0 0 1.15rem; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose ul { margin: 0 0 1.4rem; padding-left: 1.2rem; } .prose li { margin: 0.4rem 0; }
.prose blockquote { margin: 1.75rem 0; padding: 0.5rem 0 0.5rem 1.5rem; border-left: 2px solid var(--green); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.35rem; color: var(--ink); }
.svc-grid { max-width: 1080px; margin: 0 auto; padding: 1rem 2rem 4rem; display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.svc-card { background: var(--white); border: 1px solid var(--rule); border-radius: 4px; padding: 2.25rem; }
.svc-card .tag { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.5rem; color: var(--ink); margin: 0.6rem 0 0.4rem; }
.svc-card .meta { font-size: 0.9rem; color: var(--ink-light); margin-bottom: 1rem; }
.svc-card ul { margin: 0; padding-left: 1.1rem; } .svc-card li { font-size: 0.98rem; line-height: 1.65; color: var(--ink-mid); margin: 0.35rem 0; }
.insight-list { max-width: 820px; margin: 0 auto; padding: 1rem 2rem 4rem; }
.insight-card { display: block; text-decoration: none; border-top: 1px solid var(--rule); padding: 2rem 0; }
.insight-card:last-child { border-bottom: 1px solid var(--rule); }
.insight-card .tag { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.insight-card h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.7rem; color: var(--ink); margin: 0.5rem 0 0.5rem; transition: color .2s; }
.insight-card:hover h2 { color: var(--green); }
.insight-card p { font-size: 1.02rem; line-height: 1.7; color: var(--ink-mid); margin: 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; padding: 1rem 2rem 4rem; }
.faq-item { border-top: 1px solid var(--rule); padding: 1.75rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.4rem; color: var(--ink); margin: 0 0 0.6rem; }
.faq-item p { font-size: 1.04rem; line-height: 1.8; color: var(--ink-mid); margin: 0; }
.page-cta { background: var(--green); color: var(--white); text-align: center; padding: 4.5rem 2rem; margin-top: 2rem; }
.page-cta h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 2.2rem; margin: 0 0 0.75rem; }
.page-cta h2 em { font-style: italic; color: var(--green-pale); }
.page-cta p { color: var(--green-pale); margin: 0 auto 1.75rem; max-width: 46ch; }
.page-cta .btn-primary-inv { background: var(--white); color: var(--green); }
