:root {
  --forest: var(--accent, #224e3a);
  --paper: #f6f5ef;
  --ink: #142d25;
  --muted: #566159;
  --line: #d1d5cb;
  --orange: #f5a066;
  --dark: var(--forest);
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.6 var(--sans);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
:focus-visible {
  outline: 3px solid #bb5815;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
h1 {
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(32px, 3.9vw, 52px);
  line-height: 1.09;
  letter-spacing: -0.055em;
}
h3 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.shell {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.narrow {
  width: min(760px, calc(100% - 64px));
  margin-inline: auto;
}
.eyebrow,
.tiny-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow {
  margin-bottom: 20px;
}
.tiny-label {
  display: block;
  margin-bottom: 12px;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 10;
  padding: 12px;
  background: var(--orange);
  color: var(--dark);
}
.skip-link:focus {
  top: 12px;
}
.preview-notice {
  background: #e8e8df;
  text-align: center;
  padding: 5px 16px;
  font-size: 11px;
  color: #47554a;
}
.site-header {
  position: relative;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.wordmark img {
  width: 35px;
  height: 35px;
}
.header-inner nav,
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-inner nav {
  gap: 40px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-size: 14px;
}
.nav-links a:hover,
.nav-links a[aria-current] {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--forest);
  border-radius: 3px;
  background: var(--forest);
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.button-small {
  min-height: 45px;
  padding: 10px 18px;
}
.button-light {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}
.button-light:hover {
  background: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover {
  text-decoration: underline;
}
.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
}
.menu-toggle i {
  width: 20px;
  border-block: 2px solid;
  height: 10px;
}
.home-frame .site-header {
  background: var(--dark);
  color: #f7f4e9;
  border-color: #3c5045;
}
.home-frame .preview-notice {
  background: #263d32;
  color: #c8d0c7;
}
.home-frame .wordmark img {
  background: #f5f2e7;
  border-radius: 3px;
}
.home-frame .nav-actions .button {
  color: var(--dark);
  background: var(--orange);
  border-color: var(--orange);
}
.hero {
  background: var(--dark);
  color: #f7f4e9;
  padding: 38px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: 55px;
  align-items: center;
}
.hero-message {
  padding-bottom: 10px;
}
.hero .eyebrow {
  color: #d2d8cc;
  max-width: 320px;
  font-size: 10px;
  display: flex;
  gap: 11px;
  align-items: center;
}
.eyebrow-line {
  width: 24px;
  flex: 0 0 24px;
  height: 2px;
  background: var(--orange);
}
.hero h1 {
  font-family: Impact, 'Arial Narrow', var(--sans);
  font-size: clamp(68px, 6.6vw, 102px);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin-bottom: 27px;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--orange);
}
.hero-copy {
  font-size: 18px;
  line-height: 1.65;
  color: #d2d8cc;
  max-width: 440px;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px 22px;
  flex-wrap: wrap;
}
.hero-actions .button {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}
.hero-actions .button:hover {
  background: #ffc49a;
}
.quiet-note {
  font-size: 11px;
  color: #b4c3b5;
  margin: 18px 0 0;
}
.hero-visual {
  position: relative;
  padding-bottom: 63px;
  min-width: 0;
}
.field-photo {
  margin: 0 0 0 32px;
  position: relative;
  height: 590px;
}
.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  border-radius: 3px;
}
.field-photo figcaption {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  color: white;
  text-shadow: 0 1px 4px #000;
}
.day-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  background: #fbf9f1;
  color: var(--ink);
  padding: 22px 25px 15px;
  box-shadow: 0 12px 30px #06170b30;
  border-radius: 4px;
  border-top: 3px solid var(--orange);
}
.day-card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 0.055em;
  font-weight: 700;
}
.day-card-top > span:last-child {
  margin-left: auto;
  font-size: 20px;
}
.card-dot {
  width: 6px;
  height: 6px;
  background: var(--forest);
  border-radius: 50%;
}
.day-card h2 {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin: 14px 0;
}
.day-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.day-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #dce0d3;
  padding: 10px 0;
}
.day-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid #d3d9cc;
  border-radius: 50%;
  font-size: 14px;
}
.day-card strong {
  display: block;
  font-size: 12px;
}
.day-card li div > span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.illustration-note {
  font-size: 10px;
  color: var(--muted);
  margin: 12px 0 0;
}
.promise-strip {
  background: #edeae0;
  border-bottom: 1px solid #d3d6c9;
}
.promise-strip .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.promise-strip p {
  margin: 0;
  padding: 23px 0;
  font-size: 14px;
  font-weight: 700;
}
.promise-strip p + p {
  border-left: 1px solid #d3d6c9;
  padding-left: 35px;
}
.promise-strip span {
  color: #97501c;
  margin-right: 12px;
  font-size: 18px;
}
.section {
  padding: 90px 0;
}
.tour-heading {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 38px;
}
.tour-heading h2 {
  margin-bottom: 0;
}
.tour-heading > p {
  color: var(--muted);
  max-width: 390px;
  margin-bottom: 4px;
}
.scope-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 680px;
}
.workflow-explorer {
  border-top: 1px solid var(--line);
}
.workflow-controls {
  display: none;
}
.workflow-ready .workflow-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.workflow-controls button {
  min-height: 76px;
  text-align: left;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  padding: 20px 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.18s;
}
.workflow-controls button > span:first-child {
  font-size: 11px;
  margin-right: 14px;
}
.workflow-controls button > span:last-child {
  float: right;
}
.workflow-controls button[aria-pressed='true'] {
  border-bottom-color: #a24912;
  color: var(--ink);
  background: #ece8db;
}
.workflow-controls button:focus-visible {
  outline-offset: -5px;
}
.workflow-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 45px 0 20px;
}
.workflow-panel + .workflow-panel {
  border-top: 1px solid var(--line);
}
.workflow-ready .workflow-panel {
  border-top: 0;
}
.workflow-story {
  padding: 28px 0;
}
.workflow-story .eyebrow {
  color: #985026;
}
.workflow-story h3 {
  font-size: clamp(28px, 3vw, 40px);
  max-width: 420px;
  margin-bottom: 22px;
}
.workflow-story > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 420px;
}
.operator-outcome {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink) !important;
  border-top: 1px solid var(--line);
  padding-top: 21px;
  margin-top: 25px;
}
.customer-outcome {
  margin-top: 23px;
}
.outcome-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #985026;
  font-weight: 700;
}
.customer-outcome p {
  font-size: 14px;
  margin: 6px 0 0;
  max-width: 380px;
}
.job-preview {
  border-radius: 6px;
  border: 1px solid #bfc7b9;
  background: #fffefa;
  box-shadow: 8px 10px 0 #e4e6dc;
  align-self: start;
}
.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 15px 20px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mini-brand {
  background: var(--dark);
  color: #fff;
  font-size: 10px;
  padding: 5px 7px;
  font-weight: 700;
  border-radius: 2px;
}
.preview-tag {
  margin-left: auto;
  color: var(--muted);
  font-size: 9px;
}
.preview-body {
  padding: 27px;
}
.preview-body .tiny-label {
  font-size: 9px;
  color: var(--muted);
}
.preview-body h4 {
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 0 0 24px;
}
.preview-body dl {
  margin: 0;
}
.preview-body dl > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.preview-body dt {
  font-size: 12px;
  font-weight: 700;
}
.preview-body dt span {
  color: #71806d;
  font-size: 9px;
  margin-right: 12px;
}
.preview-body dd {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.preview-result {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #e9efdf;
  padding: 14px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 20px;
}
.feature-tags {
  list-style: none;
  padding: 14px 24px;
  margin: 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.feature-tags li {
  font-size: 10px;
  color: var(--muted);
}
.feature-tags li:before {
  content: '✓';
  margin-right: 6px;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 15px;
}
.tour-footer p {
  margin-bottom: 0;
}
.moats-section {
  background: #edeae0;
}
.moats-section .tour-heading {
  gap: 70px;
}
.moat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.moat-card {
  padding: 32px;
  background: #faf8ef;
  border: 1px solid #cdd0c2;
  display: flex;
  flex-direction: column;
}
.moat-card:first-child {
  background: var(--dark);
  color: #f7f4e9;
  border-color: var(--dark);
}
.moat-card-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 30px;
}
.moat-card-top .eyebrow {
  margin: 0;
  font-size: 10px;
}
.moat-number {
  font:
    36px/1 Impact,
    'Arial Narrow',
    var(--sans);
  color: #985026;
}
.moat-card:first-child .moat-number {
  color: var(--orange);
}
.moat-arrow {
  margin-left: auto;
  font-size: 24px;
}
.moat-card h3 {
  font-size: clamp(27px, 2.5vw, 35px);
  max-width: 470px;
  margin-bottom: 18px;
}
.moat-copy {
  font-size: 16px;
  color: var(--muted);
}
.moat-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 25px;
}
.moat-card li {
  font-size: 13px;
  margin-bottom: 7px;
}
.moat-card li:before {
  content: '↗';
  color: #985026;
  margin-right: 10px;
}
.moat-human {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: auto 0 0;
  font-size: 15px;
  font-weight: 700;
}
.moat-card:first-child .moat-copy {
  color: #c7d2c4;
}
.moat-card:first-child li:before {
  color: var(--orange);
}
.moat-card:first-child .moat-human {
  border-color: #5a6a58;
}
.vision-note {
  margin: 24px 0 0;
  max-width: none;
}
@media (max-width: 800px) {
  .moats-section .tour-heading {
    gap: 22px;
  }
  .moat-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .moat-card {
    padding: 25px;
  }
  .moat-card-top {
    margin-bottom: 25px;
  }
  .moat-card h3 {
    font-size: 29px;
  }
}

