:root {
  --green: #12362A;
  --green-2: #1B4A39;
  --green-line: #2A5E4A;
  --bone: #F4F3EE;
  --bone-2: #EAE9E2;
  --white: #FCFCFA;
  --ink: #17211D;
  --stone: #67706C;
  --rule: #D6D6CD;
  --rule-2: #BFC0B6;
  --pencil: #C3341F;
  --on-green: #EDF1EC;
  --on-green-2: #9DB3A7;
  --display: 'Archivo', system-ui, -apple-system, sans-serif;
  --body: 'Source Serif 4', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  background: var(--bone);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main,
nav,
header,
section,
footer,
figure,
div {
  min-width: 0;
}

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

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2.5px solid var(--pencil);
  outline-offset: 3px;
}

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

ul {
  padding: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--green);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  max-width: 19ch;
  font-size: clamp(31px, 3.9vw, 48px);
  line-height: 1.06;
}

h3 {
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.012em;
}

p {
  max-width: 70ch;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 72px);
}

.num {
  font-variant-numeric: tabular-nums;
}

.lede {
  max-width: 56ch;
  margin-top: 18px;
  color: var(--stone);
  font-size: 18.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1.5px solid var(--green);
  border-radius: 3px;
  background: var(--green);
  color: var(--on-green);
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  transition: background-color 150ms ease, color 150ms ease;
}

.btn:hover {
  background: var(--green-2);
}

.btn.quiet {
  background: var(--bone);
  color: var(--green);
}

.btn.quiet:hover {
  background: var(--bone-2);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--rule-2);
  background: var(--bone);
  color: var(--green);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.mark {
  display: inline-flex;
  flex-direction: column;
  flex: none;
  color: var(--green);
  line-height: 1;
}

.mark b {
  color: var(--green);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.mark .mark-rule {
  width: 100%;
  height: 1.5px;
  margin: 5px 0 4px;
  background: var(--green);
}

.mark .mark-sub {
  color: var(--stone);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--green);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  padding-block: 5px;
  border-bottom: 1.5px solid var(--bone);
}

.nav-links a:hover {
  border-bottom-color: var(--green);
}

.nav-cta {
  flex: none;
  padding: 11px 17px;
  border-radius: 3px;
  background: var(--green);
  color: var(--on-green);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 150ms ease;
}

.nav-cta:hover {
  background: var(--green-2);
}

.hero {
  padding: clamp(56px, 7.5vw, 100px) 0 clamp(52px, 6vw, 84px);
  border-bottom: 1px solid var(--rule);
  background: var(--bone);
  color: var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: start;
  gap: clamp(34px, 5vw, 76px);
}

.hero h1 {
  max-width: 17ch;
  color: var(--green);
  font-size: clamp(38px, 5.1vw, 66px);
  line-height: 1;
  letter-spacing: -0.032em;
}

.hero .sub {
  max-width: 54ch;
  margin-top: 26px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}

.hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero .fine {
  max-width: 56ch;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--stone);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
}

.hero .fine b {
  color: var(--green);
  font-weight: 600;
}

.receipt-wrap {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}

.receipt {
  position: relative;
  width: min(100%, 372px);
  padding: 28px 26px 24px;
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 26px 44px -30px var(--green);
  color: var(--green);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.5;
  transform: rotate(-1deg);
}

.receipt .rh {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.receipt .rh span:last-child {
  color: var(--stone);
  font-weight: 400;
}

.receipt .rsub {
  margin-top: 4px;
  color: var(--stone);
  font-size: 12px;
}

.receipt hr {
  margin: 14px 0;
  border: 0;
  border-top: 1px dashed var(--rule-2);
}

.receipt .line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
  color: var(--green);
}

.receipt .line.total {
  font-size: 14.5px;
  font-weight: 600;
}

