:root {
  --ink: #1d1b17;
  --muted: #665f52;
  --paper: #f3eadc;
  --paper-light: #fff8ec;
  --paper-deep: #e6d8c4;
  --line: rgba(51, 43, 31, 0.17);
  --line-strong: rgba(48, 39, 27, 0.31);
  --green: #122b22;
  --green-2: #1e3a2f;
  --orange: #ef5b1f;
  --orange-deep: #d94814;
  --shadow: 0 24px 54px rgba(35, 26, 14, 0.16);
  --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;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    linear-gradient(rgba(83, 65, 37, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 65, 37, 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: 38px 38px, 38px 38px, auto;
}

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

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

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

.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: 30;
  backdrop-filter: blur(10px);
}


.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);
  color: #fff7ea;
  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,
.button,
.text-link {
  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;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta,
.button-orange {
  background: var(--orange);
  color: #fffaf0;
  border: 1px solid var(--orange-deep);
  box-shadow: 0 11px 24px rgba(239, 91, 31, 0.2);
}

.button-dark {
  background: var(--green);
  color: #fff8e8;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-light {
  background: var(--paper-light);
  color: #171714;
  border: 1px solid var(--line-strong);
}

.button-outline {
  color: #fff8e8;
  border: 1px solid rgba(255, 248, 232, 0.72);
}

.text-link {
  padding: 0;
  min-height: 44px;
  color: var(--orange-deep);
}

.header-cta::after,
.button::after,
.text-link::after {
  content: "->";
  margin-left: 10px;
}

.nav a,
.header-cta,
.button,
.text-link {
  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,
.button:focus-visible,
.text-link:focus-visible,
.compare-control input: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,
  .button-orange:hover {
    transform: translateY(-1px);
    background: #ff6426;
    box-shadow: 0 14px 28px rgba(239, 91, 31, 0.28);
  }

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

  .button-dark:hover,
  .button-outline:hover {
    transform: translateY(-1px);
    background: #18362b;
    box-shadow: 0 14px 26px rgba(19, 33, 25, 0.22);
  }
}

.eyebrow {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.orange-note {
  color: var(--orange);
  font-family: var(--hand);
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.home-hero {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.field-rail,
.field-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #3f3a31;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.field-rail {
  padding-top: 22px;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid rgba(51, 43, 31, 0.08);
}

.field-rail::after {
  content: "+";
  width: 28px;
  height: 28px;
  margin-top: 66px;
  display: grid;
  place-items: center;
  color: rgba(41, 36, 27, 0.56);
  border: 1px solid rgba(41, 36, 27, 0.18);
  border-radius: 50%;
}

.field-number {
  justify-content: center;
  gap: 8px;
}

.field-number strong {
  font-size: 18px;
  letter-spacing: 0.09em;
}

.hero-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(540px, 54vw, 700px);
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow);
  background: var(--green);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  filter: saturate(0.93) contrast(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 19, 16, 0.42), rgba(13, 19, 16, 0.12) 31%, rgba(13, 19, 16, 0.03) 58%, transparent),
    linear-gradient(180deg, rgba(15, 17, 14, 0.03), rgba(15, 17, 14, 0.1));
}

.hero-copy-block {
  position: relative;
  z-index: 4;
  width: min(520px, 44%);
  padding: clamp(300px, 34vw, 420px) 0 58px clamp(30px, 6vw, 88px);
  color: #fff9ed;
}

.hero-tagline {
  max-width: 420px;
  color: #fff9ed;
  font-family: var(--serif);
  font-size: clamp(31px, 3.5vw, 54px);
  line-height: 0.98;
  text-shadow: 0 2px 18px rgba(5, 11, 8, 0.46);
}

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

.hero-note {
  position: absolute;
  right: clamp(54px, 10vw, 188px);
  top: clamp(130px, 18vw, 230px);
  z-index: 5;
  width: min(250px, 25%);
  transform: rotate(-7deg);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}

