:root {
  --paper: #f4efe4;
  --paper-bright: #fbf8f0;
  --paper-shadow: #e7dfd0;
  --ink: #19313c;
  --ink-soft: #334b55;
  --slate: #78909a;
  --slate-deep: #324d5a;
  --slate-dark: #213b47;
  --terracotta: #c85a35;
  --terracotta-dark: #9f4227;
  --terracotta-light: #e1744b;
  --sand: #d6c29a;
  --rule: rgba(25, 49, 60, 0.36);
  --rule-light: rgba(244, 239, 228, 0.3);
  --font-display: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: 1360px;
  --gutter: clamp(24px, 5vw, 76px);
  --shadow-paper: 0 18px 40px rgba(17, 39, 49, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

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

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(31, 52, 60, 0.18) 0 0.45px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(31, 52, 60, 0.14) 0 0.4px, transparent 0.75px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: multiply;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.paper-section {
  position: relative;
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(25, 49, 60, 0.014) 1px, transparent 1px),
    linear-gradient(rgba(25, 49, 60, 0.014) 1px, transparent 1px);
  background-size: 36px 36px;
}

.slate-section {
  position: relative;
  color: var(--ink);
  background-color: var(--slate);
  background-image:
    linear-gradient(90deg, rgba(25, 49, 60, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(25, 49, 60, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.slate-deep-section {
  position: relative;
  color: var(--paper-bright);
  background-color: var(--slate-deep);
  background-image:
    linear-gradient(90deg, rgba(244, 239, 228, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(244, 239, 228, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid var(--terracotta);
  border-radius: 5px;
  color: #fffaf2;
  background: var(--terracotta);
  box-shadow: 0 5px 0 var(--terracotta-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  background: #b94d2d;
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--terracotta-dark);
}

.button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--terracotta-dark);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button-small {
  min-height: 50px;
  padding: 12px 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.text-link svg {
  width: 29px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 150ms ease;
}

.text-link:hover svg {
  transform: translateX(5px);
}

.text-link-accent {
  color: var(--terracotta-dark);
  font-size: 18px;
}

/* Header and brand */

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
}

.header-inner {
  display: grid;
  height: 116px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  width: clamp(210px, 22vw, 278px);
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.brand-wordmark {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 16px;
  font-weight: 500;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  text-decoration: none;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 170ms ease;
}

.desktop-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.nav-toggle,
.mobile-nav {
  display: none;
}

/* Hero */

.hero {
  min-height: 940px;
  padding-top: 150px;
  overflow: hidden;
}

.hero::after,
.about::after,
.site-footer::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 27px;
  background: var(--slate);
  clip-path: polygon(0 68%, 4% 49%, 9% 61%, 14% 44%, 20% 58%, 26% 45%, 33% 62%, 39% 48%, 46% 59%, 53% 43%, 60% 57%, 67% 46%, 74% 60%, 81% 45%, 88% 58%, 94% 42%, 100% 61%, 100% 100%, 0 100%);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: 745px;
  align-items: center;
  grid-template-columns: minmax(530px, 1.08fr) minmax(500px, 0.92fr);
  gap: clamp(30px, 4vw, 62px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}

.hero h1 {
  max-width: 10.9ch;
  font-size: clamp(68px, 6vw, 92px);
}

.hero-intro {
  max-width: 610px;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 36px;
  gap: 28px;
}

.local-note {
  display: flex;
  align-items: center;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 15px;
  gap: 10px;
}

.local-note svg,
.location-list svg {
  width: 23px;
  flex: 0 0 auto;
  fill: var(--sand);
  stroke: var(--paper-bright);
  stroke-width: 1.5;
}

.hero-diagram {
  position: relative;
  min-height: 630px;
  align-self: center;
}

.hero-diagram::before {
  position: absolute;
  right: 0;
  bottom: 68px;
  left: 2%;
  height: 1px;
  background: var(--rule);
  content: "";
}

.draft-line {
  position: absolute;
  border-top: 1px dashed rgba(25, 49, 60, 0.26);
  border-bottom: 1px dashed rgba(25, 49, 60, 0.2);
}

.draft-line::before,
.draft-line::after {
  position: absolute;
  width: 1px;
  height: 32px;
  background: rgba(25, 49, 60, 0.26);
  content: "";
}

.draft-line::before {
  top: -16px;
  left: 0;
}

.draft-line::after {
  top: -16px;
  right: 0;
}

.draft-line-one {
  right: 4%;
  bottom: 25px;
  left: 10%;
  height: 27px;
}

.draft-line-two {
  top: 108px;
  right: 0;
  width: 330px;
  height: 22px;
  transform: rotate(-8deg);
}

.task-stack {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: 92px;
  display: flex;
  width: min(320px, 48%);
  flex-direction: column;
  border: 1px solid var(--rule);
  background: rgba(244, 239, 228, 0.66);
  box-shadow: 9px 12px 0 rgba(25, 49, 60, 0.035);
  transform: rotate(-5deg);
}

.task-stack::before,
.task-stack::after {
  position: absolute;
  border: 1px dashed rgba(25, 49, 60, 0.24);
  content: "";
}

.task-stack::before {
  inset: -15px 13px 10px -13px;
}

.task-stack::after {
  inset: 12px -15px -15px 9px;
}

.task-stack span {
  position: relative;
  z-index: 1;
  padding: 11px 17px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.02em;
  text-align: center;
}

.task-stack span:last-child {
  border-bottom: 0;
}

.lift-arrow {
  position: absolute;
  z-index: 3;
  top: 100px;
  right: -10px;
  width: 50px;
  height: 150px;
  border-right: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-13deg);
}

.lift-arrow::before,
.lift-arrow::after {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
  transform-origin: right;
}

.lift-arrow::before {
  transform: rotate(45deg);
}

.lift-arrow::after {
  transform: rotate(-45deg);
}

.lever {
  position: absolute;
  z-index: 4;
}

.lever-arm {
  position: absolute;
  height: 44px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 5px 10px 10px 5px;
  background: linear-gradient(180deg, var(--terracotta-light), var(--terracotta));
  box-shadow:
    inset 0 -7px rgba(113, 39, 19, 0.16),
    0 9px 8px rgba(25, 49, 60, 0.2);
  transform-origin: left center;
}

.lever-pivot {
  position: absolute;
  width: 88px;
  height: 138px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 7px 7px 4px 4px;
  background: linear-gradient(130deg, var(--terracotta-light), var(--terracotta));
  clip-path: polygon(50% 0, 100% 100%, 61% 100%, 50% 73%, 36% 100%, 0 100%);
  filter: drop-shadow(0 8px 5px rgba(25, 49, 60, 0.18));
}

.lever-pivot span {
  position: absolute;
  top: 29px;
  left: 28px;
  width: 27px;
  height: 27px;
  border: 4px solid var(--terracotta-dark);
  border-radius: 50%;
  background: var(--terracotta-light);
}

.lever-hero {
  bottom: 68px;
  left: 6%;
  width: 82%;
  height: 330px;
}

.lever-hero .lever-arm {
  top: 169px;
  left: 67px;
  width: 100%;
  transform: rotate(-23deg);
}

.lever-hero .lever-pivot {
  bottom: 0;
  left: 24px;
}

/* Problem */

.problem {
  padding-top: 115px;
  background-color: var(--paper);
}

.problem-layout {
  display: grid;
  min-height: 640px;
  align-items: center;
  grid-template-columns: minmax(520px, 0.98fr) minmax(570px, 1.02fr);
  gap: clamp(35px, 4vw, 62px);
}

.problem h2,
.process h2,
.about h2,
.contact h2,
.reels h2 {
  font-size: clamp(54px, 5.2vw, 80px);
}

.process h2 {
  font-size: clamp(54px, 5vw, 74px);
}

.problem-copy > p:not(.accent-statement) {
  max-width: 610px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 20px;
}

.accent-statement {
  max-width: 490px;
  margin-top: 25px;
  color: var(--terracotta-dark);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.42;
}

.task-sort {
  position: relative;
  min-height: 585px;
}

.task-sort::before {
  position: absolute;
  inset: 45px -20px 30px;
  border-top: 1px dashed rgba(25, 49, 60, 0.2);
  border-bottom: 1px dashed rgba(25, 49, 60, 0.2);
  content: "";
}

.task-pile {
  position: absolute;
  z-index: 2;
  top: 52px;
  left: 0;
  width: 43%;
}

.task-pile span {
  display: block;
  width: 235px;
  margin-top: -2px;
  padding: 8px 13px;
  border: 1px solid var(--rule);
  background: var(--paper-shadow);
  box-shadow: 3px 5px 5px rgba(25, 49, 60, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.task-pile .task-piece-1 { transform: translateX(32px) rotate(-7deg); }
.task-pile .task-piece-2 { transform: translateX(76px) rotate(5deg); }
.task-pile .task-piece-3 { transform: translateX(104px) rotate(-2deg); }
.task-pile .task-piece-4 { transform: translateX(57px) rotate(3deg); }
.task-pile .task-piece-5 { transform: translateX(18px) rotate(-5deg); }
.task-pile .task-piece-6 { transform: translateX(43px) rotate(4deg); }
.task-pile .task-piece-7 { transform: translateX(11px) rotate(-3deg); }
.task-pile .task-piece-8 { transform: rotate(2deg); }
.task-pile .task-piece-9 { transform: translateX(65px) rotate(-4deg); }

.lever-sort {
  z-index: 3;
  bottom: 25px;
  left: 36%;
  width: 42%;
  height: 300px;
}

.lever-sort .lever-arm {
  top: 168px;
  left: 62px;
  width: 124%;
  height: 35px;
  transform: rotate(-25deg);
}

.lever-sort .lever-pivot {
  bottom: 0;
  left: 23px;
  width: 72px;
  height: 115px;
}

.lever-sort .lever-pivot span {
  top: 23px;
  left: 23px;
  width: 22px;
  height: 22px;
}

.task-rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 27px;
  width: 36%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--rule);
  list-style: none;
}

.task-rail::before,
.task-rail::after {
  position: absolute;
  top: -17px;
  bottom: -17px;
  width: 1px;
  background: var(--rule);
  content: "";
}

.task-rail::before {
  left: 13px;
}

.task-rail::after {
  right: 13px;
}

.task-rail li {
  padding: 9px 15px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
}

.task-rail li:last-child {
  border-bottom: 0;
}

.audience-band {
  position: relative;
  margin-top: 70px;
  padding: 64px 0 72px;
  background: var(--slate);
}

.audience-band::before {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  height: 26px;
  background: var(--slate);
  clip-path: polygon(0 64%, 5% 43%, 12% 62%, 18% 48%, 25% 65%, 32% 46%, 39% 60%, 45% 42%, 52% 65%, 60% 48%, 67% 62%, 74% 44%, 82% 61%, 90% 41%, 100% 63%, 100% 100%, 0 100%);
  content: "";
}

.audience-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 180px 1fr;
  gap: 46px;
}

.audience-mark {
  position: relative;
  min-height: 170px;
  border-right: 1px solid rgba(25, 49, 60, 0.65);
  background-image:
    linear-gradient(rgba(25, 49, 60, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 49, 60, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
}

.audience-mark::before,
.audience-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  transform: translate(-65%, -50%);
}

.audience-mark::before {
  width: 86px;
  height: 86px;
}

.audience-mark::after {
  width: 54px;
  height: 54px;
}

.audience-mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105px;
  height: 1px;
  background: var(--ink);
  transform-origin: 35%;
}

.audience-mark span:nth-child(1) {
  transform: translate(-63%, -50%);
}

.audience-mark span:nth-child(2) {
  transform: translate(-63%, -50%) rotate(60deg);
}

.audience-mark span:nth-child(3) {
  transform: translate(-63%, -50%) rotate(-60deg);
}

.audience-list > div {
  display: grid;
  padding: 12px 0 14px;
  border-bottom: 1px solid rgba(25, 49, 60, 0.44);
  grid-template-columns: 210px 1fr;
}

.audience-list > div:first-child {
  padding-top: 2px;
}

.audience-list dt {
  color: var(--terracotta-dark);
  font-size: 23px;
  font-weight: 650;
}

.audience-list dd {
  align-self: center;
  font-size: 17px;
}

/* Process */

.process {
  padding: 105px 0 85px;
  overflow: hidden;
}

.process-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
}

.process-heading > div:first-child > p {
  max-width: 720px;
  margin-top: 25px;
  font-size: 20px;
}

.impact-sketch {
  position: relative;
  min-height: 200px;
  border-top: 1px dashed rgba(25, 49, 60, 0.3);
  border-bottom: 1px dashed rgba(25, 49, 60, 0.3);
}

.impact-lever {
  position: absolute;
  top: 70px;
  left: 20px;
  width: 190px;
  height: 10px;
  border: 1px solid var(--ink);
  transform: rotate(-18deg);
}

.impact-lever::before {
  position: absolute;
  bottom: -50px;
  left: 50px;
  width: 58px;
  height: 55px;
  border: 1px solid var(--ink);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
}

.impact-sketch p {
  position: absolute;
  right: 0;
  bottom: 29px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: italic;
  text-align: right;
}

.impact-sketch strong {
  margin-top: 9px;
  font-size: 17px;
  font-weight: 500;
}

.process-bench {
  position: relative;
  display: grid;
  margin-top: 76px;
  border: 1px solid rgba(25, 49, 60, 0.52);
  background: var(--paper);
  box-shadow: 0 15px 23px rgba(25, 49, 60, 0.16);
  grid-template-columns: repeat(3, 1fr);
}

.bench-beam {
  position: absolute;
  z-index: 3;
  top: -10px;
  right: -2px;
  left: -2px;
  height: 19px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 3px;
  background: var(--terracotta);
  box-shadow: inset 0 -5px rgba(113, 39, 19, 0.17), 0 5px 7px rgba(25, 49, 60, 0.2);
}

.process-step {
  position: relative;
  min-height: 360px;
  padding: 66px 42px 44px;
  border-right: 1px solid var(--rule);
  overflow: visible;
}

.process-step:last-child {
  border-right: 0;
}

.bench-pivot {
  position: absolute;
  z-index: 4;
  top: -39px;
  left: 50%;
  width: 70px;
  height: 92px;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
}

.bench-pivot::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 17px;
  width: 36px;
  height: 36px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.bench-pivot::after {
  position: absolute;
  top: 24px;
  left: 0;
  width: 70px;
  height: 68px;
  border: 2px solid var(--terracotta-dark);
  background: var(--terracotta);
  clip-path: polygon(50% 0, 100% 100%, 66% 100%, 50% 51%, 34% 100%, 0 100%);
  content: "";
}

.bench-pivot span {
  z-index: 3;
  position: absolute;
  top: 8px;
  left: 25px;
  width: 20px;
  height: 20px;
  border: 3px solid var(--terracotta-dark);
  border-radius: 50%;
  background: var(--terracotta-light);
}

.step-number {
  width: max-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule);
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 650;
}

.process-step h3 {
  margin-top: 18px;
  font-size: clamp(26px, 2.2vw, 34px);
  letter-spacing: -0.035em;
}

.process-step > p:last-of-type {
  position: relative;
  z-index: 2;
  max-width: 285px;
  margin-top: 19px;
  font-size: 15px;
  line-height: 1.6;
}

.step-sketch {
  position: absolute;
  right: 17px;
  bottom: 21px;
  width: 128px;
  height: 128px;
  opacity: 0.46;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.step-sketch .sketch-fill {
  fill: rgba(200, 90, 53, 0.22);
}

.process-close {
  width: max-content;
  max-width: 100%;
  margin: 44px auto 0;
  padding: 11px 50px;
  border-top: 1px solid rgba(25, 49, 60, 0.5);
  border-bottom: 1px solid rgba(25, 49, 60, 0.5);
  font-size: 16px;
  text-align: center;
}

/* Reels */

.reels {
  padding: 110px 0;
}

.reels-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(480px, 0.95fr) minmax(440px, 1.05fr);
  gap: clamp(40px, 4.5vw, 70px);
}

.reels-copy > p:not(.accent-statement) {
  max-width: 560px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 16px;
}

.reels-copy > .text-link {
  margin-top: 22px;
}

.reels-details {
  padding: 34px 38px;
  border: 1px solid var(--rule);
  background: var(--paper-bright);
  box-shadow: var(--shadow-paper);
}

.reel-ingredients {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reel-ingredients li {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed var(--rule);
  gap: 14px;
}

.reel-ingredients li:first-child {
  padding-top: 0;
}

.reel-ingredients li:last-child {
  border-bottom: 0;
}

.reel-ingredients svg {
  width: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
  fill: none;
  stroke: var(--terracotta-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.reel-ingredients p {
  font-size: 15px;
  line-height: 1.5;
}

.reels-inputs {
  max-width: 46ch;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.reels-note {
  margin-top: 10px;
  color: var(--slate);
  font-size: 13px;
}

/* About */

.about {
  min-height: 930px;
  padding: 115px 0 120px;
  overflow: hidden;
}

.about::after {
  background: var(--slate-deep);
}

.about-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(520px, 0.95fr) minmax(560px, 1.05fr);
  gap: clamp(40px, 4.5vw, 70px);
}

.about-copy {
  padding-left: 45px;
  border-left: 1px solid var(--rule);
}

.about-copy > p {
  max-width: 630px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 16px;
}

.about blockquote {
  position: relative;
  max-width: 485px;
  margin-top: 27px;
  padding: 16px 25px 16px 61px;
  background: rgba(214, 194, 154, 0.37);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.about blockquote > span {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 28px;
  width: 7px;
  background: var(--terracotta);
  transform: rotate(10deg);
}

.location-list {
  max-width: 560px;
  margin: 22px 0 22px;
  padding: 0;
  list-style: none;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  gap: 12px;
}

.location-list p {
  font-size: 13px;
  line-height: 1.45;
}

.local-map {
  position: relative;
  min-height: 690px;
}

.map-place {
  position: absolute;
  width: 56%;
  height: 70%;
  overflow: hidden;
}

.map-place-cedar {
  top: 0;
  left: 0;
}

.map-place-morgan {
  right: 0;
  bottom: 0;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(72deg, transparent 44%, rgba(25, 49, 60, 0.48) 44.3%, transparent 44.9%),
    linear-gradient(9deg, transparent 62%, rgba(25, 49, 60, 0.48) 62.3%, transparent 62.9%),
    repeating-linear-gradient(90deg, transparent 0 41px, rgba(25, 49, 60, 0.26) 42px, transparent 43px 78px),
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(25, 49, 60, 0.26) 55px, transparent 56px 94px);
  transform: rotate(-4deg) scale(1.1);
}

.map-grid::before,
.map-grid::after {
  position: absolute;
  border: 1px dashed var(--ink);
  border-radius: 45% 55% 60% 40%;
  content: "";
  opacity: 0.55;
}

.map-grid::before {
  inset: 18% 35% 48% 10%;
}

.map-grid::after {
  inset: 55% 7% 10% 47%;
}

.map-place-morgan .map-grid {
  transform: rotate(6deg) scale(1.1);
}

.map-lever {
  position: absolute;
  z-index: 2;
  top: 35%;
  left: 39%;
  width: 115px;
  height: 210px;
  transform: translate(-50%, -50%);
}

.map-lever-arm {
  position: absolute;
  top: 0;
  left: 47px;
  width: 22px;
  height: 160px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 12px 12px 3px 3px;
  background: var(--terracotta);
  box-shadow: inset -5px 0 rgba(113, 39, 19, 0.14), 4px 6px 6px rgba(25, 49, 60, 0.15);
  transform: rotate(21deg);
  transform-origin: bottom;
}

.map-lever-arm::before {
  position: absolute;
  top: -13px;
  left: -11px;
  width: 38px;
  height: 38px;
  border: 8px solid var(--terracotta);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 2px var(--terracotta-dark);
  content: "";
}

.map-lever-pivot {
  position: absolute;
  bottom: 0;
  left: 29px;
  width: 78px;
  height: 105px;
  border: 2px solid var(--terracotta-dark);
  background: var(--terracotta);
  clip-path: polygon(50% 0, 100% 100%, 66% 100%, 50% 58%, 34% 100%, 0 100%);
}

.map-place p {
  position: absolute;
  z-index: 3;
  top: 54%;
  left: 53%;
  font-family: var(--font-mono);
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.map-place-morgan p {
  transform: rotate(3deg);
}

.map-connector {
  position: absolute;
  z-index: 1;
  top: 43%;
  right: 30%;
  left: 29%;
  height: 130px;
  border-top: 2px dashed rgba(25, 49, 60, 0.55);
  border-radius: 50%;
  transform: rotate(12deg);
}

.team-band {
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px dashed var(--rule);
}

.team-heading {
  font-size: clamp(30px, 2.6vw, 38px);
  letter-spacing: -0.03em;
}

.team-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 54px);
}

.team-card {
  padding: 30px 34px;
  border: 1px solid var(--rule);
  background: var(--paper-bright);
  box-shadow: var(--shadow-paper);
}

.team-card h4 {
  font-size: clamp(22px, 1.9vw, 26px);
  letter-spacing: -0.03em;
}

.team-card > p:not(.team-location) {
  max-width: 46ch;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.team-location {
  margin-top: 16px;
  color: var(--terracotta-dark);
  font-family: var(--font-mono);
  font-size: 13px;
}

.proof-layout {
  margin-top: 50px;
}

.proof-panel {
  max-width: 800px;
  padding: 38px 44px;
  background: rgba(214, 194, 154, 0.37);
}

.proof-panel h3 {
  max-width: 20ch;
  font-size: clamp(26px, 2.3vw, 32px);
  letter-spacing: -0.03em;
}

.proof-panel > p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.proof-panel > .text-link {
  margin-top: 22px;
}

/* Contact */

.contact {
  padding: 96px 0 95px;
  overflow: hidden;
}

.contact-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 5.5vw, 84px);
}

.contact-copy h2 {
  max-width: 10ch;
  color: var(--paper-bright);
}

.contact-copy > p {
  max-width: 580px;
  margin-top: 29px;
  color: rgba(251, 248, 240, 0.88);
  font-size: 20px;
}

.contact-lever {
  position: relative;
  height: 230px;
  margin-top: 45px;
  border-bottom: 1px solid var(--rule-light);
}

.contact-lever::before,
.contact-lever::after {
  position: absolute;
  border: 1px solid var(--rule-light);
  border-radius: 50%;
  content: "";
}

.contact-lever::before {
  bottom: 25px;
  left: 25px;
  width: 150px;
  height: 150px;
}

.contact-lever::after {
  bottom: 59px;
  left: 59px;
  width: 82px;
  height: 82px;
}

.contact-lever-arm {
  position: absolute;
  z-index: 2;
  right: 50px;
  bottom: 23px;
  width: 390px;
  height: 20px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 4px;
  background: var(--terracotta);
  box-shadow: 0 7px 8px rgba(6, 17, 21, 0.24);
  transform: rotate(8deg);
  transform-origin: right;
}

.contact-lever-pivot {
  position: absolute;
  z-index: 3;
  right: 23px;
  bottom: 0;
  width: 78px;
  height: 100px;
  border: 2px solid var(--terracotta-dark);
  background: var(--terracotta);
  clip-path: polygon(50% 0, 100% 100%, 66% 100%, 50% 55%, 34% 100%, 0 100%);
}

.form-sheet {
  position: relative;
  min-height: 690px;
  padding: 72px 48px 45px;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: var(--shadow-paper);
}

.form-sheet::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  background: var(--paper-bright);
  clip-path: polygon(0 0, 5% 50%, 11% 23%, 18% 62%, 25% 25%, 32% 55%, 39% 20%, 46% 59%, 53% 28%, 61% 60%, 68% 26%, 75% 56%, 82% 18%, 90% 54%, 96% 25%, 100% 0, 100% 100%, 0 100%);
  content: "";
  transform: translateY(18px);
}

.form-beam {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: -36px;
  left: 0;
  height: 20px;
  border: 2px solid var(--terracotta-dark);
  border-radius: 2px;
  background: var(--terracotta);
  box-shadow: inset 0 -5px rgba(113, 39, 19, 0.17), 0 5px 7px rgba(25, 49, 60, 0.2);
}

.form-beam span {
  position: absolute;
  top: 50%;
  right: -22px;
  width: 45px;
  height: 45px;
  border: 10px solid var(--terracotta);
  border-radius: 50%;
  background: var(--slate-deep);
  box-shadow: 0 0 0 2px var(--terracotta-dark);
  transform: translateY(-50%);
}

.field {
  position: relative;
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 650;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1.45;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.field input,
.field select {
  height: 43px;
  padding: 6px 1px;
}

.field select {
  cursor: pointer;
}

.field textarea {
  min-height: 98px;
  padding: 9px 1px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 2px 0 var(--terracotta);
}

.field [aria-invalid="true"] {
  border-color: #a22b24;
  box-shadow: 0 2px 0 #a22b24;
}

.field-error {
  min-height: 16px;
  margin-top: 3px;
  color: #8d2820;
  font-size: 12px;
  line-height: 1.3;
}

.form-status {
  min-height: 0;
  color: #8d2820;
  font-size: 14px;
  font-weight: 600;
}

.form-status:not(:empty) {
  margin-bottom: 16px;
  padding: 10px 12px;
  border-left: 3px solid #a22b24;
  background: rgba(162, 43, 36, 0.08);
}

.form-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  text-align: center;
}

.honeypot {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  position: relative;
  z-index: 1;
  padding: 90px 28px 40px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 25px;
  place-items: center;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-size: 30px;
}

.form-success h3 {
  font-size: 55px;
}

.form-success > p:not(.success-mark) {
  max-width: 420px;
  margin: 20px auto 28px;
  color: var(--ink-soft);
}

.discovery-stage[hidden],
.discovery-close[hidden] {
  display: none;
}

.discovery-stage > p,
.discovery-close p {
  max-width: 420px;
  margin: 20px auto 28px;
  color: var(--ink-soft);
}

.discovery-stage form {
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
}

.discovery-close {
  outline: 0;
}

.discovery-skip {
  display: block;
  margin: 16px auto 0;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.discovery-skip:hover,
.discovery-skip:focus-visible {
  color: var(--ink);
}

/* Footer */

.site-footer {
  position: relative;
  padding: 62px 0 54px;
}

.site-footer::before {
  top: -25px;
  bottom: auto;
  background: var(--paper);
  transform: rotate(180deg);
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 50px;
}

.footer-wordmark {
  width: clamp(230px, 24vw, 310px);
}

.footer-grid > div > p {
  margin-top: 8px;
  font-size: 14px;
}

.footer-locations {
  color: var(--ink-soft);
}

.footer-locations span {
  margin-inline: 7px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 15px;
}

/* Motion */

.has-reveal [data-reveal] {
  transform: translateY(18px);
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.has-reveal [data-reveal].is-visible {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(410px, 0.9fr) minmax(460px, 1.1fr);
    gap: 25px;
  }

  .problem-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }

  .task-pile span {
    width: 195px;
  }

  .about-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }

  .reels-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }

  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 960px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    height: 92px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: rgba(244, 239, 228, 0.86);
    cursor: pointer;
    place-content: center;
    gap: 7px;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 82px;
    right: var(--gutter);
    left: var(--gutter);
    display: grid;
    padding: 8px 22px;
    border: 1px solid var(--rule);
    background: var(--paper-bright);
    box-shadow: var(--shadow-paper);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(25, 49, 60, 0.18);
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
    color: var(--terracotta-dark);
  }

  .hero {
    min-height: 1060px;
    padding-top: 120px;
  }

  .hero-grid {
    min-height: auto;
    align-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(64px, 10vw, 88px);
  }

  .hero-intro {
    max-width: 650px;
  }

  .hero-diagram {
    width: min(720px, 100%);
    min-height: 500px;
    margin: -20px auto 0;
  }

  .lever-hero {
    width: 76%;
    height: 260px;
  }

  .lever-hero .lever-arm {
    top: 139px;
  }

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

  .problem-copy {
    max-width: 760px;
  }

  .task-sort {
    min-height: 540px;
  }

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

  .impact-sketch {
    display: none;
  }

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

  .process-step {
    min-height: 260px;
    padding: 48px 38px 35px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step:not(:first-of-type) .bench-pivot {
    display: none;
  }

  .step-sketch {
    right: 50px;
    bottom: 45px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 760px;
  }

  .reels-layout {
    grid-template-columns: 1fr;
  }

  .reels-copy {
    max-width: 760px;
  }

  .local-map {
    min-height: 640px;
  }

  .team-band {
    margin-top: 60px;
    padding-top: 45px;
  }

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

  .proof-panel {
    padding: 30px 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: 11ch;
  }

  .contact-lever {
    display: none;
  }

  .form-sheet {
    width: min(680px, 100%);
    margin-inline: auto;
  }

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

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 22px;
  }

  .wordmark {
    width: clamp(176px, 54vw, 220px);
  }

  .hero {
    min-height: 965px;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.5vw, 66px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
    gap: 20px;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .local-note {
    align-items: flex-start;
    margin-top: 28px;
    line-height: 1.4;
  }

  .hero-diagram {
    min-height: 370px;
    margin-top: 8px;
  }

  .task-stack {
    right: 0;
    bottom: 54px;
    width: 48%;
  }

  .task-stack span {
    padding: 6px 5px;
    font-size: 8px;
  }

  .lever-hero {
    bottom: 33px;
    left: 0;
    width: 78%;
    height: 200px;
  }

  .lever-hero .lever-arm {
    top: 98px;
    left: 51px;
    height: 28px;
    transform: rotate(-24deg);
  }

  .lever-hero .lever-pivot {
    left: 15px;
    width: 58px;
    height: 88px;
  }

  .lever-hero .lever-pivot span {
    top: 18px;
    left: 17px;
    width: 19px;
    height: 19px;
    border-width: 3px;
  }

  .lift-arrow {
    top: 54px;
    right: -5px;
    height: 105px;
  }

  .hero-diagram::before {
    bottom: 33px;
  }

  .problem {
    padding-top: 80px;
  }

  .problem h2,
  .process h2,
  .about h2,
  .contact h2 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .problem-copy > p:not(.accent-statement),
  .process-heading > div:first-child > p,
  .contact-copy > p {
    font-size: 17px;
  }

  .accent-statement {
    font-size: 20px;
  }

  .task-sort {
    min-height: 460px;
    overflow: hidden;
  }

  .task-pile {
    top: 45px;
    left: -35px;
    transform: scale(0.78);
    transform-origin: top left;
  }

  .task-rail {
    right: -6px;
    width: 42%;
  }

  .task-rail li {
    padding: 7px 3px;
    font-size: 8px;
  }

  .lever-sort {
    left: 29%;
    width: 40%;
    transform: scale(0.72);
    transform-origin: bottom left;
  }

  .audience-band {
    margin-top: 30px;
    padding: 45px 0 50px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .audience-mark {
    display: none;
  }

  .audience-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .audience-list dt {
    font-size: 20px;
  }

  .audience-list dd {
    font-size: 14px;
  }

  .process {
    padding: 78px 0 65px;
  }

  .process-bench {
    margin-top: 55px;
  }

  .process-step {
    min-height: 315px;
    padding: 51px 26px 35px;
  }

  .process-step > p:last-of-type {
    padding-right: 50px;
  }

  .step-sketch {
    right: 6px;
    bottom: 18px;
    width: 105px;
    opacity: 0.3;
  }

  .process-close {
    padding: 11px 17px;
    font-size: 13px;
  }

  .about {
    padding: 80px 0 90px;
  }

  .about-copy {
    padding-left: 20px;
  }

  .about-copy > p {
    font-size: 15px;
  }

  .about blockquote {
    padding-right: 12px;
    font-size: 19px;
  }

  .location-list p {
    font-size: 12px;
  }

  .local-map {
    min-height: 710px;
  }

  .map-place {
    width: 90%;
    height: 48%;
  }

  .map-place-cedar {
    left: -3%;
  }

  .map-place-morgan {
    right: -3%;
  }

  .map-connector {
    top: 45%;
    right: 27%;
    left: 25%;
    transform: rotate(53deg);
  }

  .map-lever {
    transform: translate(-50%, -50%) scale(0.78);
  }

  .map-place p {
    font-size: 14px;
  }

  .contact {
    padding: 78px 0 70px;
  }

  .contact-layout {
    gap: 45px;
  }

  .form-sheet {
    min-height: 660px;
    padding: 65px 23px 38px;
  }

  .form-beam {
    right: -14px;
  }

  .form-beam span {
    right: -15px;
    width: 34px;
    height: 34px;
    border-width: 7px;
  }

  .site-footer {
    padding: 50px 0 45px;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid .button {
    width: 100%;
  }
}

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

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