.receipt .v {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.receipt .pct {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.receipt .pct .g {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  color: var(--green);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.receipt .pct svg {
  position: absolute;
  z-index: 2;
  top: -9px;
  right: -12px;
  width: 152px;
  height: 76px;
  overflow: visible;
  pointer-events: none;
}

.receipt .pct path {
  fill: none;
  stroke: var(--pencil);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: draw 1050ms cubic-bezier(0.4, 0.1, 0.2, 1) 500ms forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.receipt figcaption {
  margin-top: 14px;
  color: var(--stone);
  font-size: 11px;
  line-height: 1.5;
}

.receipt figcaption b {
  color: var(--pencil);
  font-weight: 600;
}

.serve {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--bone-2);
  color: var(--green);
}

.serve-in {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(16px, 3vw, 36px);
  color: var(--green);
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 600;
}

.serve-in span:first-child {
  color: var(--stone);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

section {
  padding: clamp(62px, 7.5vw, 98px) 0;
  background: var(--bone);
  color: var(--ink);
}

.sec-head {
  max-width: 66ch;
  margin-bottom: clamp(30px, 4vw, 50px);
}

.alt {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bone-2);
}

.entries {
  border-top: 2px solid var(--green);
}

.entry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(18px, 4vw, 60px);
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-2);
  background: var(--bone);
  color: var(--ink);
}

.entry h3 {
  color: var(--green);
}

.entry p {
  color: var(--ink);
  font-size: 16.5px;
}

.band {
  background: var(--green);
  color: var(--on-green);
}

.band h2,
.band h3 {
  color: var(--white);
}

.band .lede {
  color: var(--on-green-2);
}

.runs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(26px, 5vw, 72px);
  border-top: 1px solid var(--green-line);
}

.run {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--green-line);
  color: var(--on-green);
}

.run .tick {
  position: relative;
  width: 21px;
  height: 21px;
  margin-top: 5px;
  border: 1.5px solid var(--on-green-2);
  border-radius: 2px;
}

.run .tick::after {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--on-green);
  border-left: 2px solid var(--on-green);
  content: '';
  transform: rotate(-45deg);
}

.run h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.run p {
  color: var(--on-green-2);
  font-size: 15.5px;
}

.pricelist {
  overflow-x: auto;
  border-top: 2px solid var(--green);
  -webkit-overflow-scrolling: touch;
}

.prow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  align-items: start;
  gap: clamp(16px, 4vw, 56px);
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-2);
  background: var(--bone);
  color: var(--ink);
}

.stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 0 clamp(32px, 6vw, 72px);
  background: var(--bone);
  color: var(--ink);
}

.stack::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--rule-2);
  content: '';
  transform: translateX(-0.5px);
}

.stack-item {
  padding: 26px 0;
  border-top: 1px solid var(--rule-2);
}

.prow.seat {
  background: var(--bone-2);
}

.prow .name,
.stack .name {
  color: var(--green);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.12;
}

.prow .who,
.stack .who {
  display: block;
  margin-top: 8px;
  color: var(--stone);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.prow .what,
.stack .what {
  color: var(--ink);
  font-size: 16px;
}

.stack .what {
  margin-top: 14px;
}

.prow .what b,
.stack .what b {
  color: var(--green);
  font-weight: 600;
}

.terms {
  max-width: 76ch;
  margin-top: 24px;
  color: var(--stone);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.75;
}

.terms b {
  color: var(--green);
  font-weight: 600;
}

.guar {
  padding: clamp(46px, 6vw, 72px) 0;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  background: var(--bone);
  color: var(--ink);
}

.guar-in {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
}

.guar h2 {
  max-width: 24ch;
  color: var(--green);
  font-size: clamp(27px, 3.3vw, 40px);
}

.guar p {
  color: var(--stone);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.7;
}

.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 5vw, 72px);
}

.fit h3 {
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  color: var(--green);
}

.fit ul {
  list-style: none;
}

.fit li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink);
  font-size: 16px;
}

.fit .yes li::before {
  position: absolute;
  top: 21px;
  left: 2px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: '';
  transform: rotate(-45deg);
}

.fit .no li::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 13px;
  height: 2px;
  background: var(--pencil);
  content: '';
}

.work {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  align-items: start;
  gap: clamp(32px, 5vw, 76px);
}

