:root {
  --yellow: #f5c400;
  --yellow-bright: #ffd31a;
  --ink: #111111;
  --ink-soft: #202020;
  --paper: #f4f1e8;
  --white: #ffffff;
  --muted: #6a6860;
  --line: rgba(17, 17, 17, 0.15);
  --radius: 6px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(17, 17, 17, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; min-height: 78px; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 40px; height: 40px; }
.brand-name {
  color: var(--white);
  font: 800 28px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.055em;
}
.brand-name span { color: var(--yellow); }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--yellow); }
.header-phone {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}
.phone-label {
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, #000, transparent 55%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; min-height: 690px; }
.hero-copy { align-self: center; padding: 90px 60px 90px 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 3px; background: currentColor; }
.eyebrow-dark { color: #6b5700; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(64px, 7.1vw, 104px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.87;
  text-transform: uppercase;
}
h1 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 590px; color: rgba(255, 255, 255, 0.7); font-size: 18px; line-height: 1.75; }
.service-area {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.service-area svg { width: 19px; fill: none; stroke: var(--yellow); stroke-width: 1.8; }
.service-area span { color: rgba(255, 255, 255, 0.56); font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 52px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .choice:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .menu-toggle:focus-visible, .text-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--yellow);
}
.button-primary { background: var(--yellow); color: var(--ink); }
.button-primary:hover { background: var(--yellow-bright); }
.button-secondary { border-color: rgba(255, 255, 255, 0.32); color: var(--white); background: transparent; }
.button-secondary:hover { border-color: var(--white); }
.button-secondary svg, .mobile-contact svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.trust-row { display: flex; gap: 24px; padding: 0; margin: 0; list-style: none; }
.trust-row li { display: grid; max-width: 125px; color: rgba(255, 255, 255, 0.62); font-size: 12px; line-height: 1.4; }
.trust-row span { margin-bottom: 5px; color: var(--yellow); font: 700 11px/1 "Archivo", sans-serif; }

