:root {
  --ink: #111513;
  --ink-soft: #1a201d;
  --paper: #e6e2d9;
  --paper-strong: #f2efe8;
  --muted: #60665f;
  --line: #c9c5bb;
  --line-dark: #343b37;
  --accent: #d9a84f;
  --accent-dark: #9e7120;
  --green: #83a58d;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

::selection {
  background: var(--accent);
  color: var(--ink);
}

.site-header {
  align-items: center;
  background: rgba(17, 21, 19, 0.97);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-strong);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, 1fr);
  min-height: 82px;
  padding: 14px max(28px, calc((100vw - 1280px) / 2));
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--accent);
  background: rgba(217, 168, 79, 0.035);
  display: inline-flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
  width: 44px;
}

.brand-mark img {
  height: 100%;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.brand small {
  color: #9ea49f;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 30px;
}

.site-header nav a {
  color: #c5c9c5;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--paper-strong);
}

.header-cta {
  border-bottom: 1px solid #5d655f;
  font-size: 13px;
  font-weight: 650;
  justify-self: end;
  padding: 5px 0;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-self: end;
}

.language-switcher {
  border: 1px solid #414944;
  display: inline-flex;
  padding: 2px;
}

.language-switcher button {
  appearance: none;
  background: transparent;
  border: 0;
  color: #aab0ab;
  cursor: pointer;
  font: 650 10px/1 Inter, "Helvetica Neue", Arial, sans-serif;
  height: 28px;
  letter-spacing: 0.06em;
  padding: 0;
  width: 30px;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--paper-strong);
}

.language-switcher button.is-active {
  background: var(--accent);
  color: var(--ink);
}

.header-cta span {
  color: var(--accent);
  margin-left: 8px;
}