.steps {
  margin-top: 10px;
  border-top: 2px solid var(--green);
}

.step {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-2);
  color: var(--ink);
}

.step .when {
  padding-top: 6px;
  color: var(--pencil);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step p {
  margin-top: 6px;
  color: var(--ink);
  font-size: 15.5px;
}

.founder img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule-2);
  background: var(--white);
  object-fit: cover;
  object-position: center 14%;
}

.founder .cap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.founder .cap b {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.founder .role {
  margin-top: 5px;
  color: var(--stone);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder .anchor {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
  text-align: right;
}

.final {
  padding: clamp(76px, 9vw, 124px) 0;
  background: var(--bone);
  color: var(--ink);
  text-align: left;
}

.final h2 {
  max-width: 15ch;
  color: var(--green);
  font-size: clamp(36px, 5.4vw, 66px);
}

.final p {
  max-width: 52ch;
  margin-top: 22px;
  color: var(--ink);
  font-size: 19px;
}

.final .btn {
  margin-top: 32px;
}

.site-footer {
  padding: 56px 0 40px;
  background: var(--green);
  color: var(--on-green-2);
  font-size: 14.5px;
}

.foot {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer .mark b {
  color: var(--white);
  font-size: 28px;
}

.site-footer .mark-rule {
  background: var(--on-green);
}

.site-footer .mark-sub {
  color: var(--on-green-2);
}

.foot p {
  max-width: 33ch;
  margin-top: 16px;
  color: var(--on-green-2);
  line-height: 1.6;
}

.foot h4 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.foot a {
  display: block;
  padding: 4px 0;
  color: var(--on-green-2);
}

.foot a:hover {
  color: var(--white);
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--green-line);
  color: var(--on-green-2);
  font-family: var(--mono);
  font-size: 12px;
}

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

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

  .receipt-wrap {
    justify-content: flex-start;
  }
}

@media (max-width: 880px) {
  .work {
    grid-template-columns: 1fr;
  }

  .founder {
    max-width: 500px;
  }
}

@media (max-width: 840px) {
  .foot {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .prow,
  .stack,
  .guar-in {
    grid-template-columns: 1fr;
  }

  .prow {
    gap: 10px;
  }

  .stack {
    grid-template-rows: auto;
    grid-auto-flow: row;
    gap: 0;
  }

  .stack::before {
    display: none;
  }

  .guar-in {
    gap: 18px;
  }
}

@media (max-width: 780px) {
  .entry,
  .runs,
  .fit {
    grid-template-columns: 1fr;
  }

  .entry {
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .foot,
  .step {
    grid-template-columns: 1fr;
  }

  .step {
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .nav-in {
    min-height: 68px;
    gap: 12px;
  }

  .mark b {
    font-size: 21px;
  }

  .mark .mark-sub {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero .sub,
  .final p {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .receipt {
    padding: 24px 20px 22px;
    font-size: 12.5px;
  }

  .receipt .rh {
    font-size: 10.5px;
  }

  .serve-in {
    gap: 10px 18px;
  }

}

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

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

  .receipt .pct path {
    stroke-dashoffset: 0;
  }
}

/* Interior pages */

.eyebrow,
.role-line,
.feed-link {
  color: var(--stone);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.page-hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(54px, 7vw, 92px);
  border-bottom: 1px solid var(--rule-2);
}

.page-hero h1 {
  max-width: 18ch;
  margin-top: 16px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.038em;
}

.page-hero .sub {
  max-width: 57ch;
  margin-top: 24px;
  color: var(--ink);
  font-size: 19px;
}

.package-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
}

.package-block h2 {
  margin-top: 12px;
}

.package-block .btn {
  margin-top: 28px;
}

.package-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 82px);
  border-top: 2px solid var(--green);
}

.package-columns > div {
  padding-top: 24px;
}

.ledger-list {
  margin-top: 12px;
  list-style: none;
}

.ledger-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid var(--rule-2);
  font-size: 16px;
}

.ledger-list li::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: '';
  transform: rotate(-45deg);
}

