:root {
  --ink: #17332e;
  --ink-soft: #45534d;
  --forest: #174c47;
  --forest-bright: #2d6a61;
  --navy: #17413d;
  --paper: #f7f1e7;
  --paper-deep: #eee4d6;
  --white: #fffaf2;
  --gold: #b87343;
  --gold-light: #e2bd98;
  --mint: #dbe6df;
  --blue-pale: #e1e9e4;
  --line: rgba(23, 51, 46, 0.17);
  --line-light: rgba(255, 250, 242, 0.19);
  --shadow: 0 22px 58px rgba(23, 51, 46, 0.12);
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

[hidden] {
  display: none !important;
}

.icon-sprite {
  display: none;
}

.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

.site-shell {
  min-width: 0;
  overflow: clip;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 3.25rem;
  background: rgba(247, 241, 231, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
}

.brand-symbol {
  position: relative;
  width: 27px;
  height: 27px;
  display: inline-block;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.brand-symbol i:first-child {
  position: absolute;
  width: 15px;
  height: 1.5px;
  left: 5px;
  top: 12px;
  background: var(--ink);
  transform: rotate(-34deg);
  transform-origin: center;
}

.brand-symbol i:last-child {
  position: absolute;
  width: 5px;
  height: 5px;
  right: 2px;
  top: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--forest);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.65rem 1rem 0.65rem 1.2rem;
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--forest-bright);
  transform: translateY(-1px);
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.header-cta-short {
  display: none;
}

.section-pad {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 8.5rem 3.25rem;
}

.section-kicker,
.eyebrow {
  margin: 0 0 1.7rem;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-kicker span {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 22px;
  margin-right: 0.7rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.section-kicker-light {
  color: var(--gold-light);
}

.section-intro h2,
.tailored h2,
.experience h2,
.assessment h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-intro-wide {
  max-width: 920px;
  margin-bottom: 4.5rem;
}

.section-intro-wide h2 {
  max-width: 760px;
}

.section-lede {
  max-width: 780px;
  margin: 2rem 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.section-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.65fr);
  gap: 5rem;
  align-items: end;
  margin-bottom: 4.5rem;
}

.section-intro-split > p {
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.65;
}

/* Hero */

.hero {
  width: min(100%, 1440px);
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: stretch;
  background: var(--paper);
}

.hero-copy {
  align-self: center;
  padding: 5.5rem clamp(2.5rem, 4vw, 5rem) 5rem 3.25rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 6.1vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-support {
  max-width: 690px;
  margin: 2.1rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-style: italic;
  line-height: 1.3;
}

.hero-description {
  max-width: 650px;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.7rem;
  margin-top: 2.35rem;
}

.primary-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 58px;
  padding: 0.9rem 1.25rem 0.9rem 1.55rem;
  border: 0;
  border-radius: 3px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.form-submit:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.primary-button svg,
.form-submit svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
}

.text-link svg {
  width: 18px;
}

.hero-principle {
  max-width: 620px;
  margin: 2.6rem 0 0;
  padding-top: 1.2rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  margin: 1.3rem 1.3rem 1.3rem 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(0.78) sepia(0.05) contrast(0.97);
}

.hero-visual-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 35, 28, 0.04) 38%, rgba(13, 35, 28, 0.68) 100%);
}

.opportunity-map {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 250, 242, 0.96);
  border: 1px solid rgba(23, 51, 46, 0.16);
  box-shadow: 0 16px 42px rgba(23, 51, 46, 0.12);
  backdrop-filter: blur(12px);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 0.2rem 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.map-status i {
  width: 7px;
  height: 7px;
  background: var(--forest-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 102, 80, 0.12);
}

.map-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  align-items: center;
  gap: 0.8rem;
  padding-top: 0.95rem;
}

.map-row > div {
  min-width: 0;
}

.map-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--forest-bright);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-row strong {
  display: block;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  line-height: 1.25;
}

.map-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Outcomes */

.outcomes {
  position: relative;
}

.outcomes::before {
  display: none;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.outcome-card {
  min-height: 260px;
  padding: 2rem;
  background: rgba(255, 253, 248, 0.35);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.outcome-card:hover {
  background: rgba(255, 250, 242, 0.78);
}

.outcome-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest);
}

.outcome-card-top svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.6;
}

