:root {
  --ink: #1e1d18;
  --muted: #625c50;
  --paper: #f3eadc;
  --paper-deep: #e8dac6;
  --line: rgba(54, 46, 34, 0.18);
  --green: #142b22;
  --green-2: #1e392e;
  --orange: #ef5b1f;
  --white-paper: #fbf5e9;
  --shadow: 0 28px 70px rgba(32, 24, 13, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SF Mono", Consolas, "Liberation Mono", monospace;
  --hand: "Bradley Hand", "Segoe Print", "Marker Felt", cursive;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    linear-gradient(rgba(70, 52, 24, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 52, 24, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(239, 91, 31, 0.08), transparent 26rem),
    var(--paper);
  background-size: 38px 38px, 38px 38px, auto, auto;
}

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

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

.site-header {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(170px, 260px) 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(22px, 4vw, 64px);
  background: var(--green);
  color: #fff7ea;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: sticky;
  top: 0;
  z-index: 20;
}


.brand,
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: 188px;
  max-height: 42px;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 2.8vw, 40px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  justify-content: center;
  min-width: 44px;
  padding: 9px 0;
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  background: var(--orange);
}

.header-cta,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 19px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta {
  background: var(--orange);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(239, 91, 31, 0.24);
}

.header-cta::after,
.outline-button::after,
.service-card a::after {
  content: "->";
  margin-left: 10px;
}

.nav a,
.header-cta,
.outline-button,
.service-card,
.service-card a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.nav a:focus-visible,
.header-cta:focus-visible,
.outline-button:focus-visible,
.service-card a:focus-visible {
  outline: 3px solid rgba(239, 91, 31, 0.72);
  outline-offset: 4px;
}

@media (hover: hover) {
  .nav a:hover {
    color: #ffd4bd;
  }

  .header-cta:hover {
    transform: translateY(-1px);
    background: #ff6426;
    box-shadow: 0 14px 28px rgba(239, 91, 31, 0.28);
  }

  .outline-button:hover {
    transform: translateY(-1px);
    border-color: rgba(47, 40, 28, 0.42);
    box-shadow: 0 12px 22px rgba(42, 31, 18, 0.14);
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(40, 30, 16, 0.14);
  }
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(34px, 5vw, 70px) clamp(20px, 4vw, 62px) 28px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: stretch;
}

.services-hero > * {
  min-width: 0;
}

.hero-paper {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  padding: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(105deg, rgba(255,255,255,0.34), transparent 58%),
    linear-gradient(rgba(74, 62, 43, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 62, 43, 0.045) 1px, transparent 1px),
    var(--white-paper);
  background-size: auto, 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(40, 34, 25, 0.12);
  box-shadow: var(--shadow);
  transform: none;
}

.hero-paper::after {
  content: none;
}

.hero-blueprint {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin: 0 0 0 -8px;
  font-size: clamp(72px, 9vw, 126px);
  line-height: 0.92;
}

.hero-copy {
  max-width: 520px;
  margin: 46px 0 0;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.36;
}

.orange-note {
  margin: 0;
  color: var(--orange);
  font-family: var(--hand);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 0.98;
}

.hero-note {
  position: relative;
  left: 0;
  bottom: auto;
  margin-top: 30px;
  max-width: 210px;
  transform: rotate(-8deg);
}

.hero-photo-board {
  position: relative;
  min-height: 470px;
  padding: 20px;
  background: var(--white-paper);
  border: 1px solid rgba(40, 34, 25, 0.13);
  box-shadow: var(--shadow);
}

.hero-photo,
.main-job-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo {
  height: 430px;
  filter: saturate(0.95) contrast(1.02);
}

.field-tag {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(300px, 54%);
  padding: 18px 20px;
  background: rgba(20, 43, 34, 0.94);
  color: #fff8e8;
  border: 1px solid rgba(255,255,255,0.17);
}

.field-tag span {
  display: block;
  margin-bottom: 8px;
  color: #ffb28f;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-tag strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.04;
}

.service-card-row {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 62px) clamp(42px, 5vw, 78px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 38px 30px 26px;
  background:
    linear-gradient(rgba(255,255,255,0.74), rgba(255,255,255,0.4)),
    url("../v4-services/generated/blank-cream-card.webp") center / 116% 118% no-repeat,
    var(--white-paper);
  border: 1px solid rgba(44, 38, 29, 0.19);
  box-shadow: 0 16px 32px rgba(40, 30, 16, 0.09);
}

.card-pin {
  position: absolute;
  top: -31px;
  left: 50%;
  z-index: 3;
  width: 86px;
  height: 48px;
  transform: translateX(-50%) rotate(-2deg);
  background: url("../v4-shared/generated/shared/binder-clip-edge-v1.png") center / contain no-repeat;
  pointer-events: none;
}

.card-pin::before {
  content: none;
}

.card-pin::after {
  content: none;
}

.service-card h2 {
  margin: 0 0 24px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.02;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.46;
}

.service-card a {
  position: static;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.gc-section {
  position: relative;
  max-width: 1500px;
  margin: 0 auto clamp(42px, 6vw, 90px);
  padding: 0 clamp(20px, 4vw, 62px);
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(500px, 0.58fr);
  gap: clamp(18px, 2.2vw, 34px);
}

.gc-section::before {
  content: "";
  position: absolute;
  inset: 46px clamp(20px, 4vw, 62px) 42px;
  background:
    linear-gradient(rgba(64, 48, 25, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 48, 25, 0.04) 1px, transparent 1px),
    rgba(255, 249, 239, 0.42);
  background-size: 28px 28px;
  border-top: 1px solid rgba(40, 32, 22, 0.08);
  border-bottom: 1px solid rgba(40, 32, 22, 0.08);
  z-index: -1;
}

.gc-notebook {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(13, 22, 17, 0.08), rgba(13, 22, 17, 0.02)),
    url("../v4-services/generated/services-field-notebook-bg.webp") center / 119% 119% no-repeat,
    var(--green);
  color: #fff7e8;
  filter: drop-shadow(0 28px 42px rgba(19, 33, 25, 0.24));
  border: 0;
  margin: 0 0 36px;
}

.gc-notebook::after {
  content: none;
}

.spiral {
  display: none;
}

.paperclip {
  display: none;
}

.notebook-content {
  position: relative;
  z-index: 3;
  padding: clamp(56px, 5vw, 76px) clamp(34px, 3.4vw, 54px) 52px clamp(78px, 6.5vw, 102px);
}

.gc-notebook .eyebrow {
  color: #f18c56;
}

.gc-notebook h2 {
  max-width: 390px;
  margin: 0 0 25px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 0.98;
}

.gc-notebook h2::after {
  content: "";
  display: block;
  width: 210px;
  height: 2px;
  margin-top: 18px;
  background: var(--orange);
}

.gc-notebook p {
  max-width: 430px;
  color: rgba(255, 247, 232, 0.86);
  font-size: 15px;
  line-height: 1.65;
}

.check-list {
  list-style: none;
  margin: 30px 0 34px;
  padding: 0;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 247, 232, 0.92);
  font-size: 15px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #ff7a36;
  font-weight: 900;
}