.package-start {
  margin-top: clamp(48px, 7vw, 84px);
}

.numbered-steps {
  margin: 14px 0 0;
  padding: 0;
  border-top: 2px solid var(--green);
  list-style: none;
  counter-reset: steps;
}

.numbered-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--rule-2);
  counter-increment: steps;
}

.numbered-steps li::before {
  color: var(--pencil);
  content: '0' counter(steps);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.band .package-block p:not(.eyebrow) {
  color: var(--on-green);
}

.band .package-block p + p {
  margin-top: 18px;
}

.band .eyebrow {
  color: var(--on-green-2);
}

.about-founder h2 {
  margin-top: 12px;
}

.about-founder .role-line {
  margin: 10px 0 24px;
}

.about-founder > div > p:not(.eyebrow):not(.role-line) + p {
  margin-top: 18px;
}

.trust-line {
  padding-block: 28px;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: var(--bone-2);
}

.trust-line p {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
}

.location-line h2 {
  margin-top: 14px;
}

/* Forms */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  align-items: start;
  gap: clamp(42px, 8vw, 108px);
}

.contact-form {
  position: relative;
}

.honeypot,
.giq-hp {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field + .field {
  margin-top: 20px;
}

.field label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field label span {
  color: var(--stone);
  font-weight: 400;
}

.field input,
.field select,
.field textarea,
.giq-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.giq-form input:focus {
  border-color: var(--green);
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.field input[aria-invalid='true'],
.field select[aria-invalid='true'],
.field textarea[aria-invalid='true'],
.field .error,
.giq-status.error {
  color: var(--pencil);
}

.contact-form .btn {
  margin-top: 28px;
}

.contact-aside {
  border-top: 2px solid var(--green);
}

.contact-aside > div,
.contact-aside address,
.contact-aside .reply-line {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule-2);
}

.contact-aside h2 {
  font-size: clamp(28px, 3.4vw, 38px);
}

.contact-aside p {
  margin-top: 12px;
}

.contact-aside .btn {
  margin-top: 22px;
}

.contact-aside address {
  color: var(--stone);
  font-style: normal;
}

.contact-aside address b,
.contact-aside address a {
  color: var(--green);
}

.reply-line {
  color: var(--stone);
  font-family: var(--mono);
  font-size: 12px;
}

/* Booking and utility pages */

.booking-wrap {
  padding-top: clamp(42px, 6vw, 74px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.booking-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--rule-2);
  border-radius: 2px;
}

.booking-card iframe {
  display: block;
  width: 100%;
  height: 780px;
  border: 0;
}

#booking-status {
  max-width: none;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule-2);
  color: var(--green);
  font-family: var(--display);
  font-weight: 600;
}

.simple-page,
.not-found {
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.simple-page h1,
.not-found h1 {
  max-width: 15ch;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.96;
}

.simple-page p {
  margin-top: 24px;
  font-size: 19px;
}

.simple-page .btn {
  margin-top: 30px;
}

.not-found .eyebrow {
  margin-bottom: 16px;
  color: var(--pencil);
}

.not-found nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-2);
  color: var(--green);
  font-family: var(--display);
  font-weight: 600;
}

.not-found nav a {
  border-bottom: 1px solid var(--green);
}

/* Insights and articles */

.insights-head .feed-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
}

.post-list {
  border-top: 2px solid var(--green);
}

.post-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(20px, 5vw, 70px);
  padding: 25px 0;
  border-bottom: 1px solid var(--rule-2);
}

.post-row time,
.article-meta,
.article-head .back {
  color: var(--stone);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
}

.post-row h2,
.post-row h3 {
  max-width: 30ch;
  font-size: clamp(21px, 2.4vw, 29px);
}

.post-row p {
  margin-top: 8px;
  color: var(--stone);
  font-size: 16px;
}

.post-row:hover h2,
.post-row:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.post-list.compact {
  margin-top: 24px;
}

.post-list.compact .post-row {
  padding-block: 20px;
}

.article-head {
  padding: clamp(56px, 8vw, 104px) 0 clamp(44px, 6vw, 74px);
  border-bottom: 1px solid var(--rule-2);
}