.proof-strip {
  position: relative;
  max-width: 1490px;
  margin: -16px auto 0;
  padding: 28px clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-columns: 180px repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)),
    linear-gradient(rgba(74, 62, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 62, 43, 0.04) 1px, transparent 1px),
    var(--paper-light);
  background-size: auto, 32px 32px, 32px 32px, auto;
  border: 1px solid rgba(47, 39, 27, 0.16);
  box-shadow: 0 18px 42px rgba(37, 28, 15, 0.12);
  z-index: 8;
}

.proof-note {
  transform: rotate(-8deg);
}

.proof-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.proof-icon {
  width: 58px;
  height: 58px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 8px 10px rgba(39, 29, 16, 0.18));
}

.proof-icon-people {
  background-image: url("../v4-home/generated/trc-proof-family.png");
}

.proof-icon-check {
  background-image: url("../v4-home/generated/trc-proof-license.png");
}

.proof-icon-house {
  background-image: url("../v4-home/generated/trc-proof-hands.png");
}

.proof-icon-clipboard {
  background-image: url("../v4-home/generated/trc-proof-estimate.png");
}

.proof-item h2 {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.story-section {
  max-width: 1490px;
  margin: 72px auto 54px;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.story-copy h2 {
  max-width: 420px;
  margin: 18px 0 28px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 0.96;
}

.story-copy h2::after,
.craft-block h2::after {
  content: "";
  display: block;
  width: 170px;
  height: 3px;
  margin-top: 22px;
  background: var(--orange);
  transform: rotate(-3deg);
}

.story-copy p:not(.eyebrow) {
  max-width: 430px;
  margin-bottom: 28px;
  color: #4e483e;
  font-size: 16px;
  line-height: 1.75;
}

.team-board {
  position: relative;
  min-height: 520px;
  padding: 22px 22px 58px;
  background: var(--paper-light);
  border: 1px solid rgba(44, 37, 27, 0.15);
  box-shadow: var(--shadow);
}

.team-photo {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.96) contrast(1.02);
}

.team-fastener {
  position: absolute;
  width: 94px;
  height: 82px;
  background: url("../v4-home/generated/trc-fastener-binderclip.webp") center / contain no-repeat;
  filter: drop-shadow(0 14px 14px rgba(31, 23, 13, 0.24));
  pointer-events: none;
  z-index: 4;
}

.team-fastener-top {
  left: 13%;
  top: -33px;
}

.field-card {
  position: absolute;
  right: 30px;
  bottom: -22px;
  width: min(285px, 48%);
  padding: 26px 24px;
  color: var(--orange-deep);
  background:
    linear-gradient(rgba(255,255,255,0.52), rgba(255,255,255,0.16)),
    url("../v4-home/generated/blank-cream-card.webp") center / cover no-repeat,
    var(--paper-light);
  border: 1px solid rgba(46, 36, 24, 0.14);
  box-shadow: 0 18px 32px rgba(38, 29, 16, 0.15);
  transform: rotate(-4deg);
}

.field-card strong,
.field-card span {
  display: block;
  font-family: var(--hand);
  font-size: clamp(23px, 2.45vw, 34px);
  font-weight: 700;
  line-height: 1.02;
}

.rebuild-section {
  position: relative;
  max-width: 1490px;
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
  align-items: stretch;
}

.rebuild-section::before {
  content: "";
  position: absolute;
  inset: 32px clamp(20px, 4vw, 56px) 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--green);
  background-size: 36px 36px;
  z-index: -1;
}

.rebuild-copy {
  min-height: 430px;
  padding: clamp(30px, 4vw, 54px) clamp(26px, 4vw, 48px);
  color: #fff8e8;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0)),
    var(--green);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 24px 56px rgba(21, 39, 30, 0.24);
}

.rebuild-copy .eyebrow {
  color: #ff8b53;
}

.rebuild-copy h2 {
  margin: 18px 0 22px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 0.97;
}

.rebuild-copy h2::after {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  margin-top: 20px;
  background: var(--orange);
  transform: rotate(-2deg);
}

.rebuild-copy p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 28px;
  color: rgba(255, 248, 232, 0.88);
  font-size: 16px;
  line-height: 1.65;
}

.rebuild-photos {
  position: relative;
  min-height: 430px;
  padding: 50px 22px 50px 0;
}