.hero {
  background: var(--ink);
  background-image: url("./og-card.png");
  background-position: center;
  background-size: cover;
  color: var(--paper-strong);
  display: grid;
  gap: clamp(44px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.75fr);
  min-height: 720px;
  overflow: hidden;
  padding: clamp(74px, 8vw, 120px) max(28px, calc((100vw - 1280px) / 2)) 92px;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero::before {
  border-left: 1px solid #252b28;
  height: 100%;
  left: calc(50% - 1px);
  top: 0;
}

.hero::after {
  border-top: 1px solid #252b28;
  left: 0;
  right: 0;
  top: 188px;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-shade {
  background: rgba(17, 21, 19, 0.78);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.section-kicker {
  align-items: center;
  color: var(--accent-dark);
  display: flex;
  font-size: 11px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: 0.15em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero-assurance {
  border-left: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0 0 28px;
  max-width: 680px;
  padding: 2px 0 3px 17px;
}

.hero-assurance span {
  color: #c8ccc9;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-assurance strong {
  color: #858d88;
  font-size: 10px;
  font-weight: 560;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.promise h2,
.risk-copy h2,
.deliverables h2,
.experience-copy h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
  max-width: 790px;
}

.hero h1 em {
  color: var(--accent);
  display: block;
  font-weight: 400;
}

.hero-lead {
  color: #bec4bf;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
  margin: 32px 0 0;
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 28px;
  justify-content: center;
  letter-spacing: 0.025em;
  min-height: 52px;
  padding: 0 23px;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-accent:hover,
.button-accent:focus-visible {
  background: #efbf66;
}

.cta-primary-large {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  font-size: 17px;
  justify-content: space-between;
  min-height: 82px;
  min-width: min(390px, 100%);
  padding: 0 36px;
}

.cta-primary-large:hover,
.cta-primary-large:focus-visible {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.button-ghost {
  border: 1px solid #454c48;
  color: #d9ddda;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #8a918c;
  color: #fff;
}

.hero-stats {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  max-width: 680px;
  padding-top: 22px;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 20px;
}

.hero-stats > div + div {
  border-left: 1px solid var(--line-dark);
  padding-left: 24px;
}

.hero-stats strong {
  color: var(--paper-strong);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  color: #858d88;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  align-self: center;
  border: 1px solid #454c48;
  margin-top: 12px;
  padding: 14px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
}

.hero-visual::before {
  background: var(--accent);
  height: 1px;
  left: -28px;
  top: 32px;
  width: 55px;
}

.hero-visual::after {
  background: var(--accent);
  height: 55px;
  left: -1px;
  top: 5px;
  width: 1px;
}

.hero-project-sheet {
  aspect-ratio: 3 / 2;
  background: rgba(8, 11, 10, 0.3);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.hero-project-sheet img {
  background: #f3f0e8;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.section-shell {
  margin: 0 auto;
  max-width: 1340px;
  padding: 110px 30px;
}

.promise {
  background: var(--paper);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.promise::before {
  background-image: url("./section-backgrounds/approach.webp");
  background-position: center 38%;
  background-size: cover;
  content: "";
  filter: grayscale(1) contrast(1.08);
  inset: 0;
  opacity: 0.075;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.promise-grid {
  align-items: start;
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
}

.promise h2,
.section-heading h2,
.deliverables h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.promise-grid > p {
  color: #454b47;
  font-size: 19px;
  line-height: 1.75;
  margin: 4px 0 0;
}

.principles {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}

.principles article {
  min-height: 225px;
  padding: 30px 36px 35px 0;
}

.principles article + article {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.principles article > span,
.service-card > span,
.process-steps article > span {
  color: var(--accent-dark);
  font-family: monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.principles h3,
.service-card h3,
.process-steps h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 48px 0 10px;
}

.principles p,
.service-card p,
.process-steps p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.services {
  background: var(--paper);
  max-width: none;
  padding-left: max(30px, calc((100vw - 1280px) / 2));
  padding-right: max(30px, calc((100vw - 1280px) / 2));
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
}

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

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

.service-card {
  --service-art: url("./section-backgrounds/approach.webp");
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  isolation: isolate;
  min-height: 285px;
  overflow: hidden;
  padding: 28px 30px 34px;
  position: relative;
  transition: background-color 180ms ease, transform 180ms ease;
}

.service-card::before {
  background-image: var(--service-art);
  background-position: center;
  background-size: cover;
  content: "";
  filter: grayscale(1) contrast(1.12);
  inset: 0;
  opacity: 0.095;
  pointer-events: none;
  position: absolute;
  transition: opacity 180ms ease, transform 320ms ease;
  z-index: -1;
}

.service-card-01 {
  --service-art: url("./section-backgrounds/reconstruction.webp");
}

.service-card-02 {
  --service-art: url("./section-backgrounds/roof-aspen-2d.webp");
}

.service-card-02::before {
  background-image: url("./section-backgrounds/roof-aspen-2d.webp"),
    url("./section-backgrounds/roof-aspen-3d.webp");
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 58% auto, 58% auto;
}

.service-card-03 {
  --service-art: url("./section-backgrounds/sip.webp");
}

.service-card-04 {
  --service-art: url("./section-backgrounds/foundation.webp");
}

.service-card-05 {
  --service-art: url("./section-backgrounds/metal.webp");
}

.service-card-06 {
  --service-art: url("./section-backgrounds/facade-module-section.webp");
}

.service-card-06::before {
  background-position: center 42%;
}

.service-card-07 {
  --service-art: url("./section-backgrounds/approach.webp");
  grid-column: 1 / -1;
  min-height: 235px;
}

.service-card-07 h3 {
  margin-top: 34px;
}

.service-card:hover {
  background: var(--paper);
  transform: translateY(-3px);
}

.service-card:hover::before {
  opacity: 0.15;
  transform: scale(1.025);
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  margin-top: 54px;
}

.risk-section {
  background: var(--ink-soft);
  color: var(--paper-strong);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  min-height: 650px;
  padding: 110px max(30px, calc((100vw - 1280px) / 2));
}

.section-kicker-light {
  color: var(--accent);
}

.risk-copy h2,
.experience-copy h2,
.contact h2 {
  font-size: clamp(40px, 5vw, 62px);
}

.risk-copy > p:not(.section-kicker) {
  color: #bdc3be;
  font-size: 17px;
  line-height: 1.8;
  margin: 30px 0 0;
  max-width: 640px;
}

.risk-copy .risk-result {
  border-left: 2px solid var(--accent);
  color: #e5e7e4;
  font-size: 15px;
  margin-top: 36px;
  padding: 4px 0 4px 22px;
}

.risk-diagram {
  border: 1px solid var(--line-dark);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.risk-diagram::before,
.risk-diagram::after {
  content: "";
  position: absolute;
}

.risk-diagram::before {
  border-left: 1px solid #2b322e;
  height: 100%;
  left: 50%;
}

.risk-diagram::after {
  border-top: 1px solid #2b322e;
  left: 0;
  top: 50%;
  width: 100%;
}

.diagram-node {
  align-items: center;
  background: var(--ink-soft);
  border: 1px solid #657069;
  display: flex;
  font-size: 12px;
  font-weight: 650;
  justify-content: center;
  letter-spacing: 0.05em;
  min-height: 50px;
  padding: 9px 14px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  z-index: 3;
}

.node-main {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  left: 50%;
  top: 49px;
  transform: translateX(-50%);
  width: 180px;
}

.node-a,
.node-b,
.node-c {
  bottom: 55px;
  width: 150px;
}

.node-a {
  left: 6%;
}

.node-b {
  left: 50%;
  transform: translateX(-50%);
}

.node-c {
  right: 6%;
}

.diagram-line {
  border-left: 1px solid #8b958e;
  height: 185px;
  position: absolute;
  top: 99px;
  transform-origin: top;
  width: 1px;
  z-index: 2;
}

.line-one {
  left: 49%;
  transform: rotate(43deg);
}

.line-two {
  left: 50%;
}

.line-three {
  left: 51%;
  transform: rotate(-43deg);
}

.diagram-note {
  color: #69716c;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  position: absolute;
  text-transform: uppercase;
}

.note-a {
  left: 8%;
  top: 26px;
}

.note-b {
  right: 7%;
  top: 26px;
}

.note-c {
  bottom: 15px;
  right: 7%;
}

.projects {
  padding-bottom: 130px;
}

.projects-heading {
  align-items: end;
}

.text-link {
  border-bottom: 1px solid #a9a69d;
  font-size: 13px;
  font-weight: 700;
  justify-self: end;
  padding: 5px 0;
}

.text-link span {
  color: var(--accent-dark);
  margin-left: 8px;
}

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

.project-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: block;
  min-width: 0;
  transition: border-color 180ms ease, transform 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: #9d9a90;
  transform: translateY(-5px);
}

.project-image {
  background: var(--paper);
  overflow: hidden;
  position: relative;
}

.project-image img {
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.project-card:hover .project-image img {
  transform: scale(1.025);
}

.project-image > span {
  background: var(--ink);
  bottom: 0;
  color: var(--accent);
  font-family: monospace;
  font-size: 10px;
  padding: 9px 11px;
  position: absolute;
  right: 0;
}

.project-copy {
  min-height: 190px;
  padding: 25px 25px 24px;
  position: relative;
}

.project-copy > p {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.project-copy h3 {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.3;
  margin: 15px 0 40px;
}

.project-copy > span {
  bottom: 21px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  right: 24px;
}

.deliverables {
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  max-width: none;
  padding-left: max(30px, calc((100vw - 1280px) / 2));
  padding-right: max(30px, calc((100vw - 1280px) / 2));
}

.deliverables .section-kicker {
  background: var(--ink);
  border-left: 5px solid var(--accent);
  color: var(--paper-strong);
  font-size: 14px;
  letter-spacing: 0.18em;
  margin-bottom: 30px;
  padding: 11px 17px 10px 15px;
  width: max-content;
}

.deliverables-copy > p:last-child {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 30px 0 0;
  max-width: 570px;
}

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

.deliverables-list li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 35px 1fr;
  min-height: 70px;
  padding: 13px 0;
}

.deliverables-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.deliverables-list span {
  color: var(--accent-dark);
  font-family: monospace;
  font-size: 10px;
}

.deliverables-list p {
  font-size: 15px;
  font-weight: 650;
  margin: 0;
}

.experience {
  background: #202622;
  color: var(--paper-strong);
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
}

.experience-number {
  align-items: center;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  padding: 80px 30px;
  text-align: center;
}

.experience-number strong {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(110px, 14vw, 190px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.experience-number span {
  color: #969d98;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 30px;
  text-transform: uppercase;
}

.experience-copy {
  align-self: center;
  max-width: 800px;
  padding: 90px clamp(40px, 8vw, 140px);
}

.experience-copy > p:not(.section-kicker) {
  color: #b8beb9;
  font-size: 17px;
  line-height: 1.85;
  margin: 30px 0 0;
}

.experience-copy blockquote {
  border-top: 1px solid var(--line-dark);
  color: var(--paper-strong);
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.5;
  margin: 38px 0 0;
  padding: 26px 0 0;
}

.process {
  padding-bottom: 130px;
}

.process .section-heading {
  grid-template-columns: minmax(0, 0.75fr) 1fr;
}

.process-heading {
  align-items: center;
  min-height: 405px;
}

.process-proof {
  height: 360px;
  position: relative;
}

.process-proof img {
  background: #fff;
  border: 1px solid #bbb6aa;
  box-shadow: 0 18px 38px rgba(17, 21, 19, 0.14);
  height: 205px;
  object-fit: cover;
  position: absolute;
  width: 300px;
}

.process-proof img:nth-child(1) { left: 2%; top: 12px; transform: rotate(-5deg); }
.process-proof img:nth-child(2) { right: 2%; top: 0; transform: rotate(5deg); }
.process-proof img:nth-child(3) { bottom: 4px; left: 17%; transform: rotate(3deg); }
.process-proof img:nth-child(4) { bottom: 0; right: 11%; transform: rotate(-4deg); }

.process-steps {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}

.process-steps article {
  min-height: 250px;
  padding: 28px 28px 35px 0;
}

.process-steps article + article {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.process-steps h3 {
  margin-top: 55px;
}

.contact {
  align-items: end;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  padding: 90px max(30px, calc((100vw - 1280px) / 2));
}

.contact .section-kicker {
  color: #684708;
}

.contact h2 {
  max-width: 800px;
}

.contact > div:first-child > p:last-child {
  font-size: 17px;
  line-height: 1.7;
  margin: 28px 0 0;
  max-width: 700px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button-light {
  background: var(--ink);
  color: var(--paper-strong);
  justify-content: space-between;
  min-height: 62px;
}

.button-light:hover,
.button-light:focus-visible {
  background: #242a27;
}

.contact-platform {
  align-items: center;
  border: 1px solid rgba(17, 21, 19, 0.35);
  display: flex;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 22px;
}

.contact-platform span {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-platform strong {
  font-size: 13px;
}

footer {
  align-items: start;
  background: var(--ink);
  color: var(--paper-strong);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr auto;
  padding: 55px max(30px, calc((100vw - 1280px) / 2)) 38px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.footer-brand strong {
  font-size: 14px;
}

.footer-brand p {
  color: #777f7a;
  font-size: 11px;
  margin: 3px 0 0;
}

.footer-links {
  display: flex;
  gap: 26px;
}

.footer-links a {
  border-bottom: 1px solid #444b47;
  color: #b8beb9;
  font-size: 12px;
  padding-bottom: 4px;
}

.copyright {
  border-top: 1px solid var(--line-dark);
  color: #6d756f;
  font-size: 10px;
  grid-column: 1 / -1;
  letter-spacing: 0.08em;
  margin: 0;
  padding-top: 24px;
  text-transform: uppercase;
}

.header-cta-accent {
  background: var(--accent);
  border: 0;
  color: #111512;
  min-height: 38px;
  padding: 0 14px;
}

.site-header .header-actions .header-cta-accent,
.site-header .header-actions .header-cta-accent span,
.site-header .header-actions .header-cta-accent [data-i18n],
.contact-evaluate span,
.request-submit span {
  color: #111512 !important;
}

.header-cta-accent:hover,
.header-cta-accent:focus-visible {
  background: #efbf66;
}

.behance-cta {
  align-items: center;
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 68px max(30px, calc((100vw - 1280px) / 2));
}

.behance-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
}

.behance-cta p:not(.section-kicker) {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 720px;
}

.request-page {
  background: var(--paper);
}

.request-hero {
  align-items: end;
  background-image: linear-gradient(90deg, rgba(11, 14, 13, 0.96) 0%, rgba(11, 14, 13, 0.86) 54%, rgba(11, 14, 13, 0.38) 100%), url("./og-card.png");
  background-position: center;
  background-size: cover;
  color: var(--paper-strong);
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  min-height: 620px;
  padding: clamp(85px, 10vw, 135px) max(30px, calc((100vw - 1280px) / 2));
}

.request-hero h1,
.request-section h2,
.thanks-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
}

.request-hero h1 {
  font-size: clamp(50px, 6vw, 82px);
  max-width: 920px;
}

.request-hero-copy > p:not(.section-kicker) {
  color: #c4cac6;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
  margin: 30px 0 0;
  max-width: 790px;
}

.request-note {
  align-items: flex-start;
  border-top: 1px solid #454c48;
  display: flex;
  gap: 14px;
  margin-top: 38px;
  max-width: 760px;
  padding-top: 22px;
}

.request-note > span { color: var(--accent); font-weight: 800; }
.request-note p { color: #929a95; font-size: 13px; margin: 0; }

.request-hero-aside {
  border-left: 1px solid rgba(217, 168, 79, 0.5);
  padding: 8px 0 8px 34px;
}

.request-hero-aside strong {
  color: var(--accent);
  display: block;
  font-family: Georgia, serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 0.85;
}

.request-hero-aside > span {
  color: #aab1ac;
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-top: 18px;
  text-transform: uppercase;
}

.request-hero-aside p {
  color: #d2d6d3;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
  margin: 40px 0 0;
}

.project-request-form { margin: 0; }
.request-section { min-height: 0; padding-bottom: 120px; padding-top: 120px; }
.request-section-paper { background: var(--paper-strong); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }

.request-section-heading {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 55px minmax(0, 1fr);
  margin-bottom: 58px;
}

.request-section-heading > span {
  color: var(--accent-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  padding-top: 8px;
}

.request-section h2 { font-size: clamp(38px, 4.5vw, 60px); max-width: 980px; }
.request-section-heading div > p:last-child { color: var(--muted); margin: 22px 0 0; max-width: 760px; }

.format-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 83px;
}

.choice-card,
.document-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.choice-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  padding: 22px 24px;
}

.choice-card:hover,
.document-card:hover { border-color: #a89d87; transform: translateY(-2px); }

.choice-card input,
.document-card > label > input { height: 1px; opacity: 0; position: absolute; width: 1px; }

.choice-card:has(input:checked),
.document-card:has(> label > input:checked) {
  background: #fffaf0;
  border-color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px var(--accent-dark);
}

.choice-index { color: var(--accent-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
.choice-card strong { font-family: Georgia, serif; font-size: 27px; font-weight: 400; line-height: 1.15; margin-top: 30px; }
.choice-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 13px 0 20px; }

.choice-action {
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 15px;
  text-transform: uppercase;
}

.choice-badge {
  background: var(--accent);
  color: var(--ink);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px;
}

.document-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 83px;
}

.document-card { min-height: 245px; }
.document-card > label { cursor: pointer; display: block; min-height: 180px; padding: 22px 24px 18px; }

.document-check {
  border: 1px solid #aca79e;
  display: block;
  height: 22px;
  margin-left: auto;
  position: relative;
  width: 22px;
}

.document-card:has(> label > input:checked) .document-check { background: var(--accent); border-color: var(--accent-dark); }
.document-card:has(> label > input:checked) .document-check::after { content: "✓"; font-size: 14px; font-weight: 800; left: 4px; position: absolute; top: -1px; }
.document-card small { color: var(--accent-dark); display: block; font-size: 9px; font-weight: 750; letter-spacing: 0.12em; margin-top: 14px; text-transform: uppercase; }
.document-card h3 { font-family: Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.18; margin: 12px 0 0; }
.document-card label p,
.document-card details p { color: var(--muted); font-size: 13px; line-height: 1.62; }
.document-card details { border-top: 1px solid var(--line); padding: 0 28px; }
.document-card summary { color: var(--accent-dark); cursor: pointer; font-size: 10px; font-weight: 750; letter-spacing: 0.08em; list-style: none; padding: 16px 0; text-transform: uppercase; }
.document-card summary::after { content: "+"; float: right; font-size: 16px; line-height: 0.8; }
.document-card details[open] summary::after { content: "−"; }
.document-card ul { color: var(--muted); font-size: 12px; line-height: 1.55; margin: 0; padding: 0 0 20px 17px; }
.document-card-help { background: #e1d8c7; }

.project-proof-card {
  background: #fff;
  border: 1px solid var(--line);
  margin: 0 0 18px;
  overflow: hidden;
}

.project-proof-card img {
  display: block;
  height: 185px;
  object-fit: cover;
  width: 100%;
}

.project-proof-card figcaption {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  padding: 10px 12px 12px;
}

.conditional-panel {
  background: var(--ink-soft);
  color: var(--paper-strong);
  margin: 34px 0 0 83px;
  padding: 38px;
}

.conditional-panel[hidden] { display: none; }
.conditional-heading { display: grid; gap: 25px; grid-template-columns: 70px minmax(0, 1fr); }
.conditional-heading > span { color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
.conditional-heading h3 { font-family: Georgia, serif; font-size: 28px; font-weight: 400; line-height: 1.15; margin: 0; }
.conditional-heading p { color: #9fa6a1; font-size: 13px; margin: 10px 0 0; }

.compact-options,
.detail-check-grid,
.output-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); margin-top: 30px; }

.compact-options label,
.detail-check-grid label,
.output-grid label {
  align-items: flex-start;
  border: 1px solid #454c48;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 11px;
  line-height: 1.45;
  min-height: 54px;
  padding: 15px;
}

.compact-options input,
.detail-check-grid input,
.output-grid input { accent-color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.compact-options label:has(input:checked),
.detail-check-grid label:has(input:checked) { border-color: var(--accent); color: var(--accent); }
.output-grid { grid-template-columns: repeat(3, 1fr); margin-left: 83px; }
.output-grid label { border-color: var(--line); min-height: 65px; }
.output-grid label:has(input:checked) { background: #fffaf0; border-color: var(--accent-dark); }

.request-contact-section {
  background: var(--ink-soft);
  color: var(--paper-strong);
  max-width: none;
  padding-left: max(30px, calc((100vw - 1280px) / 2));
  padding-right: max(30px, calc((100vw - 1280px) / 2));
}

.request-contact-section .request-section-heading div > p:last-child { color: #aab1ac; }
.request-contact-grid { display: grid; gap: 65px; grid-template-columns: minmax(0, 1fr) 360px; margin-left: 83px; }
.request-fields { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.request-fields label > span:first-child { color: #cdd2ce; display: block; font-size: 11px; letter-spacing: 0.04em; margin-bottom: 8px; }

.request-fields input:not([type="checkbox"]):not([type="file"]),
.request-fields select,
.request-fields textarea {
  background: #101412;
  border: 1px solid #414844;
  border-radius: 0;
  color: var(--paper-strong);
  font: inherit;
  min-height: 54px;
  padding: 12px 14px;
  width: 100%;
}

.request-fields textarea { resize: vertical; }
.request-fields input:focus,
.request-fields select:focus,
.request-fields textarea:focus { border-color: var(--accent); outline: 0; }
.field-wide { grid-column: 1 / -1; }
.file-field { border: 1px dashed #59615c; padding: 18px; }
.file-field input { color: #adb4af; font-size: 12px; }
.file-field small { color: #7e8781; display: block; font-size: 11px; margin-top: 10px; }
.consent { align-items: flex-start; color: #858e88; display: flex; font-size: 11px; gap: 10px; }
.consent input { accent-color: var(--accent); margin-top: 4px; }
.request-submit { border: 0; cursor: pointer; grid-column: 1 / -1; justify-self: start; margin-top: 8px; }

.request-contact-aside { border-left: 1px solid #48504b; padding-left: 34px; }
.request-contact-aside ol { list-style: none; margin: 28px 0 0; padding: 0; }
.request-contact-aside li { border-top: 1px solid #3c433f; display: grid; gap: 18px; grid-template-columns: 34px 1fr; padding: 18px 0; }
.request-contact-aside li span { color: var(--accent); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.request-contact-aside li p { color: #c4cac6; font-size: 13px; margin: 0; }
.request-safe { color: #8d9690; font-size: 12px; line-height: 1.65; margin: 30px 0 0; }

.thanks-hero {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(10, 13, 12, 0.97), rgba(10, 13, 12, 0.65)), url("./og-card.png");
  background-position: center;
  background-size: cover;
  color: var(--paper-strong);
  display: flex;
  min-height: 680px;
  padding: 100px max(30px, calc((100vw - 1280px) / 2));
}

.thanks-hero > div { max-width: 850px; }
.thanks-hero h1 { font-size: clamp(52px, 7vw, 88px); }
.thanks-hero p:not(.section-kicker) { color: #bec5c0; font-size: 18px; line-height: 1.7; max-width: 720px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
  }

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

  .risk-section {
    grid-template-columns: 1fr;
  }

  .risk-diagram {
    min-height: 390px;
  }

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

  .process-steps article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .process-steps article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    min-height: 72px;
    padding: 11px 20px;
  }

  .brand small {
    display: none;
  }

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

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

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    font-size: 11px;
  }

  .header-cta > span:last-child {
    display: none;
  }

  .language-switcher button {
    height: 26px;
    width: 27px;
  }

  .hero {
    gap: 62px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 72px 22px 80px;
  }

  .hero-shade {
    background: rgba(17, 21, 19, 0.84);
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    top: 162px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: space-between;
    width: 100%;
  }

  .hero-stats {
    gap: 18px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 17px;
  }

  .hero-visual {
    margin: 0 12px 0 0;
    padding: 12px;
  }

  .section-shell {
    padding: 82px 22px;
  }

  .promise-grid,
  .section-heading,
  .deliverables,
  .experience,
  .contact {
    grid-template-columns: 1fr;
  }

  .promise-grid,
  .section-heading,
  .deliverables,
  .contact {
    gap: 35px;
  }

  .promise-grid > p {
    font-size: 17px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .principles article {
    min-height: 190px;
  }

  .principles article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .principles h3 {
    margin-top: 35px;
  }

  .services {
    padding-left: 22px;
    padding-right: 22px;
  }

  .service-grid,
  .project-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

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

  .risk-section {
    gap: 55px;
    padding: 82px 22px;
  }

  .risk-copy h2,
  .experience-copy h2,
  .contact h2 {
    font-size: 42px;
  }

  .risk-copy > p:not(.section-kicker),
  .experience-copy > p:not(.section-kicker) {
    font-size: 15px;
  }

  .risk-diagram {
    min-height: 350px;
  }

  .node-a,
  .node-b,
  .node-c {
    bottom: 43px;
    font-size: 9px;
    min-height: 44px;
    padding: 6px;
    width: 28%;
  }

  .diagram-line {
    height: 150px;
  }

  .text-link {
    justify-self: start;
  }

  .project-grid {
    gap: 18px;
  }

  .deliverables {
    padding-bottom: 100px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .experience-number {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    min-height: 340px;
  }

  .experience-number strong {
    font-size: 130px;
  }

  .experience-copy {
    padding: 80px 22px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .process-steps article,
  .process-steps article + article,
  .process-steps article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 220px;
    padding-left: 0;
  }

  .process-steps article:first-child {
    border-top: 0;
  }

  .contact {
    padding: 75px 22px;
  }

  .contact-actions {
    margin-top: 10px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 48px 22px 35px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 1080px) {
  .process .section-heading { grid-template-columns: 1fr; }
  .process-proof { margin-top: 26px; }
  .format-grid,
  .document-grid { grid-template-columns: repeat(2, 1fr); }

  .request-contact-grid { grid-template-columns: 1fr; }
  .request-contact-aside { border-left: 0; border-top: 1px solid #48504b; padding-left: 0; padding-top: 35px; }
}

@media (max-width: 780px) {
  .behance-cta { grid-template-columns: 1fr; padding: 58px 22px; }
  .behance-cta .button { justify-self: start; }
  .request-hero { gap: 55px; grid-template-columns: 1fr; min-height: 0; padding: 78px 22px; }
  .request-hero h1 { font-size: 48px; }
  .request-hero-aside { padding-left: 24px; }
  .request-section { padding: 78px 22px; }
  .request-section-heading { grid-template-columns: 38px minmax(0, 1fr); }
  .format-grid,
  .document-grid,
  .output-grid,
  .request-contact-grid,
  .conditional-panel { margin-left: 0; }
  .format-grid,
  .document-grid,
  .output-grid,
  .compact-options,
  .detail-check-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: 225px; }
  .process-proof { height: 300px; }
  .process-proof img { height: 160px; width: 55%; }
  .conditional-panel { padding: 28px 22px; }
  .conditional-heading { grid-template-columns: 1fr; }
  .request-fields { grid-template-columns: 1fr; }
  .request-fields label,
  .request-submit { grid-column: 1; }
}

@media (max-width: 560px) {
  .request-page .site-header .brand > span:last-child { display: none; }
  .request-page .header-cta { display: none; }
  .request-page .language-switcher button { width: 25px; }
  .request-hero h1 { font-size: 42px; }
  .request-section-heading { display: block; }
  .request-section-heading > span { display: block; margin-bottom: 15px; }
  .document-card > label { min-height: 0; }
}

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

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