.article-head .back {
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule-2);
}

.article-head h1 {
  max-width: 20ch;
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 24px;
}

.article {
  max-width: 820px;
  padding-top: clamp(50px, 7vw, 82px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.article h2,
.article h3 {
  max-width: 28ch;
  margin-top: 2.1em;
  margin-bottom: 0.65em;
}

.article h2 {
  font-size: clamp(29px, 4vw, 42px);
}

.article h3 {
  font-size: clamp(21px, 2.5vw, 27px);
}

.article p,
.article ul,
.article ol,
.article blockquote,
.article table,
.article pre,
.article figure,
.article hr {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.article ul,
.article ol {
  padding-left: 1.35em;
}

.article li + li {
  margin-top: 0.5em;
}

.article a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article blockquote {
  padding: 20px 0;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  color: var(--green);
  font-size: 1.1em;
}

.article table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 15px;
}

.article th,
.article td {
  min-width: 140px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule-2);
  text-align: left;
  vertical-align: top;
}

.article th {
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
}

.article pre,
.article code {
  border-radius: 2px;
  background: var(--white);
  font-family: var(--mono);
  font-size: 0.84em;
}

.article code {
  padding: 0.12em 0.3em;
}

.article pre {
  max-width: 100%;
  padding: 18px;
  overflow-x: auto;
  border: 1px solid var(--rule-2);
}

.article pre code {
  padding: 0;
  background: transparent;
}

.article img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

.article figcaption {
  margin-top: 10px;
  color: var(--stone);
  font-family: var(--mono);
  font-size: 12px;
}

.article hr {
  border: 0;
  border-top: 1px solid var(--rule-2);
}

.subscribe-band {
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: var(--bone-2);
}

.subscribe-in {
  max-width: 760px;
}

.subscribe-in h2 {
  margin-top: 12px;
}

.subscribe-in p:not(.eyebrow) {
  margin-top: 12px;
}

.giq-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 22px;
}

.giq-form button {
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  border-radius: 2px;
  background: var(--green);
  color: var(--on-green);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.giq-status {
  margin-top: 12px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 12px;
}

.faq-wrap {
  max-width: 820px;
}

.faq-wrap > h2 {
  margin-bottom: 26px;
}

.faq-item {
  border-top: 1px solid var(--rule-2);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--rule-2);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--green);
  font-family: var(--display);
  font-weight: 600;
  cursor: pointer;
}

.faq-item summary span {
  color: var(--pencil);
}

.faq-a {
  padding: 0 0 20px;
}

/* Case-study layouts retain their existing content and use this translation layer. */

.case section {
  padding: clamp(52px, 7vw, 86px) 0;
  border-bottom: 1px solid var(--rule);
}

.case .max-w-7xl {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 72px);
}

.case .max-w-3xl {
  max-width: 780px;
}

.case .max-w-2xl {
  max-width: 680px;
}

.case .grid {
  display: grid;
}

.case .grid-cols-1 {
  grid-template-columns: 1fr;
}

.case .grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case .lg\:grid-cols-3 {
  grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr);
}

.case .flex,
.case .inline-flex {
  display: flex;
}

.case .inline-flex {
  display: inline-flex;
}

.case .flex-wrap {
  flex-wrap: wrap;
}

.case .items-start {
  align-items: flex-start;
}

.case .items-center {
  align-items: center;
}

.case .justify-center {
  justify-content: center;
}

.case .text-center {
  text-align: center;
}

.case .gap-2,
.case .gap-3,
.case .gap-4 {
  gap: 12px;
}

.case .gap-6,
.case .gap-8 {
  gap: 24px;
}

.case .gap-12 {
  gap: clamp(32px, 6vw, 72px);
}

.case svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.case [class*='rounded-'] {
  border-radius: 2px;
}

.case [class*='shadow'] {
  box-shadow: none;
}

.case .text-tertiary,
.case .text-gray-300,
.case .text-gray-400,
.case .text-blue-100,
.case .text-blue-200,
.case .text-tertiary\/70 {
  color: var(--stone);
}