.compare-images,
.compare-before-wrap,
.compare-before,
.compare-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-images {
  overflow: hidden;
  background: #1e1d18;
  border: 1px solid rgba(255, 248, 232, 0.52);
}

.compare-before-wrap {
  width: calc(var(--split) * 1%);
  overflow: hidden;
  z-index: 2;
}

.compare-before,
.compare-after {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.compare-before {
  width: calc(10000% / var(--split));
  max-width: none;
  filter: grayscale(0.84) contrast(1.08);
}

.compare-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--split) * 1%);
  width: 2px;
  background: #fff8e8;
  transform: translateX(-1px);
  z-index: 4;
}

.compare-line::after {
  content: "<>";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--paper-light);
  border: 1px solid rgba(27, 23, 17, 0.24);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(11, 16, 12, 0.22);
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.compare-label {
  position: relative;
  position: absolute;
  bottom: 20px;
  z-index: 5;
  padding: 7px 10px;
  color: #fff8e8;
  background: rgba(18, 43, 34, 0.82);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-label.before {
  left: 20px;
}

.compare-label.after {
  right: 20px;
}

.compare-control {
  position: absolute;
  inset: 50px 22px 50px 0;
  z-index: 6;
}

.compare-control input {
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.craft-process {
  max-width: 1490px;
  margin: 0 auto 46px;
  padding: 34px clamp(20px, 4vw, 56px) 38px;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.craft-block {
  position: relative;
  min-height: 300px;
}

.craft-block h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.craft-block p:not(.eyebrow):not(.orange-note) {
  max-width: 470px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.material-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.material {
  width: 82px;
  height: 96px;
  border: 1px solid rgba(37, 31, 22, 0.16);
  background-image: url("../v4-services/generated/services-material-board-v2.webp");
  background-repeat: no-repeat;
  background-size: 520px auto;
  background-color: #e7d8c2;
  box-shadow: 0 12px 24px rgba(37, 28, 14, 0.14);
}

.material-hardwood {
  background-position: 30% 23%;
}

.material-marble {
  background-position: 74% 18%;
}

.material-metal {
  background-position: 54% 86%;
}

.material-stucco {
  background-position: 88% 46%;
}

.craft-note {
  position: absolute;
  right: -20px;
  bottom: 24px;
  max-width: 190px;
  transform: rotate(-8deg);
}

.process-block {
  border-left: 1px solid var(--line);
  padding-left: clamp(26px, 4vw, 56px);
}

.process-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-list li {
  min-height: 235px;
  padding: 0 clamp(12px, 1.4vw, 18px) 0 0;
  border-right: 1px solid var(--line);
}

.process-list li + li {
  padding-left: clamp(12px, 1.4vw, 18px);
}

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

.process-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 900;
}

.process-list h3 {
  margin-bottom: 12px;
  min-height: 2.16em;
  font-family: var(--serif);
  font-size: clamp(22px, 1.75vw, 27px);
  font-weight: 400;
  line-height: 1.08;
}

.process-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.project-life {
  position: relative;
  max-width: 1490px;
  margin: 0 auto 0;
  padding: 30px clamp(20px, 4vw, 56px) 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 32px;
  border-top: 1px solid var(--line);
}

.project-life h2 {
  margin: 8px 0 6px;
  font-size: clamp(31px, 3.4vw, 50px);
  line-height: 1;
}

.project-life p:not(.eyebrow):not(.orange-note) {
  color: var(--orange-deep);
  font-weight: 800;
}

.photo-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: calc(100% - 130px);
}

.photo-rail img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border: 1px solid rgba(43, 35, 24, 0.12);
  box-shadow: 0 14px 28px rgba(37, 28, 14, 0.12);
}

.rail-note {
  position: absolute;
  right: clamp(28px, 4vw, 72px);
  bottom: 76px;
  width: 150px;
  transform: rotate(-7deg);
}

.cta-band {
  position: relative;
  isolation: isolate;
  max-width: 1490px;
  min-height: 165px;
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 82px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  color: #fff8e8;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    var(--green);
  background-size: 40px 40px;
}

.cta-band h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 0.98;
}

.cta-band .eyebrow {
  color: #ff8b53;
}