.intelligence-section {
  background: var(--dark);
  color: #f7f4e9;
}
.intelligence-section .eyebrow {
  color: var(--orange);
}
.intelligence-section .tour-heading > p,
.intelligence-section .scope-note {
  color: #bdcbbc;
}
.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 50px 0 32px;
  border-top: 1px solid #5a6a58;
}
.intelligence-grid article {
  padding: 30px 30px 5px 0;
}
.intelligence-grid article + article {
  border-left: 1px solid #5a6a58;
  padding-left: 30px;
}
.signal-symbol {
  font-size: 45px;
  line-height: 1;
  margin-bottom: 35px;
  color: var(--orange);
}
.intelligence-grid .tiny-label {
  font-size: 9px;
  color: #bdcbbc;
}
.intelligence-grid h3 {
  font-size: 28px;
}
.intelligence-grid article > p:last-child {
  font-size: 15px;
  color: #bdcbbc;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.feature-grid article {
  padding: 27px 24px 25px 0;
  border-bottom: 1px solid var(--line);
}
.feature-index {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 20px;
}
.feature-grid h3 {
  font-size: 19px;
}
.feature-grid p {
  color: var(--muted);
  font-size: 14px;
}
.ownership-section {
  padding: 90px 0;
  background: #f1a36a;
}
.ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 115px;
  align-items: center;
}
.ownership-grid p:not(.eyebrow) {
  max-width: 550px;
}
.ownership-grid ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.ownership-grid li {
  font-size: 12px;
  font-weight: 700;
}
.ownership-grid li:before {
  content: '↗';
  margin-right: 6px;
}
.ownership-stamp {
  font:
    clamp(74px, 7.6vw, 114px)/0.86 Impact,
    'Arial Narrow',
    var(--sans);
  letter-spacing: -0.02em;
  border: 2px solid var(--dark);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  transform: rotate(-4deg);
}
.ownership-stamp span:last-child {
  grid-column: 1 / -1;
}
.stamp-arrow {
  color: #faf1dc;
  font-family: var(--sans);
  font-size: 0.85em;
}
.cta-band {
  background: #f8f5eb;
  padding: 85px 0;
  border-bottom: 1px solid var(--line);
}
.cta-band h2 {
  max-width: 750px;
}
.cta-band p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}
.closing-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 75px;
  align-items: center;
}
.closing-grid > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cta-band .button-light {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.page-hero {
  padding: 70px 0 45px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
}
.page-lede {
  color: var(--muted);
  font-size: 19px;
}
.content-stack {
  padding-block: 25px 65px;
}
.content-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.content-section h2 {
  font-size: 28px;
}
.content-section p,
.content-section li {
  color: var(--muted);
}
.content-section li {
  margin: 10px 0;
}
.content-section blockquote {
  margin-inline: 0;
  border-left: 3px solid var(--forest);
  padding-left: 20px;
}
.faq-list {
  padding-block: 20px 80px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  min-height: 72px;
  padding: 22px 34px 22px 0;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: '+';
  position: absolute;
  right: 5px;
}
.faq-list details[open] summary:after {
  content: '−';
}
.faq-list details p {
  padding-bottom: 12px;
  color: var(--muted);
}
.form-section {
  padding-top: 30px;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}
fieldset:disabled {
  opacity: 0.75;
}
label {
  display: grid;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}
label span {
  font-weight: 400;
}
input,
select,
textarea {
  border: 1px solid #7b897d;
  border-radius: 3px;
  background: white;
  color: var(--ink);
  min-height: 50px;
  padding: 12px;
  width: 100%;
  font-size: 16px;
}
textarea {
  min-height: 160px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.trade-picker {
  min-width: 0;
}
.trade-input {
  position: relative;
  margin-top: 8px;
}
.trade-input input {
  padding-right: 48px;
}
.trade-input > button {
  position: absolute;
  right: 1px;
  top: 1px;
  bottom: 1px;
  min-width: 46px;
  min-height: 48px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 24px;
}
.trade-menu {
  position: absolute;
  z-index: 5;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  border: 1px solid var(--ink);
  background: white;
  box-shadow: 4px 4px 0 #20202015;
}
.trade-results {
  max-height: 264px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.trade-results [role='option'] {
  min-height: 44px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}
.trade-results [role='option']:hover,
.trade-results [aria-selected='true'] {
  background: var(--lime, #e8eee3);
  color: var(--ink);
}
.trade-unlisted {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 0;
  border-top: 1px solid var(--line);
  background: #f2f3ef;
  color: var(--ink);
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
}
.trade-menu [data-trade-empty] {
  margin: 0;
  padding: 16px 13px;
  font-size: 13px;
}
.trade-help {
  margin: 7px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.check-label {
  display: flex;
  align-items: flex-start;
  min-height: 44px;
  padding-block: 10px;
  gap: 12px;
}
.check-label input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 1px 0;
  flex-shrink: 0;
}
.form-privacy,
.form-unavailable,
[data-form-status] {
  font-size: 14px;
}
[data-form-status]:not(:empty) {
  margin-block: 20px;
}
.form-unavailable {
  padding: 18px;
  margin-top: 24px;
  background: #e8eee3;
  border-left: 3px solid var(--forest);
}
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}
.draft-notice {
  background: #e8eee3;
  padding: 10px 15px;
  font-size: 14px;
}
.not-found {
  padding: 100px 0;
}
.site-footer {
  background: var(--dark);
  color: #e6eadd;
  padding: 55px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 45px;
}
.footer-grid > div > a:not(.wordmark) {
  display: flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  font-size: 14px;
  text-decoration: none;
}
.footer-grid > div > a:hover {
  text-decoration: underline;
}
.footer-grid .wordmark {
  margin-bottom: 16px;
}
.footer-grid .wordmark img {
  background: #f5f2e7;
  border-radius: 3px;
}
.footer-grid p:not(.eyebrow) {
  max-width: 280px;
  font-size: 14px;
  color: #bdcbbc;
}
.footer-grid .eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid #5a6a58;
  margin-top: 35px;
  padding-top: 20px;
  display: flex;
  gap: 25px;
  justify-content: space-between;
  font-size: 11px;
  color: #bdcbbc;
}
@keyframes settle {
  from {
    translate: 0 18px;
  }
  to {
    translate: 0 0;
  }
}
@keyframes panel-in {
  from {
    translate: 12px 0;
  }
  to {
    translate: 0 0;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .is-revealed {
    animation: settle 0.6s ease-out both;
  }
  .workflow-ready .workflow-panel:not([hidden]) .job-preview {
    animation: panel-in 0.3s ease-out both;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 56px);
  }
  .hero-grid {
    gap: 30px;
  }
  .hero h1 {
    font-size: clamp(60px, 7.2vw, 82px);
  }
  .field-photo {
    height: 570px;
    margin-left: 15px;
  }
  .day-card {
    width: 285px;
    padding: 20px;
  }
  .tour-heading {
    gap: 60px;
  }
  .workflow-panel {
    gap: 45px;
  }
  .ownership-grid {
    gap: 65px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-strip p {
    font-size: 12px;
  }
  .header-inner nav,
  .nav-links {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .shell,
  .narrow {
    width: calc(100% - 36px);
  }
  .header-inner {
    min-height: 72px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .wordmark {
    font-size: 23px;
  }
  .js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-inner nav {
    display: block;
    width: 100%;
    padding: 10px 0 20px;
  }
  .js .header-inner nav {
    display: none;
  }
  .js .header-inner nav.is-open {
    display: block;
  }
  .nav-links {
    display: grid;
    gap: 0;
  }
  .nav-links a {
    min-height: 48px;
    border-bottom: 1px solid #52614f;
  }
  .nav-actions {
    margin-top: 18px;
  }
  .hero {
    padding: 35px 0 42px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .hero h1 {
    font-size: clamp(57px, 11.5vw, 85px);
    max-width: 630px;
    line-height: 1.01;
  }
  .hero-message {
    padding: 0;
  }
  .hero-copy {
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 23px;
  }
  .hero .eyebrow {
    font-size: 9px;
    max-width: 320px;
  }
  .hero-actions {
    gap: 9px 22px;
  }
  .hero-actions .button {
    min-height: 52px;
  }
  .hero-visual {
    padding-bottom: 28px;
  }
  .field-photo {
    margin: 0 0 0 24px;
    height: 390px;
  }
  .field-photo img {
    object-position: 65% 45%;
  }
  .field-photo figcaption {
    font-size: 7px;
  }
  .day-card {
    width: 240px;
    padding: 16px 18px 12px;
  }
  .day-card h2 {
    font-size: 19px;
    margin: 10px 0;
  }
  .day-card li {
    padding: 8px 0;
  }
  .day-card-top {
    font-size: 8px;
  }
  .day-card strong {
    font-size: 11px;
  }
  .day-card li div > span {
    font-size: 9px;
  }
  .day-icon {
    width: 25px;
    height: 25px;
  }
  .promise-strip .shell {
    grid-template-columns: 1fr;
  }
  .promise-strip p {
    padding: 13px 0;
    font-size: 13px;
  }
  .promise-strip p + p {
    border-left: 0;
    border-top: 1px solid #d3d6c9;
    padding-left: 0;
  }
  .section {
    padding: 58px 0;
  }
  .tour-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 27px;
  }
  .tour-heading > p {
    max-width: 550px;
  }
  .workflow-controls button {
    padding: 15px 10px;
    font-size: 12px;
    min-height: 76px;
  }
  .workflow-controls button > span:first-child {
    display: block;
    margin: 0 0 6px;
    font-size: 9px;
  }
  .workflow-controls button > span:last-child {
    display: none;
  }
  .workflow-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 25px 0 16px;
  }
  .workflow-story {
    padding: 0;
  }
  .workflow-story h3 {
    font-size: 32px;
  }
  .workflow-story > p:not(.eyebrow) {
    max-width: 550px;
    font-size: 16px;
  }
  .operator-outcome {
    margin-top: 18px;
    padding-top: 18px;
  }
  .customer-outcome {
    margin-top: 18px;
  }
  .job-preview {
    margin-right: 5px;
    box-shadow: 5px 6px 0 #e4e6dc;
  }
  .preview-toolbar {
    padding: 12px;
    gap: 10px;
    font-size: 8px;
  }
  .preview-tag {
    font-size: 8px;
  }
  .preview-body {
    padding: 20px;
  }
  .preview-body h4 {
    font-size: 23px;
  }
  .preview-body dl > div {
    gap: 10px;
  }
  .preview-body dt span {
    margin-right: 6px;
  }
  .preview-body dd {
    font-size: 11px;
  }
  .feature-tags {
    padding: 12px 20px;
    gap: 7px 12px;
  }
  .tour-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .intelligence-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 30px 0 22px;
  }
  .intelligence-grid article {
    padding: 24px 0 15px;
  }
  .intelligence-grid article + article {
    border-left: 0;
    border-top: 1px solid #5a6a58;
    padding-left: 0;
  }
  .signal-symbol {
    float: right;
    margin: 0 0 15px 20px;
    font-size: 38px;
  }
  .intelligence-grid h3 {
    font-size: 27px;
  }
  .intelligence-grid article > p:last-child {
    clear: both;
  }
  .ownership-section {
    padding: 55px 0;
    overflow: hidden;
  }
  .ownership-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .ownership-stamp {
    max-width: 280px;
    font-size: 72px;
    padding: 25px;
  }
  .ownership-grid h2 {
    max-width: 520px;
  }
  .ownership-grid ul {
    gap: 10px 20px;
  }
  .cta-band {
    padding: 55px 0;
  }
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .closing-grid > div:last-child {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
  .feature-grid article {
    padding: 22px 0;
  }
  .feature-grid h3 {
    font-size: 18px;
  }
  .page-hero {
    padding: 45px 0 25px;
  }
  .page-lede {
    font-size: 17px;
  }
  .content-section h2 {
    font-size: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 54px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .preview-body {
    padding: 16px;
  }
  .preview-toolbar {
    gap: 8px;
  }
  .preview-tag {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