.case .text-primary,
.case .text-secondary,
.case .text-dark {
  color: var(--green);
}

.case .text-white {
  color: var(--white);
}

.case .uppercase {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case .text-xs {
  font-size: 12px;
}

.case .text-sm {
  font-size: 14px;
}

.case .text-lg {
  font-size: 18px;
}

.case .font-semibold,
.case .font-bold,
.case .font-extrabold {
  font-weight: 700;
}

.case .italic {
  font-style: italic;
}

.case > section:first-child {
  background: var(--green);
  color: var(--on-green);
}

.case > section:first-child h1 {
  max-width: 19ch;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(38px, 5.7vw, 66px);
  line-height: 1;
}

.case > section:first-child p,
.case > section:first-child a {
  color: var(--on-green-2);
}

.case > section:first-child .max-w-3xl > * + * {
  margin-top: 14px;
}

.case > section:first-child .flex {
  gap: 10px;
  margin-top: 24px;
}

.case > section:first-child .flex span {
  padding: 5px 9px;
  border: 1px solid var(--green-line);
  border-radius: 2px;
  color: var(--on-green);
  font-family: var(--mono);
  font-size: 11px;
}

.case:not(.case-index) > section:nth-of-type(2) {
  padding-block: 32px;
  background: var(--bone-2);
}

.case:not(.case-index) > section:nth-of-type(2) .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule-2);
}

.case:not(.case-index) > section:nth-of-type(2) .grid > div {
  padding: 18px;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  text-align: left;
}

.case:not(.case-index) > section:nth-of-type(2) .grid > div:first-child {
  border-left: 1px solid var(--rule-2);
}

.case:not(.case-index) > section:nth-of-type(2) .grid > div p:first-child {
  color: var(--green);
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.case:not(.case-index) > section:nth-of-type(2) .grid > div p + p {
  margin-top: 7px;
  color: var(--stone);
  font-family: var(--mono);
  font-size: 11px;
}

.case:not(.case-index) > section:nth-of-type(2) .grid + p {
  margin: 18px auto 0;
  color: var(--stone);
  font-family: var(--mono);
  font-size: 11px;
}

.case:not(.case-index) > section:nth-of-type(3) .lg\:col-span-2 > div + div {
  margin-top: clamp(46px, 7vw, 72px);
}

.case:not(.case-index) > section:nth-of-type(3) .lg\:col-span-2 > div > p:first-child {
  margin-bottom: 10px;
  color: var(--pencil);
}

.case:not(.case-index) > section:nth-of-type(3) h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.3vw, 38px);
}

.case:not(.case-index) > section:nth-of-type(3) p + p {
  margin-top: 16px;
}

.case .space-y-8 {
  margin-top: 28px;
  border-top: 2px solid var(--green);
}

.case .space-y-8 > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-2);
}

.case [class*='border-l-'] {
  padding-left: 0;
  border-left: 0;
}

.case .space-y-8 h3 {
  margin-bottom: 7px;
}

.case .space-y-4 > div + div {
  margin-top: 13px;
}

.case .bg-offwhite {
  background: var(--bone-2);
}

.case .bg-offwhite.space-y-4 {
  padding: 18px;
  border: 1px solid var(--rule-2);
}

.case .bg-offwhite.space-y-4 > div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.case .bg-offwhite.space-y-4 > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case .sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--rule-2);
}

.case .sm\:grid-cols-2 > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-2);
}

.case .lg\:col-span-1 > div {
  position: static;
  padding: 20px 0 0;
  border: 0;
  border-top: 2px solid var(--green);
  background: transparent;
}

.case .lg\:col-span-1 h3 {
  margin-bottom: 18px;
}

.case .lg\:col-span-1 .space-y-4 > div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-2);
}

.case > section:last-child:not(.final) {
  background: var(--green);
  color: var(--on-green);
}

.case > section:last-child:not(.final) h2 {
  margin-inline: auto;
  color: var(--white);
}