.site-footer {
  max-width: 1490px;
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 82px) 42px;
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(28px, 5vw, 80px);
  color: #27231d;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 188px;
  margin-bottom: 20px;
  filter: brightness(0);
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
  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: #433d33;
  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;
  }

  .home-hero {
    grid-template-columns: 44px minmax(0, 1fr);
    padding-right: 0;
  }

  .field-number {
    display: none;
  }

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

  .proof-note {
    grid-column: 1 / -1;
    max-width: 260px;
  }

  .proof-item:nth-of-type(odd) {
    border-left: 0;
  }

  .story-section,
  .rebuild-section,
  .craft-process {
    grid-template-columns: 1fr;
  }

  .story-copy h2,
  .story-copy p:not(.eyebrow) {
    max-width: 760px;
  }

  .rebuild-photos {
    padding: 0 22px 50px;
  }

  .process-block {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 30px;
  }

  .photo-rail {
    max-width: 100%;
  }

  .rail-note {
    position: static;
    grid-column: 1 / -1;
    width: auto;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 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;
  }

  .brand img {
    width: 148px;
  }

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

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

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

  .field-rail {
    display: none;
  }

  .hero-stage {
    min-height: 640px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(13, 19, 16, 0.2), rgba(13, 19, 16, 0.14) 46%, rgba(13, 19, 16, 0.22)),
      linear-gradient(90deg, rgba(13, 19, 16, 0.35), rgba(13, 19, 16, 0.04) 58%, transparent);
  }

  .hero-copy-block {
    width: min(440px, 76%);
    padding: clamp(260px, 58vw, 380px) 24px 32px;
  }

  .hero-tagline {
    max-width: 320px;
    font-size: clamp(28px, 9vw, 46px);
  }

  .hero-note {
    left: 24px;
    right: auto;
    top: auto;
    bottom: 42px;
    width: 220px;
    font-size: 24px;
  }

  .hero-blueprint {
    width: 260px;
  }

  .proof-strip {
    margin: 0 14px;
    padding: 22px 18px;
    grid-template-columns: 1fr;
  }

  .proof-strip::after {
    width: 150px;
    top: -22px;
  }

  .proof-item,
  .proof-item:nth-of-type(odd) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 18px 0 0;
  }

  .story-section,
  .rebuild-section,
  .craft-process,
  .project-life {
    margin-top: 42px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .story-copy h2,
  .rebuild-copy h2,
  .craft-block h2,
  .cta-band h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .team-board {
    min-height: auto;
    padding: 12px 12px 48px;
  }

  .team-photo {
    height: 430px;
  }

  .field-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(300px, 92%);
    margin: -48px 14px 0 auto;
  }

  .rebuild-section::before {
    inset: 20px 14px 20px;
  }

  .rebuild-copy {
    min-height: auto;
    padding: 34px 24px;
  }

  .rebuild-photos {
    grid-template-columns: 1fr;
    min-height: clamp(300px, 78vw, 430px);
    padding: 0;
  }

  .rebuild-photos figure,
  .rebuild-photos figure:first-child {
    border: 1px solid rgba(255, 248, 232, 0.52);
  }

  .rebuild-photos img {
    min-height: 300px;
  }

  .compare-control {
    inset: 0;
  }

  .compare-tab {
    display: none;
  }

  .material-row {
    flex-wrap: wrap;
  }

  .craft-note {
    position: static;
    margin-top: 24px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-list h3 {
    min-height: 0;
  }

  .process-list li,
  .process-list li + li {
    min-height: 0;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-list span {
    margin-bottom: 12px;
  }

  .project-life {
    grid-template-columns: 1fr;
  }

  .photo-rail {
    max-width: none;
    grid-template-columns: repeat(5, 118px);
    gap: 9px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .photo-rail::-webkit-scrollbar {
    display: none;
  }

  .photo-rail img {
    aspect-ratio: 0.9;
    min-height: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
    padding: 30px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    margin-left: 14px;
    margin-right: 14px;
    padding: 28px 24px;
  }
}

@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;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 250px;
  }

  .hero-stage {
    min-height: 690px;
  }

  .team-photo {
    height: 360px;
  }

  .spec-tag div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .photo-rail {
    grid-template-columns: repeat(5, 108px);
  }
}