.outcome-card-top span {
  color: rgba(20, 37, 31, 0.42);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.outcome-card h3 {
  margin: 3.6rem 0 0.65rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.outcome-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Tailored */

.tailored {
  position: relative;
  width: min(calc(100% - 2.6rem), 1440px);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 0.92fr);
  align-items: center;
  gap: 4rem;
  padding: 7.5rem clamp(3rem, 6vw, 7rem);
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.tailored::before {
  display: none;
}

.tailored-content {
  position: relative;
  z-index: 1;
}

.tailored h2 {
  max-width: 760px;
}

.tailored-content > p:not(.section-kicker) {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.business-diagram {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  aspect-ratio: 1;
  justify-self: center;
  --node-size: 98px;
  --core-size: 142px;
}

.solution-ring {
  position: absolute;
  inset: 3.5%;
  border: 1px dashed rgba(226, 189, 152, 0.78);
  border-radius: 50%;
}

.solution-ring > span {
  position: absolute;
  left: 50%;
  top: -0.7rem;
  padding: 0 0.85rem;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.business-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: var(--core-size);
  height: var(--core-size);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  background: var(--forest);
  color: var(--white);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.business-core svg {
  width: 31px;
  height: 31px;
  color: var(--gold-light);
  stroke-width: 1.45;
}

.business-core strong {
  max-width: 95px;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.business-node {
  position: absolute;
  z-index: 3;
  width: var(--node-size);
  height: var(--node-size);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(184, 115, 67, 0.42);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(8, 31, 28, 0.12);
  transform: translate(-50%, -50%);
}

.business-node svg {
  width: 25px;
  height: 25px;
  color: var(--forest);
  stroke-width: 1.55;
}

.business-node span {
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1;
}

.node-goals {
  left: 50%;
  top: 17%;
}

.node-workflows {
  left: 79%;
  top: 33.5%;
}

.node-systems {
  left: 79%;
  top: 66.5%;
}

.node-team {
  left: 50%;
  top: 83%;
}

.node-information {
  left: 21%;
  top: 66.5%;
}

.node-customers {
  left: 21%;
  top: 33.5%;
}

.diagram-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.diagram-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34%;
  height: 1px;
  background: rgba(226, 189, 152, 0.74);
  transform-origin: 0 50%;
}

.diagram-line::before,
.diagram-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--forest);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.diagram-line::before {
  left: 0;
}

.diagram-line::after {
  left: 100%;
}

.diagram-line-goals {
  transform: rotate(-90deg);
}

.diagram-line-workflows {
  transform: rotate(-30deg);
}

.diagram-line-systems {
  transform: rotate(30deg);
}

.diagram-line-team {
  transform: rotate(90deg);
}

.diagram-line-information {
  transform: rotate(150deg);
}

.diagram-line-customers {
  transform: rotate(210deg);
}

/* Approach */

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 330px;
  padding: 0 2rem 2rem 0;
}

.process-number {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.process-connector {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
}

.process-connector i {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  background: var(--paper);
  border: 4px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(229, 173, 67, 0.16);
}

.process-connector span {
  position: absolute;
  left: 17px;
  right: 0;
  top: calc(50% - 0.5px);
  height: 1px;
  background: var(--line);
}

.process-grid h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.process-grid p {
  max-width: 270px;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* Experience */

.experience {
  position: relative;
  width: min(calc(100% - 2.6rem), 1440px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(4rem, 7vw, 7.5rem);
  padding-left: clamp(3rem, 6vw, 7rem);
  padding-right: clamp(3rem, 6vw, 7rem);
  overflow: hidden;
  background: var(--paper-deep);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience::after {
  display: none;
}

.experience-story,
.experience-proof {
  position: relative;
  z-index: 1;
}

.experience-label {
  display: inline-block;
  margin: 0 0 1.4rem;
  padding: 0.45rem 0.75rem;
  background: rgba(184, 115, 67, 0.08);
  border: 1px solid rgba(184, 115, 67, 0.25);
  color: #8b4f2b;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.experience .section-kicker-light {
  color: var(--forest);
}

.experience h2 {
  max-width: 650px;
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
}

.experience-copy {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.experience-note {
  max-width: 620px;
  margin: 2rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.metrics {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1.35fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metrics > div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  background: rgba(255, 250, 242, 0.28);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metrics span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.4;
}

.experience blockquote {
  position: relative;
  margin: 1.3rem 0 0;
  padding: 3.5rem 3.1rem 2.8rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.quote-mark {
  position: absolute;
  left: 2rem;
  top: 0.6rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
}

.experience blockquote > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.14rem, 1.7vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
}

.experience blockquote footer {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.experience blockquote footer strong {
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.experience blockquote footer span {
  margin-top: 0.15rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

/* Opportunities */

.opportunity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.opportunity-list article {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 1.2rem;
  align-items: start;
  min-height: 165px;
  padding: 2rem 1.5rem 2rem 0;
  border-bottom: 1px solid var(--line);
}

.opportunity-list article:nth-child(odd) {
  padding-right: 2.3rem;
  border-right: 1px solid var(--line);
}

.opportunity-list article:nth-child(even) {
  padding-left: 2.3rem;
}

.opportunity-list article > span {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.opportunity-list h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.opportunity-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.opportunity-list svg {
  width: 20px;
  color: var(--gold);
  transition: transform 180ms ease;
}

.opportunity-list article:hover svg {
  transform: translate(4px, 4px);
}

/* Assessment */

.assessment {
  width: min(calc(100% - 2.6rem), 1440px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(4rem, 7vw, 7rem);
  padding-left: clamp(3rem, 6vw, 7rem);
  padding-right: clamp(3rem, 6vw, 7rem);
  background: var(--forest);
  color: var(--white);
}

.assessment h2 {
  max-width: 600px;
  font-size: clamp(3rem, 4.7vw, 5.1rem);
}

.assessment-lede {
  max-width: 650px;
  margin: 1.7rem 0 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: 1.05rem;
  line-height: 1.75;
}

.assessment-paths {
  display: grid;
  gap: 1rem;
  margin-top: 2.2rem;
}

.assessment-paths > div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line-light);
}

.assessment-paths svg {
  width: 20px;
  color: var(--gold-light);
}

.assessment-paths p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.55;
}

.assessment-paths strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.assessment-form {
  align-self: start;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.inquiry-panel {
  min-width: 0;
  align-self: start;
}

.form-honeypot,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.inquiry-success {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-top: 3px solid var(--gold);
}

.inquiry-success-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  background: var(--mint);
  color: var(--forest);
  border-radius: 50%;
}

.inquiry-success-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.inquiry-success-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.inquiry-success h3 {
  max-width: 480px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.inquiry-success > p:last-child {
  max-width: 470px;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0.3rem 0 0;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.form-heading svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--forest);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
}

.form-grid label > span {
  font-size: 0.74rem;
  font-weight: 800;
}

.assessment-select-field {
  position: relative;
  display: grid;
  gap: 0.45rem;
}

.assessment-field-label {
  font-size: 0.74rem;
  font-weight: 800;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid .native-select,
.form-grid textarea {
  width: 100%;
  min-height: 51px;
  padding: 0.75rem 0.85rem;
  background: #fbfaf6;
  color: var(--ink);
  border: 1px solid rgba(20, 37, 31, 0.24);
  border-radius: 0;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid .native-select:focus,
.form-grid textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 75, 59, 0.12);
}

.assessment-select-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: #fbfaf6;
  color: var(--ink);
  border: 1px solid rgba(20, 37, 31, 0.24);
  border-radius: 2px;
  outline: none;
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.assessment-select-trigger[data-placeholder] {
  color: rgba(23, 51, 46, 0.58);
}

.assessment-select-trigger:hover {
  border-color: rgba(23, 76, 71, 0.55);
}

.assessment-select-trigger:focus-visible,
.assessment-select-trigger[data-state="open"] {
  background: var(--white);
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 76, 71, 0.12);
}

.assessment-select-trigger[aria-invalid="true"] {
  border-color: #9a4637;
  box-shadow: 0 0 0 3px rgba(154, 70, 55, 0.1);
}

.assessment-select-trigger [data-select-value] {
  flex: 1;
  min-width: 0;
  display: block;
  color: inherit;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
}

.assessment-select-trigger > svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--forest);
  opacity: 0.78;
  transition: transform 150ms ease;
}

.assessment-select-trigger[data-state="open"] > svg {
  transform: rotate(180deg);
}

.assessment-select-content {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 100;
  width: 100%;
  min-width: 100%;
  max-width: calc(100vw - 2rem);
  max-height: 410px;
  padding: 0.42rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(23, 51, 46, 0.22);
  border-radius: 3px;
  box-shadow: 0 18px 50px rgba(23, 51, 46, 0.18);
  scrollbar-color: rgba(23, 76, 71, 0.35) transparent;
  scrollbar-width: thin;
}

.assessment-select-content[data-state="open"] {
  animation: assessment-select-open 150ms ease-out;
}

.assessment-select-option {
  position: relative;
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0.8rem 2.8rem 0.8rem 1rem;
  color: var(--ink-soft);
  border-radius: 2px;
  outline: none;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: normal;
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.assessment-select-option + .assessment-select-option {
  margin-top: 0.2rem;
}

.assessment-select-option[data-highlighted] {
  background: rgba(219, 230, 223, 0.68);
  color: var(--ink);
}

.assessment-select-option[data-state="checked"] {
  background: rgba(184, 115, 67, 0.1);
  color: var(--ink);
  font-weight: 750;
  box-shadow: inset 3px 0 var(--gold);
}

.assessment-select-option[data-highlighted][data-state="checked"] {
  background: rgba(184, 115, 67, 0.16);
}

.assessment-select-option > span:last-child {
  display: block;
  white-space: normal;
}

.assessment-select-option [data-select-indicator] {
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--forest);
  transform: translateY(-50%);
}

.assessment-select-option [data-select-indicator] svg {
  width: 18px;
  height: 18px;
}

.assessment-select-error {
  color: #9a4637;
  font-size: 0.74rem;
  font-weight: 700;
}

@keyframes assessment-select-open {
  from {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-submit {
  width: 100%;
  margin-top: 1.4rem;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 0.8rem 0 0;
  color: rgba(20, 37, 31, 0.58);
  font-size: 0.72rem;
  text-align: center;
}

.form-error {
  margin: 0.9rem 0 0;
  color: #9a4637;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
}

.form-error a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* FAQ and close */

.faq-intro {
  margin-bottom: 3.5rem;
}

.faq-list {
  max-width: 950px;
  margin-left: auto;
}

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

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

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--forest);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details > p {
  max-width: 760px;
  margin: -0.5rem 0 1.8rem;
  padding-right: 3rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

.closing-cta {
  width: min(calc(100% - 2.6rem), 1440px);
  min-height: 520px;
  margin: 0 auto 1.3rem;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 6rem;
  align-items: center;
  padding: 6.5rem clamp(3rem, 6vw, 7rem);
  background: var(--forest);
  color: var(--white);
}

.closing-cta h2 {
  max-width: 760px;
}

.closing-cta > div:last-child > p {
  max-width: 560px;
  margin: 0 0 2rem;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.primary-button-light {
  background: var(--gold);
  color: var(--ink);
}

.primary-button-light:hover {
  background: var(--white);
}

.site-footer {
  width: min(100%, 1440px);
  min-height: 130px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 3.25rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > div {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
}

.site-footer > div a {
  border-bottom: 1px solid var(--line);
}

.footer-brand .brand-lockup {
  color: var(--ink);
}

/* Focus and motion */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    animation: reveal-up 620ms ease forwards;
  }

  .hero-copy > *:nth-child(2) { animation-delay: 70ms; }
  .hero-copy > *:nth-child(3) { animation-delay: 130ms; }
  .hero-copy > *:nth-child(4) { animation-delay: 190ms; }
  .hero-copy > *:nth-child(5) { animation-delay: 250ms; }
  .hero-copy > *:nth-child(6) { animation-delay: 310ms; }

  .hero-visual {
    opacity: 0;
    animation: reveal-image 750ms 120ms ease forwards;
  }

  @keyframes reveal-up {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes reveal-image {
    from { opacity: 0; transform: scale(0.985); }
    to { opacity: 1; transform: scale(1); }
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 2rem;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
  }

  .hero-copy {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 6vw, 5.2rem);
  }

  .section-pad {
    padding-inline: 2.5rem;
  }

  .tailored,
  .experience,
  .assessment,
  .closing-cta {
    padding-inline: 3.5rem;
  }

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

  .experience {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .metrics span {
    font-size: 0.7rem;
  }
}

@media (max-width: 920px) {
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 6rem 2.5rem 4rem;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4rem, 11vw, 6.5rem);
  }

  .hero-support,
  .hero-description {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 650px;
    margin: 0 1.3rem 1.3rem;
  }

  .section-intro-split {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .section-intro-split > p {
    max-width: 650px;
  }

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

  .tailored {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .business-diagram {
    max-width: 500px;
  }

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

  .process-grid li {
    min-height: 280px;
  }

  .process-grid li:nth-child(2) .process-connector span {
    display: none;
  }

  .experience,
  .assessment {
    grid-template-columns: 1fr;
  }

  .experience-story,
  .experience-proof,
  .assessment-copy,
  .assessment-form {
    max-width: 760px;
  }

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

  .opportunity-list article,
  .opportunity-list article:nth-child(odd),
  .opportunity-list article:nth-child(even) {
    padding: 1.8rem 0;
    border-right: 0;
  }

  .closing-cta {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

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

  .site-footer > p {
    order: 3;
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding-inline: 1rem;
    gap: 0.75rem;
  }

  .brand-lockup {
    gap: 0.55rem;
    font-size: 1.05rem;
  }

  .brand-symbol {
    width: 24px;
    height: 24px;
  }

  .brand-symbol i:first-child {
    width: 13px;
    left: 5px;
    top: 11px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0.55rem 0.75rem 0.55rem 0.9rem;
    font-size: 0.75rem;
  }

  .header-cta-full {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .section-pad {
    padding: 5.5rem 1.25rem;
  }

  .section-kicker,
  .eyebrow {
    margin-bottom: 1.35rem;
    font-size: 0.67rem;
  }

  .section-intro h2,
  .tailored h2,
  .experience h2,
  .assessment h2,
  .closing-cta h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
    line-height: 1;
  }

  .hero-copy {
    padding: 4.8rem 1.25rem 3rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
    line-height: 0.91;
  }

  .hero-support {
    margin-top: 1.7rem;
    font-size: 1.35rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
    text-align: center;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-visual {
    min-height: 570px;
    margin: 0 0.7rem 0.7rem;
  }

  .hero-visual > img {
    object-position: 61% center;
  }

  .opportunity-map {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .map-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .map-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .map-row > div {
    padding: 0.35rem 0;
  }

  .map-row strong {
    font-size: 0.88rem;
  }

  .map-arrow {
    width: 15px;
    transform: rotate(90deg);
    line-height: 0.8;
  }

  .section-intro-wide {
    margin-bottom: 3rem;
  }

  .section-lede {
    font-size: 1.35rem;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 230px;
    padding: 1.5rem;
  }

  .outcome-card h3 {
    margin-top: 2.8rem;
  }

  .tailored,
  .experience,
  .assessment,
  .closing-cta {
    width: calc(100% - 1.4rem);
    padding: 5.5rem 1.25rem;
  }

  .tailored {
    gap: 3rem;
  }

  .business-diagram {
    width: 110%;
    max-width: 460px;
    margin-left: -5%;
    --node-size: 78px;
    --core-size: 112px;
  }

  .solution-ring > span {
    top: -0.58rem;
    padding-inline: 0.55rem;
    font-size: 0.58rem;
  }

  .business-node {
    gap: 0.36rem;
  }

  .business-node svg {
    width: 21px;
    height: 21px;
  }

  .business-node span {
    font-size: 0.64rem;
  }

  .business-core svg {
    width: 26px;
    height: 26px;
  }

  .business-core strong {
    max-width: 80px;
    font-size: 1.05rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 1rem;
    padding: 0 0 2.6rem;
  }

  .process-number {
    grid-column: 1;
    grid-row: 1;
  }

  .process-connector {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 30px;
    height: 100%;
    align-items: flex-start;
    padding-top: 0.55rem;
  }

  .process-connector span,
  .process-grid li:nth-child(2) .process-connector span {
    display: block;
    left: 8px;
    right: auto;
    top: 1.55rem;
    bottom: -2.1rem;
    width: 1px;
    height: auto;
  }

  .process-grid li:last-child .process-connector span {
    display: none;
  }

  .process-grid h3,
  .process-grid p {
    grid-column: 2;
  }

  .process-grid h3 {
    grid-row: 2;
  }

  .process-grid p {
    grid-row: 3;
    margin-top: 0.75rem;
  }

  .metrics {
    grid-template-columns: 1fr;
  }

  .metrics > div {
    min-height: 125px;
  }

  .experience blockquote {
    padding: 3.3rem 1.35rem 2rem;
  }

  .quote-mark {
    left: 1rem;
  }

  .experience blockquote > p {
    font-size: 1.12rem;
  }

  .opportunity-list article {
    grid-template-columns: 34px 1fr;
    min-height: 0;
  }

  .opportunity-list article > svg {
    display: none;
  }

  .assessment-form {
    padding: 1.35rem;
  }

  .inquiry-success {
    min-height: 370px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .assessment-select-trigger {
    min-height: 60px;
    padding: 0.9rem;
    font-size: 0.92rem;
  }

  .assessment-select-content {
    max-width: calc(100vw - 2.5rem);
    max-height: 390px;
  }

  .assessment-select-option {
    min-height: 64px;
    padding: 0.9rem 2.7rem 0.9rem 0.9rem;
    font-size: 0.91rem;
  }

  .form-submit {
    min-height: 62px;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

  .faq-list summary {
    min-height: 78px;
    gap: 1rem;
    font-size: 1rem;
  }

  .faq-list details > p {
    padding-right: 1rem;
  }

  .closing-cta {
    min-height: 0;
    margin-bottom: 0.7rem;
    gap: 2rem;
  }

  .site-footer {
    min-height: 180px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1rem;
    padding: 2rem 1.25rem;
  }

  .site-footer > p {
    grid-column: auto;
    order: initial;
  }

  .site-footer > div {
    justify-self: start;
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