.case > section:last-child:not(.final) p {
  margin: 14px auto 0;
  color: var(--on-green-2);
}

.case > section:last-child:not(.final) a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 11px 18px;
  border: 1px solid var(--on-green-2);
  border-radius: 2px;
  color: var(--on-green);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.case > section:last-child:not(.final) .mt-4 {
  margin-top: 10px;
}

.case > section:last-child:not(.final) .mt-4 a {
  min-height: 0;
  margin-top: 0;
  padding: 0;
  border: 0;
  color: var(--on-green-2);
  font-family: var(--mono);
  font-size: 11px;
}

.case-index > section:first-child {
  background: var(--bone);
  color: var(--ink);
}

.case-index > section:first-child h1 {
  color: var(--green);
}

.case-index > section:first-child p,
.case-index > section:first-child a {
  color: var(--stone);
}

.case section.final {
  padding: clamp(76px, 9vw, 124px) 0;
  border-bottom: 0;
}

.case-index > section:nth-of-type(2) .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 5vw, 64px);
  border-top: 2px solid var(--green);
}

.case-index > section:nth-of-type(2) .grid > a {
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(0, 1.45fr);
  border-bottom: 1px solid var(--rule-2);
}

.case-index .h-48 {
  height: 12rem;
  border-radius: 2px 2px 0 0;
  background: var(--green);
  color: var(--on-green);
}

.case-index .h-48 p:first-of-type {
  color: var(--on-green);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.case-index .h-48 p:last-of-type {
  color: var(--on-green-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-index > section:nth-of-type(2) .grid > a > div {
  padding: 22px 0;
}

.case-index > section:nth-of-type(2) .grid > a > div:first-child {
  padding-right: 22px;
  border-right: 1px solid var(--rule-2);
  color: var(--green);
}

.case-index > section:nth-of-type(2) .grid > a > div:last-child {
  padding-left: 22px;
}

.case-index > section:nth-of-type(2) h3 {
  margin: 8px 0;
}

.case-index > section:nth-of-type(2) .grid .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.case-index > section:nth-of-type(2) .grid .grid > div {
  padding: 0;
  border: 0;
}

.case-index > section:nth-of-type(3) .grid,
.case-index > section:nth-of-type(4) .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule-2);
}

.case-index > section:nth-of-type(3) .grid > div,
.case-index > section:nth-of-type(4) .grid > div {
  padding: 24px;
  background: var(--bone);
}

.case-index > section:nth-of-type(4) {
  background: var(--green);
}

.case-index > section:nth-of-type(4) h2,
.case-index > section:nth-of-type(4) .grid > div p:first-child {
  color: var(--white);
}

.case-index > section:nth-of-type(4) p {
  color: var(--on-green-2);
}

.case-index > section:nth-of-type(4) .grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--green-line);
}

.case-index > section:nth-of-type(4) .grid > div {
  background: var(--green);
}

@media (max-width: 880px) {
  .package-block,
  .package-columns,
  .contact-layout,
  .case .lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .case:not(.case-index) > section:nth-of-type(2) .grid,
  .case-index > section:nth-of-type(4) .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-index > section:nth-of-type(2) .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .post-row,
  .giq-form,
  .case .sm\:grid-cols-2,
  .case:not(.case-index) > section:nth-of-type(2) .grid,
  .case-index > section:nth-of-type(3) .grid,
  .case-index > section:nth-of-type(4) .grid {
    grid-template-columns: 1fr;
  }

  .post-row {
    gap: 8px;
  }

  .booking-card iframe {
    height: 980px;
  }

  .simple-page,
  .not-found {
    padding: 72px 0;
  }

  .case-index > section:nth-of-type(2) .grid > a {
    grid-template-columns: 1fr;
  }

  .case-index > section:nth-of-type(2) .grid > a > div:first-child {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .case-index > section:nth-of-type(2) .grid > a > div:last-child {
    padding-left: 0;
  }
}

/* Mobile navigation */
.menu-toggle { display: none; }
.mobile-menu[hidden] { display: none; }
.mobile-menu { display: none; }
@media (max-width: 940px) {
  .nav-in > .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 16px; border: 1px solid var(--green); border-radius: 3px; background: var(--bone); color: var(--green); font: 600 15px var(--display); cursor: pointer; }
  .mobile-menu { display: flex; flex-direction: column; max-height: calc(100dvh - 74px); overflow-y: auto; padding-bottom: 18px; border-top: 1px solid var(--rule); background: var(--bone); }
  .mobile-menu > a { display: block; min-height: 48px; padding: 13px 0; border-bottom: 1px solid var(--rule); font: 500 16px/1.4 var(--display); }
  .mobile-menu > .nav-cta { margin-top: 14px; padding: 14px 16px; text-align: center; }
}