.hero-visual { position: relative; min-width: 0; background: #282828; }
.tool-wall { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(145deg, #2d2d2d, #1b1b1b); }
.tool-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: radial-gradient(circle, #747474 1.5px, transparent 1.6px);
  background-size: 24px 24px;
}
.tool-wall::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 67%, rgba(245, 196, 0, 0.06) 67% 68%, transparent 68%);
}
.hero-tool { position: absolute; z-index: 1; color: rgba(255, 255, 255, 0.12); }
.hero-wrench { top: 75px; right: 42px; width: 185px; transform: rotate(12deg); }
.hero-level { bottom: 80px; left: 36px; width: 250px; transform: rotate(-4deg); color: rgba(245, 196, 0, 0.38); }
.peg { position: absolute; z-index: 1; width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); }
.peg-a { top: 16%; left: 16%; }
.peg-b { top: 42%; right: 18%; }
.peg-c { bottom: 13%; right: 31%; }
.job-card {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 50%;
  width: min(350px, 76%);
  padding: 26px;
  color: var(--ink);
  background: #f8f5ec;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(-2deg);
}
.job-card-top, .job-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.job-card-top { margin-bottom: 52px; font-size: 10px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.job-status { display: flex; align-items: center; gap: 7px; }
.job-status i { width: 7px; height: 7px; border-radius: 50%; background: #32a46b; }
.job-no { color: var(--muted); }
.job-card > p { margin-bottom: 2px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; }
.job-card > strong { font: 800 58px/0.9 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.job-lines { display: grid; gap: 8px; margin: 35px 0; }
.job-lines span { height: 2px; background: rgba(17, 17, 17, 0.14); }
.job-lines span:nth-child(2) { width: 82%; }
.job-lines span:nth-child(3) { width: 65%; }
.job-card-bottom { padding-top: 18px; border-top: 1px solid var(--line); color: #574800; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; }
.yellow-block {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 44%;
  padding: 22px 26px;
  color: var(--ink);
  background: var(--yellow);
  font: 700 21px/1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.capabilities { padding: 110px 0 120px; background: var(--paper); }
.section-heading { margin-bottom: 58px; }
.split-heading { display: grid; grid-template-columns: 1.15fr 0.65fr; gap: 90px; align-items: end; }
.section-heading h2, .work-intro h2, .quote-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}
.split-heading > p, .work-intro > p { margin: 0; color: var(--muted); }
.service-list { border-top: 1px solid var(--line); }
.service-item {
  display: grid;
  grid-template-columns: 58px 64px 1fr;
  align-items: center;
  gap: 24px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}
.service-item:hover { padding-inline: 22px; background: rgba(245, 196, 0, 0.12); }
.service-number { color: #8a867d; font: 700 11px/1 "Archivo", sans-serif; }
.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
}
.service-icon svg { width: 31px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-item > div:last-child { display: grid; grid-template-columns: minmax(180px, 0.7fr) 1.3fr; gap: 40px; align-items: center; }
.service-item h3 { margin: 0; font-size: 32px; line-height: 1; text-transform: uppercase; }
.service-item p { max-width: 560px; margin: 0; color: var(--muted); font-size: 14px; }

.work-wrap { display: grid; grid-template-columns: 0.34fr 1fr; gap: 62px; margin-top: 120px; scroll-margin-top: 100px; }
.work-intro { align-self: start; position: sticky; top: 120px; }
.work-intro h2 { margin-bottom: 22px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.project-heading {
  grid-column: 1 / -1;
  display: grid;
  gap: 3px;
  margin-bottom: 5px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}
.project-heading span { color: #6b5700; font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.project-heading strong { font: 700 28px/1.05 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.project-heading-next { margin-top: 44px; }
.project-pair { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.project-card { position: relative; overflow: hidden; aspect-ratio: 3 / 4; min-height: 0; margin: 0; background: #222; }
.project-card--landscape { aspect-ratio: 4 / 3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.65,.25,1); }
.project-card:hover img { transform: scale(1.025); }
.project-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.9);
  border-left: 4px solid var(--yellow);
}
.project-card figcaption span { color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.project-card figcaption strong { font: 700 22px/1.2 "Barlow Condensed", sans-serif; text-transform: uppercase; }

.quote-section { color: var(--white); background: var(--ink); scroll-margin-top: 78px; }
.quote-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; min-height: 760px; }
.quote-copy { padding: 110px 80px 100px 0; }
.quote-copy h2 { max-width: 420px; margin-bottom: 28px; font-size: clamp(58px, 6vw, 86px); }
.quote-copy > p { max-width: 450px; color: rgba(255, 255, 255, 0.65); }
.direct-contact { display: grid; margin-top: 70px; }
.direct-contact > span { color: var(--yellow); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.direct-contact a { margin: 7px 0 2px; font: 700 35px/1 "Barlow Condensed", sans-serif; text-decoration: none; }
.direct-contact small { color: rgba(255, 255, 255, 0.55); }
.quote-builder { padding: 72px 58px; color: var(--ink); background: var(--white); }
.builder-step { margin-bottom: 30px; }
.contact-step { padding-bottom: 6px; border-bottom: 1px solid #e2dfd7; }
.builder-label, .field label { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.field label.field-name { margin-bottom: 7px; color: #69655c; font-size: 10px; letter-spacing: 0.08em; }
.builder-label span, .field label span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 10px;
}
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.choice {
  min-height: 50px;
  padding: 10px 12px;
  border: 1px solid #d8d5cd;
  border-radius: 3px;
  background: #f6f4ef;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border 160ms ease, background 160ms ease;
}
.choice:hover { border-color: #837d70; }
.choice.is-selected { border-color: var(--ink); background: var(--yellow); box-shadow: inset 0 0 0 1px var(--ink); }
.builder-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 24px; }
.field input, .field select, .field textarea, textarea {
  width: 100%;
  border: 1px solid #d4d0c6;
  border-radius: 3px;
  color: var(--ink);
  background: #faf9f6;
}
.field input, .field select { min-height: 49px; padding: 0 14px; }
.field textarea, textarea { min-height: 105px; padding: 13px 14px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8a867e; }
.contact-email-field { margin-top: -4px; }
.field-help { display: block; margin-top: 7px; color: #7b776e; font-size: 11px; line-height: 1.45; }
.request-preview { margin-top: 6px; padding: 18px; border-left: 4px solid var(--yellow); background: #f2efe8; }
.preview-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.preview-head > span { font-size: 10px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.text-button { padding: 2px; border: 0; background: transparent; color: #6b655a; font-size: 11px; text-decoration: underline; cursor: pointer; }
.request-preview p { min-height: 45px; margin: 0; color: #59564f; font-size: 13px; line-height: 1.55; }
.form-actions { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10px; margin-top: 14px; }
.form-actions .button { width: 100%; }
.send-button svg, .copy-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-outline-dark { border-color: #c7c2b7; color: var(--ink); background: transparent; }
.button-outline-dark:hover { border-color: var(--ink); }
.button[disabled] { cursor: wait; opacity: .68; transform: none; }
.form-status { min-height: 24px; margin: 12px 0 0; color: #5f5b52; font-size: 12px; font-weight: 700; text-align: center; }
.form-status.is-success { color: #176b45; }
.form-status.is-error { color: #a1362b; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-note { margin: 10px 0 0; color: #7b776e; font-size: 10px; text-align: center; }

.site-footer { padding: 38px 0 110px; color: var(--white); background: #090909; border-top: 1px solid rgba(255,255,255,.1); }
.footer-row { display: grid; grid-template-columns: auto 1fr auto; gap: 42px; align-items: center; }
.brand-footer .brand-mark { width: 34px; height: 34px; }
.brand-footer .brand-name { font-size: 24px; }
.footer-row p { margin: 0; color: rgba(255, 255, 255, 0.54); font-size: 12px; }
.footer-meta { display: grid; gap: 3px; }
.footer-contact { display: flex; align-items: center; gap: 18px; }
.footer-phone { color: var(--yellow); font-weight: 700; text-decoration: none; }
.footer-instagram { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; text-underline-offset: 4px; }
.footer-instagram:hover, .footer-instagram:focus-visible { color: var(--yellow); }
.footer-row small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 10px; }
.mobile-contact { display: none; }
.toast {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(150%);
  opacity: 0;
  transition: 220ms ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; }

@media (max-width: 960px) {
  .container { width: min(100% - 36px, 760px); }
  .site-nav, .header-phone { display: none; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { width: 23px; height: 2px; background: var(--white); transition: 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav.is-open {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    padding: 30px 24px 36px;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
  }
  .site-nav.is-open a { padding: 10px 0; color: var(--white); font-size: 20px; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 82px 0 66px; }
  .hero-visual { min-height: 480px; }
  .trust-row { gap: 38px; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .work-wrap { grid-template-columns: 1fr; gap: 36px; }
  .work-intro { position: static; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-copy { padding: 95px 0 70px; }
  .direct-contact { margin-top: 45px; }
  .quote-builder { margin-inline: -18px; padding: 58px 42px 66px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 64px; }
  .container { width: min(100% - 32px, 560px); }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-name { font-size: 24px; }
  .site-nav.is-open { top: 68px; }
  .hero-copy { padding: 68px 0 56px; }
  h1 { font-size: clamp(57px, 19vw, 80px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; margin: 28px 0 42px; }
  .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-visual { min-height: 400px; margin-inline: -16px; }
  .job-card { width: 79%; padding: 22px; }
  .job-card-top { margin-bottom: 42px; }
  .job-card > strong { font-size: 48px; }
  .yellow-block { width: 54%; padding: 18px; font-size: 18px; }
  .hero-wrench { width: 142px; top: 42px; right: 13px; }
  .hero-level { width: 190px; bottom: 54px; left: 15px; }
  .capabilities { padding: 82px 0 86px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .work-intro h2 { font-size: 48px; }
  .service-item { grid-template-columns: 34px 52px 1fr; gap: 12px; padding-block: 24px; }
  .service-icon { width: 48px; height: 48px; }
  .service-item > div:last-child { display: block; }
  .service-item h3 { margin-bottom: 8px; font-size: 27px; }
  .service-item p { font-size: 12px; line-height: 1.55; }
  .work-wrap { margin-top: 84px; }
  .gallery { grid-template-columns: 1fr; }
  .project-pair { grid-template-columns: 1fr; }
  .project-card { min-height: 0; }
  .project-card figcaption { right: 12px; bottom: 12px; left: 12px; }
  .quote-copy { padding: 82px 0 58px; }
  .quote-copy h2 { font-size: 60px; }
  .quote-builder { padding: 46px 22px 60px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .builder-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; gap: 18px; }
  .footer-contact { flex-wrap: wrap; }
  .footer-row small { grid-column: auto; }
  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 64px;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-contact a:last-child { color: var(--ink); background: var(--yellow); }
  .toast { right: 12px; bottom: 76px; left: 12px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
