/* Peppermodern v3 — static port of Scott's design system.
   Base reset below replaces Tailwind preflight from the original Next build. */
h1,h2,h3,h4,h5,h6{margin:0;font-size:inherit;font-weight:inherit}
p,figure,blockquote,dl,dd{margin:0}
ul,ol{margin:0;padding:0;list-style:none}
img,svg,video{display:block;max-width:100%}
a{text-decoration:none}
button{background:none;border:0;padding:0;cursor:pointer;color:inherit;text-align:inherit}
input,textarea,select{border:0;background:none;color:inherit;padding:0;margin:0}
textarea{resize:vertical}
summary{list-style:none;cursor:pointer}
summary::-webkit-details-marker{display:none}
hr{border:0;border-top:1px solid var(--rule)}
fieldset{border:0;padding:0;margin:0}

:root {
  --paper: #f3efe5;
  --paper-deep: #e7e0d1;
  --ink: #171a1c;
  --blue: #1558d6;
  --blue-dark: #0d3e9d;
  --blue-pale: #dbe5f7;
  --rule: #c8c0b1;
  --muted: #68665f;
  --white: #fffdf8;
  --page: min(100% - 104px, 1496px);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 20;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(21, 88, 214, 0.15);
  pointer-events: none;
}

body::before {
  left: 52px;
}

body::after {
  right: 52px;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.prototype-note {
  min-height: 32px;
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  min-height: 104px;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 390px 1fr 200px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  background: rgba(243, 239, 229, 0.97);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid var(--blue);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--blue);
}

.brand-mark::before {
  width: 2px;
  top: -8px;
  bottom: -8px;
  left: 16px;
}

.brand-mark::after {
  height: 2px;
  left: -8px;
  right: -8px;
  top: 16px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  align-self: stretch;
  display: flex;
  justify-content: center;
}

.desktop-nav a {
  min-width: 102px;
  padding: 0 15px;
  display: grid;
  place-items: center;
  position: relative;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 24px;
  left: 15px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue);
  background: rgba(21, 88, 214, 0.05);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  min-height: 46px;
  width: 174px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.header-cta:hover {
  background: var(--paper);
  color: var(--blue);
}

.mobile-menu {
  display: none;
}

.blueprint-grid {
  position: relative;
  isolation: isolate;
}

.blueprint-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  border-left: 1px solid rgba(21, 88, 214, 0.08);
  border-right: 1px solid rgba(21, 88, 214, 0.08);
}

.hero {
  width: var(--page);
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(330px, 4fr);
  border-bottom: 1px solid var(--ink);
}