/* Newsletter landing page and cost guides */
.giq-lp .article-head h1 { margin-top: 16px; }
.giq-card { max-width: 600px; margin-top: 34px; padding: 28px; border: 1px solid var(--rule-2); border-radius: 3px; background: var(--white); }
.giq-card .note { margin: 12px 0 18px; color: var(--stone); }
.giq-card > p:last-child { margin-top: 14px; color: var(--stone); font: 12px/1.6 var(--mono); }
.giq-proof { display: flex; flex-wrap: wrap; gap: 18px 30px; padding: 24px 0; border-bottom: 1px solid var(--rule-2); font: 12px/1.7 var(--mono); }
.giq-cols { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 30px; padding: 54px 0; }
.giq-cols h4 { padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--rule-2); font-size: 21px; }
.giq-recent { padding: 20px 0 80px; }
.giq-recent ul { margin-top: 28px; border-top: 2px solid var(--green); list-style: none; }
.giq-recent li { padding: 22px 0; border-bottom: 1px solid var(--rule-2); font: 600 21px/1.4 var(--display); }
.giq-recent li span { display: block; margin-top: 8px; color: var(--stone); font: 17.5px/1.62 var(--body); }
.cost-guide .article-head p { margin-top: 24px; }
.cost-guide section > .article { padding-top: 0; padding-bottom: 0; }
.cost-guide .article h2:first-of-type { margin-top: 16px; }
.impact-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; margin-top: 28px; border-top: 2px solid var(--green); }
.stat { padding: 22px 0; border-bottom: 1px solid var(--rule-2); }
.stat .n { color: var(--green); font: 500 clamp(23px,3vw,32px)/1.2 var(--mono); margin: 10px 0; }
.stat .flag, .stat .src, .calc label, .calc .ck, .calc .cnote { color: var(--stone); font: 12px/1.6 var(--mono); }
.stat .k { font-family: var(--display); }
.calc { margin-top: 32px; padding: clamp(18px,3vw,30px); border: 1px solid var(--rule-2); border-radius: 3px; background: var(--white); }
.calc h3 { margin-top: 0; }
.calc label { display: block; margin-bottom: 8px; }
.calc select { width: 100%; min-height: 48px; padding: 12px; border: 1px solid var(--rule-2); border-radius: 2px; background: var(--bone); color: var(--ink); font: 16px var(--body); }
.calc-out { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.calc-card { padding-block: 18px; border-top: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2); }
.calc .cn { margin: 10px 0; color: var(--green); font: 500 clamp(18px,2.5vw,24px)/1.25 var(--mono); }
.calc-bars { margin-top: 28px; }
.calc-bar-row { display: grid; grid-template-columns: 120px minmax(0,1fr); align-items: center; gap: 14px; margin-top: 12px; }
.calc-bar-row .bl { color: var(--stone); font: 11px/1.4 var(--mono); }
.calc-bar { min-width: 58px; padding: 5px 8px; background: var(--green); color: var(--on-green); font: 12px/1.4 var(--mono); text-align: right; border-radius: 2px; }
.calc-take { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--rule-2); }
.cite-box code { display: block; overflow-wrap: anywhere; }
@media (max-width: 680px) {
  .giq-cols, .impact-grid, .calc-out { grid-template-columns: 1fr; }
  .calc-bar-row { grid-template-columns: 85px minmax(0,1fr); gap: 8px; }
}