.outline-button {
  border: 1px solid rgba(255, 247, 232, 0.74);
  color: #fff7e8;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

.gc-photo-stack {
  position: relative;
  min-height: 520px;
  padding: 0 0 36px;
}

.main-job-photo {
  margin: 0;
  height: 520px;
  background: var(--white-paper);
  border: 18px solid var(--white-paper);
  box-shadow: var(--shadow);
}

.gc-note {
  position: absolute;
  left: 56px;
  top: 36px;
  max-width: 210px;
  transform: rotate(-6deg);
  z-index: 6;
}

.design-services {
  max-width: 1500px;
  margin: 0 auto 70px;
  padding: 0 clamp(20px, 4vw, 62px);
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(280px, 0.31fr) minmax(300px, 0.35fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: stretch;
}

.material-board {
  position: relative;
  min-height: 430px;
  background: var(--white-paper);
  border: 1px solid rgba(42, 35, 24, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.material-board-photo {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
}

.material-note {
  position: absolute;
  left: 26px;
  top: 44px;
  max-width: 130px;
  transform: rotate(-8deg);
}

.design-copy {
  padding: clamp(22px, 3vw, 42px) 0;
}

.design-copy h2,
.construction-process h2,
.vendor-section h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 0.98;
}

.design-copy h2::after,
.vendor-section h2::after {
  content: "";
  display: block;
  width: min(240px, 70%);
  height: 3px;
  margin-top: 16px;
  background: var(--orange);
  transform: rotate(-2deg);
}

.construction-process h2::after {
  content: none;
}

.design-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.light-checks {
  margin-top: 26px;
}

.light-checks li {
  color: #40382f;
}

.design-photo {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.design-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-photo figcaption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  max-width: 210px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.24);
}

.construction-process {
  max-width: 1500px;
  margin: 0 auto 68px;
  padding: 48px clamp(20px, 4vw, 62px) 58px;
  background:
    linear-gradient(rgba(64, 48, 25, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 48, 25, 0.035) 1px, transparent 1px),
    rgba(255, 249, 239, 0.56);
  background-size: 30px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-heading {
  text-align: center;
}

.process-intro {
  max-width: 780px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 680;
  line-height: 1.55;
}

.process-track {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(280px, 2fr) auto minmax(560px, 4fr);
  gap: 18px;
  align-items: stretch;
}

.process-stage {
  position: relative;
  padding: 28px 18px 18px;
  background: rgba(255, 249, 239, 0.5);
  border: 1px solid rgba(42, 35, 24, 0.14);
}

.process-stage::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 102px;
  height: 2px;
  background: rgba(239, 91, 31, 0.54);
}

.process-stage-heading {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 100%;
  margin: -44px auto 30px;
  padding: 14px 40px 12px;
  text-align: center;
  background: var(--white-paper);
  border: 1px solid rgba(42, 35, 24, 0.15);
  box-shadow: 0 12px 24px rgba(40, 30, 16, 0.1);
  transform: rotate(-0.5deg);
}

.process-stage--build .process-stage-heading {
  transform: rotate(0.45deg);
}

.process-stage-heading p {
  margin: 0 0 3px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-stage-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.process-stage-nail {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff0bd 0 12%, transparent 28%),
    radial-gradient(circle at 50% 58%, #b78630 0 52%, #76531e 72%);
  box-shadow: 0 6px 8px rgba(44, 30, 11, 0.28);
  transform: translateX(-50%);
}

.process-stage ol {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.process-stage--plans ol {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-stage--build ol {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-stage li {
  position: relative;
  min-height: 224px;
  padding: 32px 18px 20px;
  list-style: none;
  background: var(--white-paper);
  border: 1px solid rgba(42, 35, 24, 0.14);
  box-shadow: 0 14px 28px rgba(40, 30, 16, 0.1);
}

.process-stage li:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.process-stage li:nth-child(even) {
  transform: rotate(0.35deg);
}

.process-stage li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffc6a9, transparent 28%),
    var(--orange);
  box-shadow: 0 7px 11px rgba(38, 28, 16, 0.22);
  transform: translateX(-50%);
}

.process-stage li > span {
  display: block;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-stage li h3 {
  margin: 18px 0 11px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 400;
  line-height: 1.02;
}

.process-stage li p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.5;
}

.process-handoff {
  position: relative;
  z-index: 3;
  width: 104px;
  align-self: center;
  padding: 30px 12px 18px;
  color: #fff7e8;
  text-align: center;
  background: var(--green);
  border: 1px solid rgba(15, 37, 29, 0.3);
  box-shadow: 0 15px 30px rgba(20, 31, 22, 0.2);
  transform: rotate(-1.2deg);
}

.process-handoff::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--green);
  transform: translateY(-50%);
}

.process-handoff strong,
.process-handoff small {
  display: block;
}

.process-handoff strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 0.98;
}

.process-handoff small {
  margin-top: 8px;
  color: #f18c56;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-handoff-pin {
  position: absolute;
  left: 50%;
  top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%);
}