.hero-copy {
  min-width: 0;
  padding: 62px 60px 52px 0;
  position: relative;
  border-right: 1px solid var(--rule);
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 3px;
  background: var(--blue);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 930px;
  margin: 34px 0 0;
  font-size: clamp(58px, 6.1vw, 94px);
  font-weight: 700;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

h1 span {
  display: block;
  color: var(--blue);
}

.hero-intro {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: 19px;
  letter-spacing: -0.015em;
  line-height: 1.52;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 52px;
  min-width: 184px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease,
    border-color 160ms ease;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-outline {
  background: transparent;
}

.button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.hero-footnote {
  max-width: 610px;
  margin: 25px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: uppercase;
}

.drawing-id {
  position: absolute;
  top: 62px;
  right: 20px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.coordination-panel {
  min-width: 0;
  padding: 62px 0 0 40px;
  overflow: hidden;
}

.panel-meta {
  margin-bottom: 38px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.panel-meta span:last-child {
  color: var(--muted);
}

.schedule-drawing {
  height: 326px;
  position: relative;
  border-top: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
}

.schedule-drawing::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 102px;
  left: 22px;
  border-top: 1px solid rgba(21, 88, 214, 0.35);
  border-bottom: 1px solid rgba(21, 88, 214, 0.35);
}

.schedule-axis {
  position: absolute;
  top: 0;
  bottom: 70px;
  width: 1px;
  background: rgba(21, 88, 214, 0.28);
}

.axis-one {
  left: 21%;
}

.axis-two {
  left: 41%;
}

.axis-three {
  left: 61%;
}

.axis-four {
  left: 81%;
}

.schedule-bar {
  height: 38px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  border: 1px solid var(--blue);
  background: var(--paper);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bar-one {
  top: 42px;
  left: 22px;
  width: 58%;
}

.bar-two {
  top: 100px;
  left: 21%;
  width: 68%;
}

.bar-three {
  top: 158px;
  left: 41%;
  width: 59%;
  background: var(--blue);
  color: var(--white);
}

.dimension-line {
  height: 23px;
  position: absolute;
  right: 24px;
  bottom: 49px;
  left: 22px;
  border-top: 1px solid var(--blue);
  border-right: 1px solid var(--blue);
  border-left: 1px solid var(--blue);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
}

.panel-caption {
  margin: 11px 26px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.panel-caption span,
.panel-caption strong {
  display: block;
}

.panel-caption span {
  margin-bottom: 6px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.panel-caption strong {
  font-size: 13px;
}

.buyer-strip {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
}

.buyer-strip > div {
  min-height: 174px;
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  transition: background-color 180ms ease, color 180ms ease;
}

.buyer-strip > div:last-child {
  border-right: 0;
}

.buyer-strip > div:hover {
  background: var(--blue);
  color: var(--white);
}

.buyer-strip span {
  display: block;
  margin-bottom: 29px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.buyer-strip > div:hover span {
  color: var(--white);
}

.buyer-strip strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.buyer-strip p {
  max-width: 330px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.buyer-strip > div:hover p {
  color: rgba(255, 253, 248, 0.8);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 108px 0;
  border-bottom: 1px solid var(--ink);
}

.section-heading {
  max-width: 940px;
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(420px, 1.6fr) minmax(
      260px,
      0.75fr
    );
  gap: 38px;
  align-items: start;
}

.section-heading h2,
.about-title h2,
.request-intro h2 {
  margin: -9px 0 0;
  font-size: clamp(44px, 4.6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.057em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.capability-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.capability-card {
  min-height: 270px;
  padding: 30px;
  position: relative;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: background-color 180ms ease, color 180ms ease;
}

.capability-card:hover {
  background: var(--blue);
  color: var(--white);
}

.capability-card > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.capability-card:hover > span {
  color: var(--white);
}

.capability-card h3 {
  max-width: 320px;
  margin: 48px 0 14px;
  font-size: 27px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.capability-card p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-card:hover p {
  color: rgba(255, 253, 248, 0.82);
}

.capability-card small {
  position: absolute;
  right: 30px;
  bottom: 22px;
  left: 30px;
  padding-top: 12px;
  border-top: 1px dashed var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.capability-card:hover small {
  border-color: rgba(255, 253, 248, 0.48);
  color: rgba(255, 253, 248, 0.74);
}

.section-markets {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 74px;
}

.markets-copy {
  padding-right: 46px;
  border-right: 1px solid var(--rule);
}

.markets-copy h2 {
  margin: 26px 0 0;
  font-size: clamp(48px, 5vw, 82px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.markets-copy > p:nth-of-type(2) {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.verification-note {
  max-width: 480px;
  margin-top: 56px;
  padding: 22px;
  border: 1px dashed var(--blue);
  background: rgba(21, 88, 214, 0.04);
}

.verification-note span,
.verification-note strong {
  display: block;
}

.verification-note span {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verification-note strong {
  font-size: 14px;
}

.market-list {
  border-top: 1px solid var(--ink);
}

.market-list > div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 56px 1fr 180px;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  transition: background-color 160ms ease, color 160ms ease;
}

.market-list > div:hover {
  background: var(--blue);
  color: var(--white);
}

.market-list span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.market-list > div:hover span {
  color: var(--white);
}

.market-list strong {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.market-list small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-list > div:hover small {
  color: rgba(255, 253, 248, 0.75);
}

.projects-heading {
  max-width: 1120px;
}

.project-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-placeholder {
  padding: 18px;
  border: 1px dashed var(--blue);
  position: relative;
}

.project-coordinate {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.project-frame {
  aspect-ratio: 1.35;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--blue);
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-frame::before,
.project-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(21, 88, 214, 0.45);
  transform: translate(-50%, -50%) rotate(-33deg);
}

.project-frame::before {
  width: 80%;
  height: 1px;
}

.project-frame::after {
  width: 1px;
  height: 100%;
}

.project-frame span {
  z-index: 1;
  padding: 8px 11px;
  border: 1px solid var(--blue);
  background: var(--paper);
}

.project-placeholder h3 {
  margin: 26px 0 8px;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.project-placeholder p {
  min-height: 62px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-label::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.proof-register {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.proof-register > div {
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof-register span,
.proof-register strong,
.proof-register small {
  display: block;
}

.proof-register span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-register strong {
  margin-top: 17px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.proof-register small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.section-process {
  display: grid;
  grid-template-columns: minmax(320px, 4fr) minmax(0, 8fr);
  gap: 72px;
}

.process-heading {
  display: block;
  position: sticky;
  top: 32px;
  align-self: start;
}

.process-heading h2 {
  margin-top: 28px;
}

.process-heading > p:last-child {
  max-width: 420px;
  margin-top: 28px;
}

.process-list {
  border-top: 1px solid var(--ink);
}

.process-list article {
  min-height: 150px;
  padding: 26px 18px;
  display: grid;
  grid-template-columns: 70px 1fr 210px 32px;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--rule);
  transition: background-color 180ms ease, color 180ms ease;
}

.process-list article:hover {
  background: var(--blue);
  color: var(--white);
}

.process-number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list article:hover .process-number {
  color: var(--white);
}

.process-list h3 {
  margin: -5px 0 9px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process-list small {
  padding-top: 3px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.process-list article:hover p,
.process-list article:hover small {
  color: rgba(255, 253, 248, 0.8);
}

.process-arrow {
  color: var(--blue);
  font-size: 18px;
  transition: transform 180ms ease;
}

.process-list article:hover .process-arrow {
  color: var(--white);
  transform: translateX(4px);
}

.section-about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 74px;
}

.about-title {
  padding-right: 46px;
  border-right: 1px solid var(--rule);
}

.about-title h2 {
  margin-top: 30px;
}

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

.about-copy > p {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.48;
  letter-spacing: -0.025em;
}

.about-copy > p:nth-child(n + 2) {
  color: var(--muted);
  font-size: 16px;
}

.residential-route {
  margin-top: 46px;
  padding: 24px 26px;
  border: 1px dashed var(--blue);
}

.residential-route span,
.residential-route strong {
  display: block;
}

.residential-route span {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.residential-route strong {
  font-size: 15px;
}

.request-section {
  width: var(--page);
  margin: 0 auto;
  padding: 108px 0;
  display: grid;
  grid-template-columns: minmax(360px, 5fr) minmax(0, 7fr);
  gap: 72px;
  border-bottom: 1px solid var(--ink);
}

.request-intro h2 {
  margin-top: 30px;
}

.request-intro > p:nth-of-type(2) {
  max-width: 530px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 16px;
}

.estimating-callout {
  max-width: 470px;
  margin-top: 52px;
  padding: 22px;
  border: 1px solid var(--ink);
}

.estimating-callout span,
.estimating-callout strong {
  display: block;
}

.estimating-callout span {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bid-form {
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.form-field {
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: inset 4px 0 0 var(--blue);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #85827b;
}

.form-field input[type="file"] {
  padding: 9px;
  font-size: 12px;
}

.form-field input[type="file"]::file-selector-button {
  min-height: 30px;
  margin-right: 12px;
  padding: 0 12px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: var(--paper);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-submit {
  grid-column: 1 / -1;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit button {
  min-height: 52px;
  min-width: 214px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--blue);
  border-radius: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.form-submit button:hover {
  background: var(--white);
  color: var(--blue);
}

.form-submit p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-transform: uppercase;
}

.site-footer {
  min-height: 240px;
  padding: 55px 52px;
  display: grid;
  grid-template-columns: 360px 1fr 320px auto;
  gap: 50px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

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

.footer-brand small {
  color: rgba(255, 253, 248, 0.58);
}

.site-footer > p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 253, 248, 0.64);
  font-size: 13px;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer > div a {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer > div a:hover {
  color: #7ea6f5;
}

.site-footer > span {
  color: rgba(255, 253, 248, 0.46);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 1220px) {
  :root {
    --page: min(100% - 64px, 1156px);
  }

  body::before {
    left: 32px;
  }

  body::after {
    right: 32px;
  }

  .prototype-note,
  .site-header,
  .site-footer {
    padding-right: 32px;
    padding-left: 32px;
  }

  .site-header {
    grid-template-columns: 330px 1fr 178px;
  }

  .desktop-nav a {
    min-width: 0;
    padding-right: 11px;
    padding-left: 11px;
    font-size: 10px;
  }

  .header-cta {
    width: 164px;
  }

  .hero {
    grid-template-columns: minmax(0, 7fr) minmax(310px, 5fr);
  }

  .hero-copy {
    padding-right: 44px;
  }

  .section-heading {
    max-width: 100%;
  }

  .site-footer {
    grid-template-columns: 300px 1fr 170px;
  }

  .site-footer > span {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 88px;
    grid-template-columns: 1fr auto;
  }

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

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    min-width: 88px;
    min-height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--blue);
    color: var(--blue);
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu[open] summary {
    background: var(--blue);
    color: var(--white);
  }

  .mobile-menu nav {
    width: min(360px, calc(100vw - 64px));
    padding: 12px;
    display: grid;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 8px 8px 0 var(--blue);
  }

  .mobile-menu nav a {
    min-height: 45px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--rule);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    background: var(--blue);
    color: var(--white);
  }

  .hero,
  .section-markets,
  .section-process,
  .section-about,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .markets-copy,
  .about-title {
    padding-right: 0;
    border-right: 0;
  }

  .coordination-panel {
    padding: 45px 0 12px;
    border-top: 1px solid var(--rule);
  }

  .buyer-strip,
  .capability-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyer-strip > div:nth-child(2) {
    border-right: 0;
  }

  .buyer-strip > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--rule);
  }

  .section-heading {
    grid-template-columns: 220px 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

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

  .process-heading {
    position: static;
  }

  .request-section {
    gap: 55px;
  }

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

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 36px);
  }

  body::before {
    left: 18px;
  }

  body::after {
    right: 18px;
  }

  .prototype-note {
    min-height: 42px;
    padding: 8px 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    font-size: 7px;
  }

  .prototype-note span:last-child {
    opacity: 0.75;
  }

  .site-header {
    min-height: 80px;
    padding: 0 18px;
  }

  .brand {
    gap: 12px;
  }

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

  .brand-mark::before {
    left: 12px;
  }

  .brand-mark::after {
    top: 12px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    max-width: 180px;
    font-size: 7px;
  }

  .mobile-menu summary {
    min-width: 66px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 48px 0 44px;
    border-right: 0;
  }

  h1 {
    margin-top: 28px;
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .drawing-id {
    display: none;
  }

  .coordination-panel {
    padding-bottom: 42px;
  }

  .schedule-drawing {
    height: 300px;
  }

  .buyer-strip,
  .capability-grid,
  .project-grid,
  .proof-register {
    grid-template-columns: 1fr;
  }

  .buyer-strip > div,
  .buyer-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .buyer-strip > div:last-child {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .section,
  .request-section {
    padding: 76px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .about-title h2,
  .request-intro h2 {
    margin-top: 24px;
    font-size: clamp(42px, 12vw, 58px);
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .capability-grid,
  .project-grid {
    margin-top: 48px;
  }

  .section-markets,
  .section-about {
    gap: 52px;
  }

  .markets-copy {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--rule);
  }

  .market-list > div {
    grid-template-columns: 44px 1fr;
  }

  .market-list small {
    display: none;
  }

  .process-list article {
    grid-template-columns: 48px 1fr 22px;
  }

  .process-list small {
    grid-column: 2;
  }

  .bid-form {
    padding: 22px 18px;
    grid-template-columns: 1fr;
  }

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

  .form-submit {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit button {
    width: 100%;
  }

  .site-footer {
    padding: 52px 18px;
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}


/* ==== v3 static additions (Peppermodern) ==== */
.announce-bar{background:var(--blue);color:var(--white);font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;display:flex;align-items:center;justify-content:center;gap:16px;padding:9px 52px;text-align:center}
.announce-bar a{color:var(--white);border-bottom:1px solid rgba(255,253,248,.55);padding-bottom:1px}
.announce-bar a:hover{border-bottom-color:var(--white)}

.page-hero{padding:72px 52px 40px;border-bottom:1px solid var(--rule)}
.page-hero .eyebrow{font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--blue);margin-bottom:14px}
.page-hero h1{font-size:clamp(34px,5vw,54px);line-height:1.05;letter-spacing:-.015em;font-weight:700;max-width:820px}
.page-hero p.lede{margin-top:18px;max-width:640px;font-size:17px;color:var(--muted)}

.menu-wrap{overflow-x:auto;border:1px solid var(--rule);background:var(--white)}
.menu-table{border-collapse:collapse;width:100%;min-width:560px;font-size:15px}
.menu-table th{font-family:var(--mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--blue);text-align:left;padding:12px 16px;border-bottom:2px solid var(--ink);background:var(--paper)}
.menu-table td{padding:14px 16px;border-bottom:1px solid var(--rule);vertical-align:top}
.menu-table tr:last-child td{border-bottom:0}
.menu-table td:first-child{font-weight:700;white-space:nowrap}
.menu-table td.price{font-family:var(--mono);white-space:nowrap}

.role-card{border:2px solid var(--ink);background:var(--white);padding:28px 32px;max-width:860px}
.role-card .role-meta{display:flex;flex-wrap:wrap;gap:10px 22px;font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);margin-bottom:12px}
.role-card h3{font-size:24px;font-weight:700;letter-spacing:-.01em;margin-bottom:12px}
.role-card p{margin:10px 0;max-width:68ch}
.role-card ul{margin:12px 0 4px}
.role-card li{position:relative;padding-left:22px;margin:7px 0}
.role-card li::before{content:"";position:absolute;left:0;top:.55em;width:10px;height:2px;background:var(--blue)}
.role-card .role-actions{margin-top:20px;display:flex;flex-wrap:wrap;gap:14px;align-items:center}

.track-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr));gap:20px;margin-top:28px}
.track-card{border:1px solid var(--rule);background:var(--white);padding:24px 26px}
.track-card .tag{font-family:var(--mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:10px}
.track-card h3{font-size:19px;font-weight:700;margin-bottom:8px}
.track-card p{color:var(--muted);font-size:15px}
.track-card p strong{color:var(--ink)}
.track-card .tagline{margin-top:14px;font-style:italic;color:var(--ink);border-left:3px solid var(--blue);padding-left:12px}

.photo-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;margin-top:28px}
.photo-row figure{border:1px solid var(--rule);background:var(--white);padding:10px}
.photo-row img{width:100%;height:240px;object-fit:cover}
.photo-row figcaption{font-family:var(--mono);font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);padding-top:8px}

.contact-block{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:26px}
.contact-block > div{border:1px solid var(--rule);background:var(--white);padding:22px 24px}
.contact-block span{font-family:var(--mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:8px}
.contact-block strong{display:block;font-size:17px;margin-bottom:4px}
.contact-block p,.contact-block a{color:var(--muted);font-size:14.5px}
.contact-block a:hover{color:var(--blue)}

.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr));gap:16px}
.gallery figure{border:1px solid var(--rule);background:var(--white);padding:10px 10px 12px;margin:0}
.gallery img{width:100%;height:320px;object-fit:cover}
.gallery figcaption{padding-top:10px;font-size:13.5px;color:var(--ink)}
.gallery figcaption span{display:block;font-family:var(--mono);font-size:10px;letter-spacing:.14em;color:var(--blue);text-transform:uppercase;margin-bottom:4px}
@media (max-width:640px){.gallery img{height:240px}}

/* section-heading's 3-col grid has a ~1090px minimum; Scott's 2-col fallback
   started at 980, leaving a 981-1089 dead zone that forced horizontal scroll */
@media (max-width:1100px){
  .section-heading{grid-template-columns:220px 1fr}
  .section-heading > p:last-child{grid-column:2}
}
/* belt + suspenders: the page body must never scroll sideways */
html,body{overflow-x:clip}

.footer-contact{font-family:var(--mono);font-size:11px;letter-spacing:.1em;color:var(--muted)}
.footer-contact a{color:inherit}
.footer-contact a:hover{color:var(--blue)}
.site-footer .footer-contact{grid-column:1/-1;margin-top:4px;font-size:10px;letter-spacing:.12em}
.pepper-mark{width:42px;height:42px;object-fit:contain;flex:0 0 auto}

.side-doors{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin-top:26px}

@media (max-width:640px){
  .announce-bar{padding:8px 18px;flex-direction:column;gap:4px}
  .page-hero{padding:52px 24px 32px}
  .role-card{padding:22px 20px}
}
