@font-face {
  font-family: "Thryve Display";
  src: url("cormorant-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Thryve Display";
  src: url("cormorant-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Thryve Sans";
  src: url("inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --forest: #1f2e25;
  --forest-deep: #142018;
  --forest-soft: #33483a;
  --copper: #d89a63;
  --copper-bright: #e4aa76;
  --ivory: #f4efe8;
  --paper: #fbf8f3;
  --sand: #e7ddd0;
  --olive: #3f4f3c;
  --charcoal: #2a2a2a;
  --line: rgba(31, 46, 37, 0.16);
  --line-light: rgba(244, 239, 232, 0.18);
  --shadow: 0 30px 80px rgba(20, 32, 24, 0.13);
  --display: "Thryve Display", Georgia, serif;
  --sans: "Thryve Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--sans);
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--forest);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.5rem, 7.2vw, 7.4rem);
}

h2 {
  font-size: clamp(2.65rem, 5vw, 5rem);
}

h3 {
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

::selection {
  background: var(--copper);
  color: var(--forest-deep);
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.section-ivory {
  background: var(--ivory);
}

.section-sand {
  background: var(--sand);
}

.eyebrow {
  color: #a25d31;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--copper-bright);
}

.lead {
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.23;
}

.lead-light {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  line-height: 1.25;
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 750;
  justify-content: center;
  letter-spacing: 0.075em;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1.15rem;
}

.desktop-nav .button-small {
  border-radius: 999px;
  font-size: 0.68rem;
  height: 34px;
  min-height: 0;
  line-height: 1;
  padding: 1px 1.3em 0;
  text-indent: 0.075em;
}

.button-dark {
  background: var(--forest);
  color: var(--ivory);
}

.button-dark:hover {
  background: var(--forest-soft);
}

.button-copper {
  background: var(--copper);
  color: var(--forest-deep);
}

.button-copper:hover {
  background: var(--copper-bright);
}

.button-outline {
  border-color: var(--forest);
  color: var(--forest);
}

.button-outline:hover {
  background: rgba(31, 46, 37, 0.06);
}

.button-outline-light {
  border-color: rgba(244, 239, 232, 0.4);
  color: var(--ivory);
}

.button-outline-light:hover {
  background: rgba(244, 239, 232, 0.08);
  border-color: var(--ivory);
}

.text-link {
  align-items: center;
  color: var(--forest);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.5rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--copper);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.text-link-light {
  color: var(--ivory);
}

/* Header */

.site-header {
  background: rgba(244, 239, 232, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-shell {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
  margin: 0 auto;
  width: min(1280px, calc(100% - 48px));
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.8rem;
}

.brand-mark {
  height: 58px;
  width: 58px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-tag {
  color: rgba(42, 42, 42, 0.52);
  font-size: 0.55rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.1rem);
}

.nav-link {
  color: rgba(42, 42, 42, 0.64);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1rem 0;
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  background: var(--copper);
  bottom: 0.7rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle,
.mobile-panel {
  display: none;
}

/* Homepage hero */

.hero {
  background: var(--forest);
  color: var(--ivory);
  min-height: calc(100svh - 76px);
  padding: clamp(5rem, 7vw, 7.5rem) 0;
  position: relative;
}

.hero-grid-pattern {
  background-image:
    linear-gradient(rgba(244, 239, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 232, 0.05) 1px, transparent 1px);
  background-size: 68px 68px;
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, black 45%, black);
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.hero::before {
  background: var(--copper);
  border-radius: 50%;
  content: "";
  filter: blur(100px);
  height: 20rem;
  opacity: 0.12;
  position: absolute;
  right: 10%;
  top: 16%;
  width: 20rem;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 2rem;
}

.hero h1 em {
  color: var(--copper);
  font-weight: 400;
}

.hero-lead {
  color: rgba(244, 239, 232, 0.75);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-weight: 350;
  line-height: 1.75;
  margin-bottom: 2.3rem;
  max-width: 680px;
}

.hero-qualifier {
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin-top: 3.5rem;
  padding-top: 1.25rem;
}

.hero-qualifier span {
  color: rgba(244, 239, 232, 0.5);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.growth-board {
  background: rgba(20, 32, 24, 0.74);
  border: 1px solid rgba(216, 154, 99, 0.45);
  box-shadow: 0 40px 90px rgba(7, 14, 9, 0.34);
  padding: 1.2rem;
  position: relative;
}

.growth-board::before,
.growth-board::after {
  border-color: var(--copper);
  border-style: solid;
  content: "";
  height: 24px;
  position: absolute;
  width: 24px;
}

.growth-board::before {
  border-width: 1px 0 0 1px;
  left: -7px;
  top: -7px;
}

.growth-board::after {
  border-width: 0 1px 1px 0;
  bottom: -7px;
  right: -7px;
}

.board-heading,
.board-signoff {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.board-heading {
  border-bottom: 1px solid var(--line-light);
  padding: 0.4rem 0.35rem 1.1rem;
}

.board-heading p,
.board-heading span,
.board-signoff p {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin: 0;
  text-transform: uppercase;
}

.board-heading p {
  color: var(--copper-bright);
}

.board-heading span,
.board-signoff p {
  color: rgba(244, 239, 232, 0.5);
}

.board-focus {
  padding: 3.4rem 1.4rem;
}

.micro-label {
  color: rgba(244, 239, 232, 0.4);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.board-outcome {
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
}

.board-path {
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.board-path div {
  border-right: 1px solid var(--line-light);
  padding: 1.25rem 0.4rem;
  text-align: center;
}

.board-path div:last-child {
  border-right: 0;
}

.board-path span {
  color: var(--copper);
  font-size: 0.55rem;
  font-weight: 700;
}

.board-path p {
  color: rgba(244, 239, 232, 0.72);
  font-size: 0.62rem;
  margin: 0.3rem 0 0;
  text-transform: uppercase;
}

.board-signoff {
  gap: 0.6rem;
  padding: 1.15rem 0.35rem 0.35rem;
}

.board-signoff p:nth-child(2) {
  margin-right: auto;
}

.signal-dot {
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 154, 99, 0.12);
  display: block;
  height: 7px;
  width: 7px;
}

.board-initials {
  color: var(--copper) !important;
  font-family: var(--display);
  font-size: 0.95rem !important;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.trust-grid {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.trust-grid p {
  color: rgba(42, 42, 42, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.trust-grid div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.trust-grid span {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.15rem;
}

/* Homepage content */

.intro-grid {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.display-large {
  margin-bottom: 0;
}

.intro-copy > p:not(.lead) {
  color: rgba(42, 42, 42, 0.68);
}

.plain-list {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

.plain-list p {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 1rem 0;
}

.plain-list span {
  color: #a25d31;
  font-size: 0.61rem;
  font-weight: 750;
}

.section-heading {
  margin-bottom: 4rem;
  max-width: 780px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 0.65fr;
  max-width: none;
}

.split-heading p:last-child {
  color: rgba(42, 42, 42, 0.62);
  margin-bottom: 0.8rem;
}

.pillar-grid {
  border-bottom: 1px solid rgba(31, 46, 37, 0.23);
  border-top: 1px solid rgba(31, 46, 37, 0.23);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
  border-right: 1px solid rgba(31, 46, 37, 0.23);
  min-height: 360px;
  padding: 2.4rem 2rem;
  position: relative;
}

.pillar-card:first-child {
  padding-left: 0;
}

.pillar-card:last-child {
  border-right: 0;
}

.card-number {
  color: #9c5b31;
  display: block;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  margin-bottom: 5.5rem;
}

.pillar-card h3 {
  margin-bottom: 1.2rem;
}

.pillar-card p {
  color: rgba(42, 42, 42, 0.62);
  max-width: 300px;
}

.card-line {
  background: var(--copper);
  bottom: -1px;
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 240ms ease;
  width: 0;
}

.pillar-card:hover .card-line {
  width: 100%;
}

.center-link {
  margin-top: 2.5rem;
  text-align: center;
}

.founder-section {
  background: var(--forest);
  color: rgba(244, 239, 232, 0.68);
  position: relative;
}

.founder-section::after {
  color: rgba(244, 239, 232, 0.025);
  content: "KAREN";
  font-family: var(--display);
  font-size: 20vw;
  line-height: 0.7;
  pointer-events: none;
  position: absolute;
  right: -2vw;
  top: 12%;
}

.founder-grid {
  align-items: center;
  display: grid;
  gap: clamp(4rem, 9vw, 9rem);
  grid-template-columns: 0.78fr 1.22fr;
  position: relative;
  z-index: 1;
}

.founder-visual {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(rgba(216, 154, 99, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 154, 99, 0.18) 1px, transparent 1px),
    var(--forest-deep);
  background-size: 42px 42px;
  border: 1px solid rgba(216, 154, 99, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 430px;
  padding: 2rem;
}

.founder-initial {
  color: var(--copper);
  font-family: var(--display);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 300;
  line-height: 0.8;
  margin: auto;
}

.founder-caption {
  border-top: 1px solid var(--line-light);
  padding-top: 1.3rem;
}

.founder-caption p {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1.45rem;
  margin-bottom: 0.2rem;
}

.founder-caption span {
  color: rgba(244, 239, 232, 0.46);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-copy h2,
.hub-preview h2,
.cta-section h2 {
  color: var(--ivory);
}

.founder-copy h2 {
  margin-bottom: 2rem;
}

.founder-copy > p:not(.eyebrow, .lead-light) {
  max-width: 650px;
}

.founder-copy .button-row {
  margin-top: 2.4rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  border-left: 1px solid var(--line);
  min-height: 310px;
  padding: 0 1.5rem 1.5rem;
}

.process-step:last-child {
  border-right: 1px solid var(--line);
}

.process-step > span {
  color: #a25d31;
  display: block;
  font-size: 0.62rem;
  font-weight: 750;
  margin-bottom: 6rem;
}

.process-step h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: rgba(42, 42, 42, 0.62);
  font-size: 0.9rem;
}

.work-section {
  background: var(--paper);
}

.case-grid {
  align-items: center;
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.case-copy h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
  margin-bottom: 1.8rem;
}

.case-copy > p:not(.eyebrow) {
  color: rgba(42, 42, 42, 0.64);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.case-tags span {
  border: 1px solid var(--line);
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 0.75rem;
  text-transform: uppercase;
}

.case-visual {
  min-height: 530px;
  position: relative;
}

.case-image {
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 350px;
  overflow: hidden;
  position: absolute;
  width: 78%;
}

.case-image img {
  object-fit: cover;
  object-position: top;
}

.case-image span {
  background: var(--forest);
  bottom: 0.8rem;
  color: var(--ivory);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.7rem;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.before-image {
  left: 0;
  top: 0;
}

.after-image {
  bottom: 0;
  right: 0;
}

.after-image span {
  background: var(--copper);
  color: var(--forest-deep);
  right: 0.8rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.audience-card {
  background: var(--paper);
  min-height: 570px;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.audience-card h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 1.8rem;
}

.audience-card > p:not(.eyebrow) {
  color: rgba(42, 42, 42, 0.64);
}

.audience-card ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin-top: 2.8rem;
  padding: 0;
}

.audience-card li {
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  padding: 0.85rem 0;
}

.audience-card-dark {
  background: var(--forest);
  color: rgba(244, 239, 232, 0.68);
}

.audience-card-dark h2 {
  color: var(--ivory);
}

.audience-card-dark > p:not(.eyebrow) {
  color: rgba(244, 239, 232, 0.65);
}

.audience-card-dark ul {
  border-color: var(--line-light);
}

.audience-card-dark li {
  border-color: var(--line-light);
  color: var(--ivory);
}

.hub-preview {
  background:
    linear-gradient(rgba(244, 239, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 232, 0.045) 1px, transparent 1px),
    var(--forest-deep);
  background-size: 72px 72px;
  color: rgba(244, 239, 232, 0.68);
}

.hub-grid {
  align-items: center;
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 1.1fr 0.7fr;
}

.hub-grid h2 {
  margin: 0;
}

.hub-grid .button {
  margin-top: 1.6rem;
}

.cta-section {
  background: var(--forest);
  border-top: 1px solid var(--line-light);
  color: rgba(244, 239, 232, 0.68);
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.cta-grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: 1.1fr 0.8fr;
}

.cta-grid h2 {
  margin-bottom: 0;
}

.cta-grid .button-row {
  margin-top: 2rem;
}

/* Interior pages */

.page-hero {
  background: var(--forest);
  color: rgba(244, 239, 232, 0.72);
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
}

.page-hero::after {
  background-image:
    linear-gradient(rgba(244, 239, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 232, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0 0 0 52%;
  opacity: 0.8;
  position: absolute;
}

.page-hero-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: 1.15fr 0.75fr;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--ivory);
  font-size: clamp(3.5rem, 7vw, 7rem);
  margin-bottom: 1.6rem;
}

.page-hero h1 em {
  color: var(--copper);
  font-weight: 400;
}

.page-hero .page-lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 700px;
}

.page-hero-aside {
  align-self: end;
  border-left: 1px solid rgba(216, 154, 99, 0.5);
  padding-left: 2rem;
}

.page-hero-aside p {
  margin-bottom: 0.75rem;
}

.page-hero-aside span {
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-grid {
  display: grid;
  gap: clamp(4rem, 8vw, 8rem);
  grid-template-columns: 0.7fr 1.3fr;
}

.content-grid h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.5rem);
}

.content-prose {
  color: rgba(42, 42, 42, 0.66);
}

.content-prose .lead {
  color: var(--forest);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.detail-card {
  border: 1px solid var(--line);
  margin: 0 -1px -1px 0;
  min-height: 300px;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.detail-card .card-number {
  margin-bottom: 3.5rem;
}

.detail-card p {
  color: rgba(42, 42, 42, 0.62);
}

.dark-panel {
  background: var(--forest-deep);
  color: rgba(244, 239, 232, 0.66);
}

.dark-panel h2,
.dark-panel h3 {
  color: var(--ivory);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fit-column {
  min-height: 580px;
  padding: clamp(3rem, 6vw, 6rem);
}

.fit-column:first-child {
  background: var(--paper);
}

.fit-column:last-child {
  background: var(--forest);
  color: rgba(244, 239, 232, 0.65);
}

.fit-column:last-child h2 {
  color: var(--ivory);
}

.check-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1rem 1.7rem;
  position: relative;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  color: #a25d31;
  content: "—";
  left: 0;
  position: absolute;
}

.fit-column:last-child .check-list li {
  border-color: var(--line-light);
}

.fit-column:last-child .check-list li::before {
  color: var(--copper);
}

.rhythm-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.rhythm-card {
  background: rgba(244, 239, 232, 0.055);
  min-height: 330px;
  padding: clamp(2rem, 4vw, 3rem);
}

.rhythm-card > span {
  color: var(--copper);
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  margin-bottom: 5rem;
}

.rhythm-card p {
  color: rgba(244, 239, 232, 0.6);
}

.service-band {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 3rem;
  grid-template-columns: 0.72fr 1.28fr;
  padding: 4rem 0;
}

.service-band:first-child {
  border-top: 1px solid var(--line);
}

.service-band h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.service-list {
  display: grid;
  gap: 0.8rem 2rem;
  grid-template-columns: 1fr 1fr;
}

.service-list p {
  border-bottom: 1px solid var(--line);
  color: var(--forest);
  margin: 0;
  padding: 0 0 0.8rem;
}

.founder-letter {
  background: var(--forest);
  color: rgba(244, 239, 232, 0.68);
  padding: clamp(3rem, 7vw, 7rem);
  position: relative;
}

.founder-letter::before {
  color: rgba(216, 154, 99, 0.12);
  content: "K";
  font-family: var(--display);
  font-size: 21rem;
  line-height: 0.7;
  position: absolute;
  right: 3rem;
  top: 3rem;
}

.founder-letter > * {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.founder-letter h2 {
  color: var(--ivory);
}

.signature {
  color: var(--copper);
  font-family: var(--display);
  font-size: 2.2rem;
  font-style: italic;
  margin-top: 2.5rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.value-card {
  border-left: 1px solid var(--line);
  min-height: 300px;
  padding: 2rem 1.5rem;
}

.value-card:last-child {
  border-right: 1px solid var(--line);
}

.value-card .card-number {
  margin-bottom: 5rem;
}

.value-card p {
  color: rgba(42, 42, 42, 0.62);
}

.hub-card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.hub-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(2rem, 4vw, 3rem);
}

.hub-card .card-number {
  margin-bottom: 5rem;
}

.hub-card p {
  color: rgba(42, 42, 42, 0.62);
}

.hub-card .text-link {
  margin-top: auto;
}

.resource-list {
  border-top: 1px solid var(--line);
}

.resource-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 100px 1fr auto;
  padding: 1.6rem 0;
}

.resource-row > span {
  color: #a25d31;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-row h3 {
  font-size: 1.55rem;
  margin: 0;
}

.resource-row p {
  color: rgba(42, 42, 42, 0.56);
  font-size: 0.85rem;
  margin: 0;
}

.apply-shell {
  background: var(--paper);
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.apply-intro,
.apply-card {
  min-height: 650px;
  padding: clamp(3rem, 7vw, 7rem);
}

.apply-intro {
  background: var(--forest);
  color: rgba(244, 239, 232, 0.68);
}

.apply-intro h1 {
  color: var(--ivory);
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.apply-card {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apply-card h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
}

.contact-card {
  border: 1px solid var(--line);
  margin-top: 2rem;
  padding: 1.5rem;
  width: 100%;
}

.contact-card p {
  color: rgba(42, 42, 42, 0.58);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.contact-card a {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.55rem;
}

.legal-copy {
  margin: 0 auto;
  max-width: 800px;
}

.legal-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.legal-copy h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

.legal-copy p,
.legal-copy li {
  color: rgba(42, 42, 42, 0.68);
}

/* Footer */

.site-footer {
  background: var(--ivory);
  border-top: 1px solid var(--line);
  color: rgba(42, 42, 42, 0.68);
  padding: 5rem 0 2rem;
}

.site-footer a {
  color: rgba(42, 42, 42, 0.78);
}

.footer-main {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.5fr 0.55fr 0.75fr;
}

.footer-brand-lockup {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.footer-brand-lockup > img {
  height: 46px;
  width: 46px;
}

.footer-brand-lockup p {
  margin: 0;
}

.footer-name {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-brand-lockup p:last-child {
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-summary {
  font-size: 0.86rem;
  margin-top: 1.5rem;
  max-width: 470px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column a {
  font-size: 0.85rem;
  transition: color 180ms ease;
}

.footer-column a:hover {
  color: var(--terracotta, #C46A3C);
}

.footer-label {
  color: #a25d31;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.67rem;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 0.8rem 0.2rem;
  }

  .menu-toggle span {
    background: var(--forest);
    display: block;
    height: 1px;
    transition: transform 180ms ease;
    width: 26px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-panel {
    background: var(--forest);
    display: block;
    height: calc(100svh - 76px);
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 76px;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    width: 100%;
  }

  .mobile-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-panel nav {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 3rem 0;
    width: min(680px, calc(100% - 48px));
  }

  .mobile-panel nav > a:not(.mobile-apply) {
    align-items: baseline;
    border-bottom: 1px solid var(--line-light);
    color: var(--ivory);
    display: flex;
    font-family: var(--display);
    font-size: clamp(2.2rem, 8vw, 4rem);
    gap: 1.2rem;
    padding: 0.65rem 0;
  }

  .mobile-panel nav > a span {
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.58rem;
  }

  .mobile-apply {
    background: var(--copper);
    color: var(--forest-deep);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    text-transform: uppercase;
  }

  .hero-grid,
  .intro-grid,
  .founder-grid,
  .case-grid,
  .hub-grid,
  .cta-grid,
  .page-hero-grid,
  .content-grid,
  .service-band,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .growth-board {
    max-width: 620px;
  }

  .split-heading {
    align-items: start;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .founder-visual {
    max-height: 570px;
  }

  .process-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .case-grid {
    gap: 2.5rem;
  }

  .case-visual {
    min-height: 500px;
  }

  .page-hero-aside {
    max-width: 550px;
  }

  .service-band {
    gap: 1rem;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 5rem 0;
  }

  .brand-tag {
    display: none;
  }

  .hero {
    padding: 4.5rem 0;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 15vw, 5rem);
  }

  .hero-grid {
    gap: 3.5rem;
  }

  .hero .button,
  .cta-section .button {
    width: 100%;
  }

  .growth-board {
    padding: 0.9rem;
  }

  .board-focus {
    padding: 2.7rem 0.7rem;
  }

  .board-path p {
    font-size: 0.52rem;
  }

  .trust-grid {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-grid div {
    gap: 0.5rem 1.1rem;
  }

  .pillar-grid,
  .process-grid,
  .audience-grid,
  .detail-grid,
  .fit-grid,
  .rhythm-grid,
  .value-grid,
  .hub-card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .pillar-card:first-child {
    border-bottom: 1px solid rgba(31, 46, 37, 0.23);
    border-right: 0;
    min-height: auto;
    padding: 2rem 0;
  }

  .pillar-card:last-child {
    border-bottom: 0;
  }

  .card-number,
  .detail-card .card-number,
  .value-card .card-number,
  .hub-card .card-number {
    margin-bottom: 3rem;
  }

  .founder-grid {
    gap: 3.5rem;
  }

  .founder-section::after {
    display: none;
  }

  .process-step,
  .process-step:nth-child(2),
  .process-step:last-child {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    min-height: auto;
    padding: 2rem 0;
  }

  .process-step > span {
    margin-bottom: 3rem;
  }

  .case-visual {
    min-height: 390px;
  }

  .case-image {
    height: 250px;
    width: 86%;
  }

  .audience-card {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .page-hero {
    padding: 4.5rem 0;
  }

  .page-hero::after {
    inset: 45% 0 0 0;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: auto;
  }

  .fit-column {
    min-height: auto;
    padding: 3.5rem 1.5rem;
  }

  .value-card {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    min-height: auto;
    padding: 2rem 0;
  }

  .value-card:last-child {
    border-right: 0;
  }

  .resource-row {
    align-items: start;
    gap: 0.5rem;
    grid-template-columns: 1fr;
  }

  .apply-intro,
  .apply-card {
    min-height: auto;
    padding: 4rem 1.5rem;
  }

  .contact-card a {
    font-size: 1.15rem;
    overflow-wrap: anywhere;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ---- Static port additions (flat HTML build) ---- */
.case-image img, .footer-brand-lockup > img { display: block; }
.case-image img { height: 100%; inset: 0; position: absolute; width: 100%; }
.nav-phone { align-items: center; background: var(--terracotta, #C46A3C); border: 1px solid var(--terracotta, #C46A3C); border-radius: 999px; color: var(--ivory, #F4EFE8); display: inline-flex; font-size: 0.68rem; font-weight: 700; height: 34px; justify-content: center; letter-spacing: 0.08em; line-height: 1; padding: 1px 1.3em 0; text-indent: 0.08em; text-transform: uppercase; white-space: nowrap; }
.nav-phone:hover { background: #A9552D; border-color: #A9552D; color: var(--ivory, #F4EFE8); }
.mobile-panel .mobile-phone { color: rgba(244, 239, 232, 0.72); display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; margin-top: 1.4rem; text-align: center; text-transform: uppercase; }
.apply-form { display: grid; gap: 1rem; margin-top: 1.6rem; }
.apply-form label { color: var(--forest); display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 0.35rem; text-transform: uppercase; }
.apply-form input, .apply-form textarea { background: var(--paper); border: 1px solid var(--line); border-radius: 0; color: var(--charcoal); font-family: var(--sans); font-size: 0.95rem; padding: 0.75rem 0.85rem; width: 100%; }
.apply-form input:focus, .apply-form textarea:focus { border-color: var(--forest); outline: none; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }
.form-note { color: rgba(42, 42, 42, 0.6); font-size: 0.8rem; margin: 0.4rem 0 0; }
.hidden-field { display: none; }
/* ---- Phase 1 additions ---- */
.cta-contact-line { color: rgba(244, 239, 232, 0.6); font-size: 0.82rem; margin-top: 1.1rem; }
.cta-contact-line a { color: rgba(244, 239, 232, 0.85); text-decoration: underline; text-decoration-color: var(--copper, #d89a63); }
.roadmap-note { color: rgba(42,42,42,.62); font-size: 0.9rem; margin-top: 1.4rem; max-width: 560px; }


/* ================= Phase 2: Contractor Growth Library ================= */
.progress-track { background: transparent; height: 3px; left: 0; position: fixed; top: 0; width: 100%; z-index: 200; }
.progress-fill { background: var(--copper, #d89a63); height: 100%; width: 0; }
html { scroll-behavior: smooth; }

.breadcrumbs { color: rgba(244,239,232,.55); font-size: .72rem; letter-spacing: .06em; margin-bottom: 1.4rem; text-transform: uppercase; }
.breadcrumbs a { color: rgba(244,239,232,.75); }
.breadcrumbs span { margin: 0 .5rem; opacity: .5; }

.article-hero { background: var(--forest, #1F2E25); color: #F4EFE8; padding: 9.5rem 0 3.6rem; }
.article-hero h1 { color: #F4EFE8; font-family: var(--display, Georgia); font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.08; max-width: 20ch; }
.article-hero .eyebrow { margin-bottom: 1rem; }
.article-meta { color: rgba(244,239,232,.62); display: flex; flex-wrap: wrap; font-size: .8rem; gap: .4rem 1.4rem; margin-top: 1.5rem; }
.article-meta strong { color: rgba(244,239,232,.9); font-weight: 600; }

.article-shell { display: grid; gap: 3.5rem; grid-template-columns: 230px minmax(0,1fr); margin: 0 auto; max-width: 1080px; padding: 3.6rem 24px 1rem; }
.toc { align-self: start; position: sticky; top: 96px; }
.toc p { color: var(--forest, #1F2E25); font-size: .66rem; font-weight: 700; letter-spacing: .12em; margin-bottom: .9rem; text-transform: uppercase; }
.toc a { border-left: 2px solid rgba(31,46,37,.14); color: rgba(42,42,42,.66); display: block; font-size: .82rem; line-height: 1.4; padding: .38rem 0 .38rem .85rem; }
.toc a:hover { border-left-color: var(--copper, #d89a63); color: var(--forest, #1F2E25); }

.article-body { max-width: 66ch; }
.article-body > p { color: rgba(42,42,42,.85); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.3rem; }
.article-body h2 { color: var(--forest, #1F2E25); font-family: var(--display, Georgia); font-size: 1.85rem; font-weight: 500; letter-spacing: -.01em; line-height: 1.2; margin: 2.6rem 0 1rem; scroll-margin-top: 100px; }
.article-body h3 { color: var(--forest, #1F2E25); font-size: 1.05rem; font-weight: 700; margin: 1.8rem 0 .6rem; }
.article-body ul, .article-body ol { color: rgba(42,42,42,.85); line-height: 1.75; margin: 0 0 1.3rem 1.2rem; }
.article-body li { margin-bottom: .45rem; }
.article-body table { border-collapse: collapse; font-size: .9rem; margin: 1.4rem 0 1.8rem; width: 100%; }
.article-body th { background: var(--forest, #1F2E25); color: #F4EFE8; font-size: .68rem; font-weight: 700; letter-spacing: .08em; padding: .7rem .8rem; text-align: left; text-transform: uppercase; }
.article-body td { border-bottom: 1px solid rgba(31,46,37,.14); color: rgba(42,42,42,.85); padding: .75rem .8rem; vertical-align: top; }

.takeaways { background: #FBF8F3; border: 1px solid rgba(31,46,37,.14); border-left: 3px solid var(--copper, #d89a63); margin: 2rem 0 2.4rem; padding: 1.6rem 1.7rem; }
.takeaways p { color: var(--forest, #1F2E25); font-size: .68rem; font-weight: 700; letter-spacing: .12em; margin-bottom: .8rem; text-transform: uppercase; }
.takeaways ul { color: rgba(42,42,42,.85); line-height: 1.7; margin-left: 1.1rem; }
.takeaways li { margin-bottom: .5rem; }

.faq-block { margin: 1rem 0 1.6rem; }
.faq-item { border-top: 1px solid rgba(31,46,37,.14); padding: 1.3rem 0; }
.faq-item h3 { color: var(--forest, #1F2E25); font-size: 1rem; font-weight: 700; margin: 0 0 .55rem; }
.faq-item p { color: rgba(42,42,42,.82); line-height: 1.75; margin: 0; }

.author-box { background: var(--forest, #1F2E25); color: rgba(244,239,232,.82); display: grid; gap: 1.4rem; grid-template-columns: 64px 1fr; margin: 2.8rem 0 0; padding: 1.8rem; }
.author-box .author-initial { align-items: center; background: rgba(244,239,232,.08); border: 1px solid rgba(244,239,232,.25); color: #F4EFE8; display: flex; font-family: var(--display, Georgia); font-size: 1.8rem; height: 64px; justify-content: center; width: 64px; }
.author-box h3 { color: #F4EFE8; font-size: 1rem; margin-bottom: .3rem; }
.author-box p { font-size: .88rem; line-height: 1.65; }
.author-box a { color: var(--copper, #d89a63); }

.related-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 1.6rem; }
.related-card { background: #FBF8F3; border: 1px solid rgba(31,46,37,.14); display: flex; flex-direction: column; gap: .55rem; padding: 1.5rem; }
.related-card span { color: #8a8378; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { color: var(--forest, #1F2E25); font-family: var(--display, Georgia); font-size: 1.15rem; font-weight: 500; line-height: 1.3; }
.related-card a { color: var(--forest, #1F2E25); font-size: .8rem; font-weight: 700; margin-top: auto; }

.newsletter-band { background: var(--forest, #1F2E25); margin-top: 3.2rem; padding: 3.4rem 0; }
.newsletter-grid { align-items: center; display: grid; gap: 2rem; grid-template-columns: 1.1fr 1fr; }
.newsletter-grid h2 { color: #F4EFE8; font-family: var(--display, Georgia); font-size: 1.8rem; font-weight: 500; letter-spacing: -.01em; }
.newsletter-grid p.sub { color: rgba(244,239,232,.62); font-size: .9rem; margin-top: .6rem; }
.newsletter-form { display: flex; gap: .7rem; }
.newsletter-form input[type="email"] { background: rgba(244,239,232,.06); border: 1px solid rgba(244,239,232,.3); color: #F4EFE8; flex: 1; font-family: var(--sans); font-size: .92rem; padding: .8rem .9rem; }
.newsletter-form input[type="email"]::placeholder { color: rgba(244,239,232,.45); }
.newsletter-form input[type="email"]:focus { border-color: var(--copper, #d89a63); outline: none; }

.footer-newsletter { border-bottom: 1px solid var(--line, rgba(31,46,37,.14)); display: grid; gap: 1.6rem; grid-template-columns: 1.2fr 1fr; margin-bottom: 2.2rem; padding-bottom: 2.2rem; }
.footer-newsletter p.blurb { color: rgba(42,42,42,.68); font-size: .85rem; margin-top: .4rem; max-width: 46ch; }
.site-footer .newsletter-form input[type="email"] { background: var(--paper, #FBF8F3); border: 1px solid var(--line); color: var(--charcoal, #2A2A2A); }
.site-footer .newsletter-form input[type="email"]::placeholder { color: rgba(42,42,42,.45); }

.library-row { align-items: baseline; border-top: 1px solid rgba(31,46,37,.14); display: grid; gap: 1.4rem; grid-template-columns: 130px 1fr auto; padding: 1.5rem 0; }
.library-row > span { color: #8a8378; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.library-row h3 { color: var(--forest, #1F2E25); font-family: var(--display, Georgia); font-size: 1.25rem; font-weight: 500; line-height: 1.3; margin-bottom: .35rem; }
.library-row p { color: rgba(42,42,42,.7); font-size: .9rem; line-height: 1.6; }
.library-row .meta { color: #8a8378; font-size: .74rem; margin-top: .4rem; }

.cluster-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.cluster-card { background: #FBF8F3; border: 1px solid rgba(31,46,37,.14); padding: 1.8rem; }
.cluster-card h3 { color: var(--forest, #1F2E25); font-family: var(--display, Georgia); font-size: 1.3rem; font-weight: 500; margin-bottom: .6rem; }
.cluster-card p { color: rgba(42,42,42,.7); font-size: .88rem; line-height: 1.6; margin-bottom: 1rem; }
.cluster-card .cluster-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.cluster-card .cluster-tags span { border: 1px solid rgba(31,46,37,.2); color: rgba(42,42,42,.7); font-size: .62rem; font-weight: 600; letter-spacing: .05em; padding: .28rem .6rem; text-transform: uppercase; }

.download-grid, .tool-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.download-card, .tool-card { background: #FBF8F3; border: 1px solid rgba(31,46,37,.14); display: flex; flex-direction: column; gap: .5rem; padding: 1.5rem; }
.download-card span, .tool-card span { color: #8a8378; font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.download-card h3, .tool-card h3 { color: var(--forest, #1F2E25); font-size: .98rem; font-weight: 700; line-height: 1.35; }
.tool-card { background: transparent; border-style: dashed; }
.tool-card em { color: rgba(42,42,42,.55); font-size: .8rem; font-style: normal; }

.featured-guide { background: var(--forest, #1F2E25); display: grid; gap: 2.4rem; grid-template-columns: 1.2fr 1fr; padding: 2.8rem; }
.featured-guide .eyebrow { margin-bottom: .8rem; }
.featured-guide h2 { color: #F4EFE8; font-family: var(--display, Georgia); font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -.01em; line-height: 1.15; }
.featured-guide p { color: rgba(244,239,232,.68); line-height: 1.7; margin-top: 1rem; }
.featured-aside { align-self: center; border-left: 1px solid rgba(244,239,232,.2); padding-left: 2rem; }
.featured-aside p { color: rgba(244,239,232,.62); font-size: .85rem; line-height: 1.7; }
.featured-aside p strong { color: #F4EFE8; }

@media (max-width: 980px) {
  .article-shell { grid-template-columns: 1fr; }
  .toc { display: none; }
  .related-grid, .cluster-grid, .download-grid, .tool-grid { grid-template-columns: 1fr 1fr; }
  .featured-guide, .newsletter-grid, .footer-newsletter { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .related-grid, .cluster-grid, .download-grid, .tool-grid { grid-template-columns: 1fr; }
  .library-row { grid-template-columns: 1fr; gap: .5rem; }
  .article-hero { padding-top: 7.5rem; }
}

.mobile-sticky-cta { display: none; }
@media (max-width: 900px) {
  .mobile-sticky-cta {
    background: rgba(244, 239, 232, 0.96);
    border-top: 1px solid rgba(31, 46, 37, 0.14);
    bottom: 0;
    display: flex;
    gap: 0;
    left: 0;
    padding: 0.55rem 0.55rem calc(0.55rem + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 150;
  }
  .mobile-sticky-cta a { gap: 0.4rem; }
  .mobile-sticky-cta a + a { margin-left: 0.55rem; }
  .site-footer { padding-bottom: 6.5rem; }
}

@media (max-width: 900px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: 0; width: 100%; }
  .newsletter-form .button { width: 100%; }
  .footer-newsletter, .footer-newsletter > div, .footer-newsletter p { max-width: 100%; min-width: 0; }
}

.footer-main { grid-template-columns: 1.35fr 0.75fr 0.75fr 0.85fr; }
@media (max-width: 1000px) { .footer-main { grid-template-columns: 1fr 1fr; gap: 2.4rem; } }
@media (max-width: 620px) { .footer-main { grid-template-columns: 1fr; } }


/* Investment / pricing */

.invest-section { background: var(--paper); }

.invest-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }

.invest-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3.4vw, 3.2rem);
}

.invest-card-dark {
  background: var(--forest);
  border-color: rgba(216, 154, 99, 0.4);
  color: rgba(244, 239, 232, 0.68);
}

.invest-tier {
  color: #a25d31;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
}

.invest-card-dark .invest-tier { color: var(--copper-bright); }

.invest-card h3 {
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.invest-card-dark h3 { color: var(--ivory); }

.invest-price {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.7rem;
  padding-bottom: 1.7rem;
}

.invest-card-dark .invest-price { border-color: var(--line-light); }

.invest-price em {
  color: rgba(42, 42, 42, 0.5);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
  width: 100%;
}

.invest-price strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 3.9rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.invest-price span { color: rgba(42, 42, 42, 0.6); font-size: 0.86rem; }

.invest-card-dark .invest-price strong { color: var(--copper); }
.invest-card-dark .invest-price span,
.invest-card-dark .invest-price em { color: rgba(244, 239, 232, 0.55); }

.invest-who {
  color: rgba(42, 42, 42, 0.68);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.invest-card-dark .invest-who { color: rgba(244, 239, 232, 0.68); }

.invest-label {
  border-top: 1px solid var(--line);
  color: rgba(42, 42, 42, 0.45);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
  padding-top: 1.5rem;
  text-transform: uppercase;
}

.invest-card-dark .invest-label {
  border-color: var(--line-light);
  color: rgba(244, 239, 232, 0.42);
}

.invest-includes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none;
  margin: 0 0 2.2rem;
  padding: 0;
}

.invest-includes li {
  color: var(--forest);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.35rem;
  position: relative;
}

.invest-includes li::before {
  color: var(--copper);
  content: "\2014";
  left: 0;
  position: absolute;
}

.invest-card-dark .invest-includes li { color: var(--ivory); }

.invest-outcome {
  background: rgba(216, 154, 99, 0.1);
  border-left: 2px solid var(--copper);
  margin-top: auto;
  padding: 1.25rem 1.4rem;
}

.invest-outcome span {
  color: #a25d31;
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.invest-outcome p {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.32;
  margin: 0;
}

.invest-card-dark .invest-outcome { background: rgba(216, 154, 99, 0.13); }
.invest-card-dark .invest-outcome span { color: var(--copper-bright); }
.invest-card-dark .invest-outcome p { color: var(--ivory); }

.invest-card .button { margin-top: 1.6rem; }

.invest-foot {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.6rem;
  padding-top: 2.6rem;
}

.invest-foot span {
  color: #a25d31;
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.invest-foot p {
  color: rgba(42, 42, 42, 0.65);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .invest-grid { grid-template-columns: 1fr; }
  .invest-foot { gap: 1.7rem; grid-template-columns: 1fr; }
}


.faq-section .faq-block { margin-top: 0; }
.faq-columns { column-gap: 3.5rem; columns: 2; }
.faq-section .faq-item { border-color: rgba(31, 46, 37, 0.2); break-inside: avoid; padding: 1.5rem 0; }
.faq-section .faq-item h3 { font-size: 1.06rem; line-height: 1.4; }
.faq-section .faq-item p { color: rgba(42, 42, 42, 0.72); font-size: 0.92rem; }
.faq-note {
  border-top: 1px solid rgba(31, 46, 37, 0.2);
  color: rgba(42, 42, 42, 0.62);
  font-size: 0.88rem;
  margin: 1.6rem 0 0;
  padding-top: 1.8rem;
}
.faq-note a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--copper); text-underline-offset: 3px; }
.faq-note a:hover { color: #a25d31; }

@media (max-width: 900px) { .faq-columns { columns: 1; } }


/* Instant estimate configurator */

.q-hero { background: var(--forest); color: var(--ivory); padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 6vw, 5rem); }
.q-hero h1 { color: var(--ivory); font-size: clamp(2.6rem, 6vw, 4.3rem); letter-spacing: -0.035em; line-height: 1.06; margin: 0 0 1.3rem; max-width: 22ch; }
.q-hero h1 em { color: var(--copper); font-style: italic; }
.q-hero-lede { color: rgba(244, 239, 232, 0.72); font-size: clamp(1rem, 1.6vw, 1.16rem); margin: 0; max-width: 52ch; text-wrap: pretty; }
.q-hero-meta { border-top: 1px solid var(--line-light); display: flex; flex-wrap: wrap; gap: 2.6rem; margin-top: 3rem; padding-top: 2rem; }
.q-hero-meta div { max-width: 20rem; }
.q-hero-meta span { color: var(--copper); display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; margin-bottom: 0.5rem; text-transform: uppercase; }
.q-hero-meta p { color: rgba(244, 239, 232, 0.66); font-size: 0.87rem; line-height: 1.6; margin: 0; }

.q-wrap { align-items: start; display: grid; gap: 3rem; grid-template-columns: 1fr 21.5rem; }

.q-step { border-top: 1px solid var(--line); padding: 2.4rem 0; }
.q-step:first-child { border-top: 0; padding-top: 0; }
.q-step-num { color: #a25d31; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; margin: 0 0 0.7rem; text-transform: uppercase; }
.q-step h2 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 0.5rem; }
.q-step-note { color: rgba(42, 42, 42, 0.62); font-size: 0.9rem; margin: 0 0 1.6rem; max-width: 54ch; text-wrap: pretty; }

.q-options { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.q-opt { cursor: pointer; display: block; margin: 0; position: relative; }
.q-opt input { height: 100%; inset: 0; margin: 0; opacity: 0; position: absolute; width: 100%; cursor: pointer; }
.q-opt-body {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-height: 78px;
  justify-content: center;
  padding: 1.05rem 1.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.q-opt-body strong { color: var(--forest); font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; }
.q-opt-body span { color: rgba(42, 42, 42, 0.58); font-size: 0.79rem; line-height: 1.45; }
.q-opt:hover .q-opt-body { border-color: rgba(216, 154, 99, 0.55); }
.q-opt input:focus-visible + .q-opt-body { box-shadow: 0 0 0 3px rgba(216, 154, 99, 0.35); }
.q-opt input:checked + .q-opt-body { background: var(--forest); border-color: var(--forest); }
.q-opt input:checked + .q-opt-body strong { color: var(--ivory); }
.q-opt input:checked + .q-opt-body span { color: rgba(244, 239, 232, 0.6); }

.q-focus { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr)); }
.q-focus .q-opt-body { min-height: 92px; padding-right: 2.9rem; }
.q-focus .q-opt-body::after {
  border: 1px solid var(--line);
  content: "";
  height: 20px;
  position: absolute;
  right: 1.15rem;
  top: 1.15rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 20px;
}
.q-focus .q-opt input:checked + .q-opt-body::after {
  background: var(--copper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23142018' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
  border-color: var(--copper);
}
.q-focus-hidden { display: none; }

.q-panel { border: 1px solid var(--line); background: var(--forest); color: var(--ivory); position: sticky; top: 6.5rem; }
.q-panel-head { border-bottom: 1px solid var(--line-light); padding: 1.8rem 1.7rem 1.6rem; }
.q-panel-head span { color: var(--copper); display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; margin-bottom: 1rem; text-transform: uppercase; }
.q-amount { align-items: baseline; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.q-amount strong { color: var(--ivory); font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.05rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.q-amount i { color: rgba(244, 239, 232, 0.4); font-family: var(--display); font-size: 1.6rem; font-style: normal; }
.q-amount em { color: rgba(244, 239, 232, 0.55); font-size: 0.83rem; font-style: normal; width: 100%; }
.q-panel-body { padding: 1.6rem 1.7rem 1.8rem; }
.q-panel-label { color: rgba(244, 239, 232, 0.42); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; margin: 0 0 0.9rem; text-transform: uppercase; }
.q-summary { display: flex; flex-direction: column; gap: 0.55rem; list-style: none; margin: 0 0 1.5rem; padding: 0; }
.q-summary li { color: rgba(244, 239, 232, 0.86); font-size: 0.84rem; line-height: 1.45; padding-left: 1.1rem; position: relative; }
.q-summary li::before { color: var(--copper); content: "\2014"; left: 0; position: absolute; }
.q-summary-empty { color: rgba(244, 239, 232, 0.45); font-size: 0.84rem; font-style: italic; margin: 0 0 1.5rem; }
.q-panel .button { width: 100%; }
.q-panel-fine { border-top: 1px solid var(--line-light); color: rgba(244, 239, 232, 0.5); font-size: 0.76rem; line-height: 1.55; margin: 1.5rem 0 0; padding-top: 1.3rem; }

.q-director { background: var(--forest-deep); color: var(--ivory); }
.q-director-grid { align-items: center; display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: 20rem 1fr; }
.q-director-portrait { aspect-ratio: 4 / 5; display: block; height: auto; object-fit: cover; object-position: 50% 22%; width: 100%; }
.q-director h2 { color: var(--ivory); font-size: clamp(1.9rem, 3.4vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 1.2rem; }
.q-director h2 em { color: var(--copper); font-style: italic; }
.q-director p { color: rgba(244, 239, 232, 0.72); margin: 0 0 1rem; max-width: 56ch; text-wrap: pretty; }
.q-team { display: grid; gap: 0.5rem 2rem; grid-template-columns: repeat(2, 1fr); list-style: none; margin: 1.8rem 0 0; padding: 1.7rem 0 0; border-top: 1px solid var(--line-light); }
.q-team li { color: rgba(244, 239, 232, 0.8); font-size: 0.87rem; padding-left: 1.1rem; position: relative; }
.q-team li::before { color: var(--copper); content: "\2014"; left: 0; position: absolute; }

.q-always { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); margin-top: 2.4rem; }
.q-always div { background: var(--paper); border: 1px solid var(--line); padding: 1.7rem 1.6rem; }
.q-always span { color: #a25d31; display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; margin-bottom: 0.7rem; text-transform: uppercase; }
.q-always h3 { font-size: 1.1rem; line-height: 1.3; margin: 0 0 0.5rem; }
.q-always p { color: rgba(42, 42, 42, 0.66); font-size: 0.86rem; line-height: 1.6; margin: 0; }

@media (max-width: 1020px) {
  .q-wrap { grid-template-columns: 1fr; }
  .q-panel { position: static; }
  .q-director-grid { grid-template-columns: 1fr; }
  .q-director-portrait { max-width: 17rem; }
  .q-always { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .q-team { grid-template-columns: 1fr; }
  .q-hero-meta { gap: 1.6rem; }
}


/* Founder story / credentials / beliefs */

.story-pull {
  border-left: 2px solid var(--copper);
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-style: italic;
  line-height: 1.34;
  margin: 2.2rem 0 0;
  padding: 0.3rem 0 0.3rem 1.6rem;
  text-wrap: pretty;
}

.creds { background: var(--forest-deep); color: var(--ivory); }
.creds-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
  background: var(--line-light);
  border: 1px solid var(--line-light);
  margin-top: 2.6rem;
}
.creds-grid > div { background: var(--forest-deep); padding: 1.9rem 1.5rem; }
.creds-grid strong {
  color: var(--copper);
  display: block;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.7rem;
}
.creds-grid p { color: rgba(244, 239, 232, 0.66); font-size: 0.85rem; line-height: 1.55; margin: 0; }

.belief-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(3, 1fr); margin-top: 2.6rem; }
.belief-grid article { background: var(--ivory); border: 1px solid var(--line); display: flex; flex-direction: column; padding: 2rem 1.85rem; }
.belief-grid span {
  color: #a25d31;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.belief-grid h3 { font-size: clamp(1.15rem, 1.9vw, 1.35rem); line-height: 1.25; margin: 0 0 0.7rem; }
.belief-grid p { color: rgba(42, 42, 42, 0.68); font-size: 0.9rem; line-height: 1.65; margin: 0; text-wrap: pretty; }

.saw-list { display: flex; flex-direction: column; gap: 1.5rem; list-style: none; margin: 2.2rem 0 0; padding: 0; }
.saw-list li {
  border-top: 1px solid var(--line);
  color: rgba(42, 42, 42, 0.72);
  display: grid;
  gap: 0.4rem 2rem;
  grid-template-columns: 3.5rem 1fr;
  padding-top: 1.4rem;
}
.saw-list b {
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.saw-list strong { color: var(--forest); display: block; font-size: 1.02rem; margin-bottom: 0.35rem; }
.saw-list p { font-size: 0.91rem; line-height: 1.65; margin: 0; text-wrap: pretty; }

@media (max-width: 1020px) {
  .creds-grid { grid-template-columns: repeat(2, 1fr); }
  .creds-grid > div:last-child { grid-column: 1 / -1; }
  .belief-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .creds-grid { grid-template-columns: 1fr; }
  .saw-list li { grid-template-columns: 1fr; }
}