.vendor-section {
  max-width: 1500px;
  margin: 0 auto 84px;
  padding: 0 clamp(20px, 4vw, 62px);
}

.vendor-section h2 {
  max-width: 880px;
}

.vendor-intro {
  max-width: 760px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 660;
  line-height: 1.55;
}

.vendor-more {
  margin: 18px 0 0;
  color: var(--orange);
  font-family: var(--hand);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-1deg);
}

.vendor-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.56);
}

.vendor-logo-card {
  min-height: 154px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 16px;
  padding: 24px 20px 18px;
  color: #2f2a22;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vendor-logo-card:last-child {
  border-right: 0;
}

.vendor-logo-card:hover,
.vendor-logo-card:focus-visible {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 -3px 0 var(--orange);
  transform: translateY(-2px);
}

.vendor-logo-card img {
  width: min(100%, 180px);
  max-height: 74px;
  object-fit: contain;
}

.vendor-ferguson img,
.vendor-mission img {
  width: min(100%, 220px);
}

.vendor-ganahl img {
  max-height: 92px;
  width: auto;
}

.vendor-msi img {
  width: min(100%, 174px);
  max-height: 72px;
}

.vendor-name {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-detail-page {
  max-width: 1500px;
  margin: 0 auto;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(26px, 3.5vw, 48px) clamp(20px, 4vw, 62px) 24px;
  align-items: stretch;
}

.service-detail-paper {
  position: relative;
  min-height: 470px;
  padding: clamp(34px, 4vw, 58px);
  background: var(--white-paper);
  border: 1px solid rgba(40, 34, 25, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-detail-blueprint {
  position: absolute;
  right: -24px;
  top: 18px;
  width: min(430px, 62%);
  opacity: 0.34;
  mix-blend-mode: multiply;
}

.service-detail-paper > *:not(.service-detail-blueprint) {
  position: relative;
  z-index: 2;
}

.service-detail-paper h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(54px, 6.6vw, 94px);
  line-height: 0.92;
}

.service-detail-paper h1::after,
.service-detail-card h2::after,
.service-detail-process h2::after,
.service-detail-needed h2::after {
  content: "";
  display: block;
  width: min(340px, 70%);
  height: 3px;
  margin-top: 14px;
  background: var(--orange);
  transform: rotate(-1.2deg);
}

.service-detail-lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: #3f392f;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 750;
  line-height: 1.36;
}

.service-detail-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.service-detail-actions .outline-button,
.service-switcher .outline-button {
  color: var(--ink);
  border-color: rgba(30, 29, 24, 0.34);
  background: rgba(255, 249, 239, 0.42);
}

.service-detail-photo {
  position: relative;
  min-height: 470px;
  margin: 0;
  padding: 18px;
  background: var(--white-paper);
  border: 1px solid rgba(40, 34, 25, 0.13);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-detail-photo img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
}

.service-detail-support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-photo figcaption {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  padding: 15px 18px;
  color: #fff7e8;
  background: rgba(20, 43, 34, 0.94);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-detail-summary {
  margin: 0 clamp(20px, 4vw, 62px) clamp(32px, 5vw, 62px);
  padding: 24px clamp(22px, 4vw, 42px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  background: rgba(255, 249, 239, 0.72);
  border: 1px solid var(--line);
}

.service-detail-summary p:not(.eyebrow) {
  margin: 0;
  color: #3f392f;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.5;
}

.service-detail-page--visual .service-detail-photo {
  background: #fffaf1;
}

.service-detail-page--visual .service-detail-photo img {
  object-fit: contain;
}

.service-detail-page--photo-hero .service-detail-photo img {
  object-fit: cover;
}

.service-bungalow-extra[hidden] {
  display: none;
}

.service-detail-grid[hidden],
.service-detail-process[hidden],
.service-detail-needed[hidden] {
  display: none;
}

.bungalow-origin,
.bungalow-plan-section,
.bungalow-use-cases,
.bungalow-courtyard-feature {
  margin: 0 clamp(20px, 4vw, 62px) clamp(38px, 5vw, 72px);
}

.bungalow-origin {
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(440px, 0.54fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  background: rgba(255, 249, 239, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.bungalow-origin-copy h2,
.bungalow-plan-copy h2,
.bungalow-use-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 64px);
  line-height: 0.98;
}

.bungalow-origin-copy h2::after,
.bungalow-plan-copy h2::after,
.bungalow-use-heading h2::after {
  content: "";
  display: block;
  width: min(280px, 72%);
  height: 3px;
  margin-top: 14px;
  background: var(--orange);
  transform: rotate(-1deg);
}

.bungalow-origin-copy p,
.bungalow-plan-copy p,
.bungalow-use-cases article p {
  margin: 20px 0 0;
  color: #40382f;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.55;
}

.bungalow-facts {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bungalow-facts div {
  min-width: 0;
  min-height: 130px;
  padding: 18px 12px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  background: var(--white-paper);
  border: 1px solid rgba(42, 35, 24, 0.13);
}

.bungalow-facts dt {
  max-width: 100%;
  color: var(--orange);
  font-family: var(--serif);
  font-size: clamp(27px, 2.2vw, 32px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.bungalow-facts dd {
  max-width: 100%;
  margin: 0;
  color: #40382f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.bungalow-visual {
  position: relative;
  margin: 0;
  padding: 14px;
  background: var(--white-paper);
  border: 1px solid rgba(42, 35, 24, 0.13);
  box-shadow: 0 22px 44px rgba(43, 31, 16, 0.13);
}

.bungalow-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bungalow-visual--before {
  min-height: 420px;
}

.bungalow-visual--before img {
  aspect-ratio: 1812 / 868;
}

.bungalow-visual--before figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 14px 16px;
  color: #fff7e8;
  background: rgba(20, 43, 34, 0.94);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.bungalow-plan-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.6fr) minmax(300px, 0.4fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.bungalow-visual--plan {
  min-height: 430px;
}

.bungalow-visual--plan img {
  aspect-ratio: 1628 / 966;
}

.bungalow-plan-copy {
  padding: clamp(28px, 4vw, 50px);
  color: #fff7e8;
  background: var(--green);
  box-shadow: 0 22px 44px rgba(20, 31, 22, 0.18);
}

.bungalow-plan-copy .eyebrow {
  color: #f18c56;
}

.bungalow-plan-copy h2,
.bungalow-plan-copy p {
  color: #fff7e8;
}

.bungalow-plan-copy p {
  color: rgba(255, 247, 232, 0.84);
}

.bungalow-plan-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.bungalow-plan-copy li {
  list-style: none;
  padding-left: 24px;
  position: relative;
  color: #fff7e8;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.bungalow-plan-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 10px;
  height: 2px;
  background: var(--orange);
}

.bungalow-use-cases {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  column-gap: clamp(20px, 4vw, 58px);
  row-gap: 0;
  align-items: center;
}

.bungalow-use-heading {
  grid-row: 1 / span 3;
  padding: clamp(24px, 3vw, 34px) 0;
}

.bungalow-use-cases article {
  grid-column: 2;
  position: relative;
  padding: 12px 0 12px 30px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.bungalow-use-cases article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 27px;
  width: 11px;
  height: 11px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 91, 31, 0.1);
}

.bungalow-use-cases article:last-child {
  border-bottom: 0;
}

.bungalow-use-cases h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
}

.bungalow-use-cases article p {
  margin-top: 8px;
}

.bungalow-courtyard-feature {
  padding: 14px;
  background: var(--white-paper);
  border: 1px solid rgba(42, 35, 24, 0.13);
  box-shadow: 0 22px 44px rgba(43, 31, 16, 0.13);
}

.bungalow-courtyard-feature img {
  width: 100%;
  aspect-ratio: 1792 / 1024;
  object-fit: cover;
}

.bungalow-courtyard-feature figcaption {
  margin-top: 12px;
  color: #40382f;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-detail-grid {
  padding: 0 clamp(20px, 4vw, 62px) clamp(38px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(420px, 0.56fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
}

.service-detail-card {
  min-height: 520px;
  padding: clamp(38px, 5vw, 64px);
  background: linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.08)), var(--green);
  color: #fff7e8;
  box-shadow: 0 28px 60px rgba(19, 33, 25, 0.24);
}

.service-detail-card .eyebrow {
  color: #f18c56;
}

.service-detail-card h2 {
  max-width: 430px;
  margin: 0 0 30px;
  font-size: clamp(38px, 4.5vw, 66px);
  line-height: 0.96;
}

.service-detail-support-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  padding: 18px;
  background: var(--white-paper);
  border: 1px solid rgba(40, 34, 25, 0.13);
  box-shadow: var(--shadow);
}

.service-detail-support-photo .orange-note {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(28px, 4vw, 58px);
  max-width: 180px;
  text-shadow: 0 1px 0 rgba(255, 248, 236, 0.55);
  transform: rotate(-7deg);
}

.service-detail-process {
  margin: 0 clamp(20px, 4vw, 62px) clamp(38px, 5vw, 72px);
}

.service-detail-process h2,
.service-detail-needed h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 4.3vw, 68px);
  line-height: 0.98;
}

.service-detail-process ol {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-detail-process li {
  position: relative;
  min-height: 172px;
  padding: 31px 23px 23px;
  display: grid;
  align-content: space-between;
  list-style: none;
  background: rgba(255, 249, 239, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 15px 28px rgba(40, 30, 16, 0.08);
}

.service-detail-process li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #ffc6a9, transparent 28%),
    var(--orange);
  box-shadow: 0 7px 11px rgba(38, 28, 16, 0.22);
  transform: translateX(-50%);
}

.service-detail-process li:nth-child(odd) {
  transform: rotate(-0.25deg);
}

.service-detail-process li:nth-child(even) {
  transform: rotate(0.25deg);
}

.service-detail-process span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.service-detail-process p {
  margin: 0;
  color: #40382f;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
}

.service-detail-needed {
  margin: 0 clamp(20px, 4vw, 62px) clamp(42px, 5vw, 78px);
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(340px, 0.52fr);
  gap: clamp(24px, 4vw, 58px);
  background: rgba(255, 249, 239, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-detail-needed ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.service-detail-needed li {
  list-style: none;
  padding: 14px 16px;
  background: var(--white-paper);
  border: 1px solid rgba(40, 34, 25, 0.13);
  color: #40382f;
  font-size: 14px;
  font-weight: 850;
}

.service-detail-needed li::before {
  content: "/";
  margin-right: 10px;
  color: var(--orange);
}

.service-switcher {
  margin: 0 clamp(20px, 4vw, 62px) clamp(38px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.service-switcher .header-cta,
.service-switcher .outline-button,
.service-detail-cta > .header-cta {
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}

.service-detail-cta {
  margin: 0 clamp(20px, 4vw, 62px) 80px;
  padding: clamp(30px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: #fff7e8;
  background:
    linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0)),
    var(--green);
  box-shadow: 0 18px 38px rgba(20, 28, 20, 0.18);
}

.service-detail-cta .eyebrow {
  color: #f18c56;
}

.service-detail-cta h2 {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
}

.service-detail-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255,247,232,0.84);
}

.site-footer {
  max-width: 1580px;
  margin: 0 auto;
  padding: 32px clamp(22px, 5vw, 86px) 36px;
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(24px, 4vw, 68px);
  color: #f8efe0;
  background: #0f251d;
}

.footer-brand img {
  width: 188px;
  filter: brightness(0) invert(1) !important;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 20px;
  color: #d8cfbf;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: #d8cfbf;
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.site-footer a {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 0;
}

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

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  .services-hero,
  .gc-section,
  .design-services,
  .service-detail-hero,
  .service-detail-grid,
  .service-detail-needed,
  .bungalow-origin,
  .bungalow-plan-section,
  .bungalow-use-cases,
  .bungalow-courtyard-feature {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding: 28px clamp(18px, 4vw, 46px) 24px;
  }

  .hero-paper {
    min-height: auto;
    padding: 36px 34px 42px;
  }

  h1 {
    font-size: clamp(64px, 9vw, 98px);
  }

  .hero-copy {
    margin-top: 26px;
  }

  .hero-photo-board {
    min-height: auto;
    padding: 14px;
  }

  .hero-photo {
    height: 320px;
  }

  .service-detail-hero {
    gap: 22px;
    padding: 22px clamp(18px, 4vw, 42px) 24px;
  }

  .service-detail-paper {
    min-height: auto;
    padding: 30px;
  }

  .service-detail-paper h1 {
    max-width: none;
    font-size: clamp(48px, 7vw, 72px);
  }

  .service-detail-lede {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(17px, 2vw, 20px);
  }

  .service-detail-actions {
    margin-top: 20px;
  }

  .service-detail-photo {
    min-height: 280px;
  }

  .bungalow-origin,
  .bungalow-plan-section,
  .bungalow-use-cases,
  .bungalow-courtyard-feature {
    margin-left: clamp(18px, 4vw, 42px);
    margin-right: clamp(18px, 4vw, 42px);
  }

  .bungalow-use-heading {
    grid-row: auto;
    padding-bottom: 4px;
  }

  .bungalow-use-cases article {
    grid-column: 1;
  }

  .service-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-notebook {
    min-height: auto;
    margin: 0;
  }

  .gc-photo-stack {
    min-height: 520px;
  }

  .main-job-photo {
    height: 470px;
    margin-top: 28px;
  }

  .design-services {
    align-items: start;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-stage--plans ol,
  .process-stage--build ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-handoff {
    width: min(320px, 78%);
    justify-self: center;
    padding: 22px 18px 18px;
  }

  .process-handoff::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -15px;
    border-top: 16px solid var(--green);
    border-right: 11px solid transparent;
    border-bottom: 0;
    border-left: 11px solid transparent;
    transform: translateX(-50%);
  }

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

  .vendor-logo-card {
    border-bottom: 1px solid var(--line);
  }

  .vendor-logo-card:nth-child(2n) {
    border-right: 0;
  }

  .vendor-logo-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-detail-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 780px) {
  .site-header {
    position: static;
    min-height: 0;
    gap: 14px;
    padding: 15px 16px;
  }


  .brand,
  .nav a {
    min-height: 44px;
  }

  .brand,
  .nav a {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    gap: 7px 16px;
    font-size: 10px;
    line-height: 1.2;
  }

  .brand img {
    width: 148px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  .services-hero {
    padding: 18px 15px 16px;
  }

  .hero-paper {
    min-height: auto;
    padding: 30px 22px 40px;
    transform: none;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .hero-paper::after {
    top: 118px;
    width: 170px;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-photo-board {
    min-height: auto;
    padding: 12px;
  }

  .hero-photo {
    height: 280px;
  }

  .field-tag {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  .service-card-row {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .service-card {
    min-height: 245px;
  }

  .gc-section {
    padding: 0 15px;
    gap: 18px;
  }

  .gc-section::before {
    inset: 28px 15px 28px;
  }

  .spiral {
    left: -44px;
    width: 82px;
  }

  .notebook-content {
    padding: 42px 24px 42px 62px;
  }

  .gc-photo-stack {
    min-height: auto;
    padding-bottom: 70px;
  }

  .gc-note {
    left: 24px;
    top: 18px;
  }

  .main-job-photo {
    height: 350px;
    margin-top: 70px;
    border-width: 10px;
  }

  .design-services {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .material-board {
    min-height: 360px;
  }

  .design-photo {
    min-height: 340px;
  }

  .construction-process,
  .vendor-section {
    margin-bottom: 44px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .process-stage--plans ol,
  .process-stage--build ol {
    grid-template-columns: 1fr;
  }

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

  .process-stage {
    padding: 26px 12px 12px;
  }

  .process-stage::before {
    display: none;
  }

  .process-stage-heading {
    width: min(360px, calc(100% - 24px));
    margin-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-stage li {
    min-height: 0;
  }

  .process-stage li:nth-child(odd),
  .process-stage li:nth-child(even) {
    transform: none;
  }

  .process-handoff {
    width: min(320px, calc(100% - 36px));
  }

  .vendor-logo-card {
    min-height: 128px;
    padding: 18px 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .vendor-logo-card:nth-child(2n) {
    border-right: 0;
  }

  .vendor-logo-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .vendor-logo-card img {
    max-height: 58px;
  }

  .vendor-ganahl img {
    max-height: 76px;
  }

  .service-detail-hero {
    gap: 18px;
    padding: 14px 15px 16px;
  }

  .service-detail-paper {
    min-height: auto;
    padding: 26px 20px 28px;
  }

  .service-detail-blueprint {
    right: 0;
    width: min(300px, 58%);
  }

  .service-detail-paper h1 {
    max-width: none;
    font-size: clamp(40px, 11vw, 56px);
  }

  .service-detail-lede {
    max-width: none;
    margin-top: 16px;
    font-size: 16px;
  }

  .service-detail-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-detail-actions .header-cta,
  .service-detail-actions .outline-button {
    width: 100%;
  }

  .service-detail-photo,
  .service-detail-support-photo {
    min-height: 250px;
    padding: 12px;
  }

  .service-detail-photo img {
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
  }

  .service-detail-photo figcaption {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .service-detail-page--visual .service-detail-photo {
    min-height: auto;
    display: grid;
  }

  .service-detail-page--visual .service-detail-photo img {
    position: static;
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .service-detail-page--visual .service-detail-photo figcaption {
    position: static;
    margin-top: 12px;
  }

  .service-detail-summary {
    grid-template-columns: 1fr;
    margin-left: 15px;
    margin-right: 15px;
  }

  .service-detail-grid,
  .service-detail-process,
  .service-detail-needed,
  .service-switcher,
  .bungalow-origin,
  .bungalow-plan-section,
  .bungalow-use-cases,
  .bungalow-courtyard-feature {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .bungalow-origin {
    padding: 28px 0;
    background: transparent;
    border-top: 1px solid var(--line);
  }

  .bungalow-origin-copy h2,
  .bungalow-plan-copy h2,
  .bungalow-use-heading h2 {
    font-size: clamp(31px, 9vw, 44px);
  }

  .bungalow-facts {
    grid-template-columns: 1fr;
  }

  .bungalow-facts div {
    min-height: 98px;
  }

  .bungalow-visual,
  .bungalow-plan-copy {
    padding: 12px;
  }

  .bungalow-visual--before,
  .bungalow-visual--plan {
    min-height: 250px;
  }

  .bungalow-visual--before figcaption {
    position: static;
    margin-top: 12px;
  }

  .bungalow-plan-copy {
    padding: 26px 20px;
  }

  .bungalow-use-cases article {
    padding: 14px 0 14px 28px;
  }

  .bungalow-use-cases article::before {
    top: 24px;
  }

  .bungalow-courtyard-feature {
    padding: 12px;
  }

  .bungalow-courtyard-feature figcaption {
    font-size: 10px;
  }

  .service-detail-card {
    min-height: auto;
    padding: 34px 25px;
  }

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

  .service-detail-process li {
    min-height: 150px;
    transform: none !important;
  }

  .service-detail-needed {
    padding: 28px 0;
  }

  .service-detail-cta {
    grid-template-columns: 1fr;
    margin: 0 15px 44px;
    padding: 28px 22px;
  }

  .service-switcher {
    display: grid;
    grid-template-columns: 1fr;
  }

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

@media (min-width: 640px) and (max-width: 780px) {
  .process-stage--plans ol,
  .process-stage--build ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .process-stage li {
    min-height: 190px;
  }
}

@media (max-width: 639px) {
  .process-stage ol {
    gap: 16px;
  }

  .process-stage ol::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -18px;
    bottom: -18px;
    width: 2px;
    background: repeating-linear-gradient(
      to bottom,
      rgba(239, 91, 31, 0.58) 0 7px,
      transparent 7px 12px
    );
    transform: translateX(-50%);
  }

  .process-stage li {
    z-index: 1;
    width: calc(100% - 8px);
  }

  .process-stage li:nth-child(odd) {
    justify-self: start;
    transform: rotate(-0.2deg);
  }

  .process-stage li:nth-child(even) {
    justify-self: end;
    transform: rotate(0.2deg);
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 8px;
    padding: 12px 14px;
  }

  .brand img {
    width: 132px;
  }

  .site-header .header-cta {
    width: auto;
    min-height: 40px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .site-header .header-cta::after {
    margin-left: 6px;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
    font-size: 8.4px;
    letter-spacing: 0.055em;
  }

  .nav a {
    min-width: 40px;
    min-height: 40px;
    padding: 5px 0;
  }
}
