:root {
  --topbar-height: 68px;
  --ink: #111111;
  --paper: #f2efe8;
  --paper-2: #e4dfd2;
  --signal: #e6441f;
  --signal-dark: #a1270a;
  --signal-aa: #d43a15; /* AA-safe signal for small white-on-signal text (4.76:1 on #fff, 4.53:1 on door paper). CD contrast gate 2026-08-30. */
  --sea: #046c86;
  --leaf: #2e6b33;
  --line: #161616;
  --muted: #5a5a5a;
  --radius: 0;
  --amber: #d4820a;
  --shadow: 8px 8px 0 #171717;
  --space: 1.2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(0deg, rgba(0,0,0,0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--paper);
  line-height: 1.45;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27%3E%3Crect width=%271%27 height=%271%27 fill=%27%23111%27/%3E%3C/svg%3E");
  background-size: 4px 4px;
  z-index: 2;
}

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

.wrap {
  width: calc(100% - 2rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--signal);
  z-index: 9999;
  transition: width 80ms linear;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 100;
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--signal);
}
.skip-link:focus {
  top: 0;
  outline: none;
  z-index: 10000;
}

.topbar {
  border-bottom: 2px solid var(--line);
  background: #f9f7f2;
  position: sticky;
  top: 0;
  z-index: 10;
}

.topbar .wrap {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--signal);
  color: #fff;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.95rem;
}

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

.brand-name {
  font-family: "Archivo Black", Impact, sans-serif;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--line);
  background: #fff;
  padding: 0.4rem 0.65rem;
  font-weight: 700;
  cursor: pointer;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 1;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--line);
  outline: none;
  background: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--signal);
  transition: width 180ms ease, left 180ms ease;
  z-index: -1;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
  left: 0%;
}

.cta-chip {
  border: 2px solid var(--line) !important;
  background: var(--signal);
  color: #fff;
}

.nav a.cta-chip::after { background: #fff; }
.nav a.cta-chip:hover::after { background: rgba(255,255,255,0.6); }

/* ===== Hero ===== */
.hero {
  padding: clamp(2rem, 4.5vw, 3.4rem) 0 2.6rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image:
    repeating-linear-gradient(45deg, var(--amber) 0, var(--amber) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(-45deg, var(--amber) 0, var(--amber) 1px, transparent 1px, transparent 10px),
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27%3E%3Crect width=%271%27 height=%271%27 fill=%27%23111%27/%3E%3C/svg%3E");
  background-size: 10px 10px, 10px 10px, 4px 4px;
  pointer-events: none;
  z-index: 0;
  animation: heroMeshPulse 6s ease-in-out infinite;
}

@keyframes heroMeshPulse {
  0%, 100% { opacity: 0.045; }
  50%      { opacity: 0.065; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  align-items: start;
}

.hero-note {
  display: inline-block;
  margin: 0 0 1rem;
  border: 2px solid var(--line);
  background: var(--paper-2);
  padding: 0.35rem 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.85rem, 5.6vw, 3.55rem);
  text-transform: uppercase;
  max-width: 11ch;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 0.95rem;
}

.hero-copy {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 44ch;
  margin: 0 0 1.15rem;
}

.hero-tickets {
  display: grid;
  gap: 0.7rem;
  max-width: 440px;
  margin-bottom: 1rem;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
  text-decoration: none;
  padding: 0.82rem 1rem;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.ticket:hover,
.ticket:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--line);
  outline: none;
}

.ticket-kicker {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.ticket-title {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.ticket-go {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
}

.ticket-hire {
  background: var(--signal-aa);
  color: #fff;
}

.ticket-buy {
  background: #fff;
  color: var(--ink);
}

.nap-line {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.nap-line a {
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero-window {
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-0.8deg);
  max-width: 560px;
  margin-left: auto;
  overflow: hidden;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.82rem 0.95rem;
  border-bottom: 2px solid var(--line);
  background: #111;
  color: #fff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.panel-head .status {
  color: var(--ink);
  font-size: 0.68rem;
}

.hero-window .product-shot {
  margin: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

.hero-window .product-shot img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.window-cap {
  margin: 0;
  padding: 0.85rem 1rem;
  border-top: 2px solid var(--line);
  background: var(--paper-2);
  font-size: 0.92rem;
}

.window-cap strong {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
}

/* ===== Status chips ===== */
.status {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0.28rem 0.5rem;
  border: 2px solid var(--line);
  background: var(--paper-2);
  white-space: nowrap;
}
.status.live { border-color: var(--leaf); background: #d4edda; }
.status.pilot { border-color: var(--amber); background: #f5e6c8; }
.status.beta { border-color: var(--sea); background: #d5ecec; }
.status.client { border-color: var(--line); background: var(--paper-2); }
.status.preorder { border-color: var(--line); background: #fff; }
.status.soon { border-color: var(--amber, #d4820a); background: #fff; }
.status.internal { border-color: var(--line); background: var(--paper-2); }

/* ===== Live demo framing (Roundtable 2026-08-26) ===== */
.hg-demo {
  background: var(--paper);
  border-top: 2px solid var(--line);
  padding: 3.2rem 0 2rem;
}
.hg-demo .wrap { max-width: var(--shell-wrap, 1120px); }
.hg-demo-kicker {
  margin: 0 0 0.4rem;
  font-family: var(--hg-font-mono, ui-monospace, monospace);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--signal);
}
.hg-demo-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hg-demo-body {
  margin: 0 0 0.6rem;
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}
.hg-demo-cta {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

/* ===== Proof strip ===== */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 1.2rem 0;
  border-top: 3px solid var(--signal);
  border-bottom: 2px solid var(--line);
}

.trust-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  border: 2px solid rgba(255,255,255,0.3);
  padding: 0.65rem 1rem;
  text-align: center;
  min-width: 150px;
  transition: transform 120ms ease, border-color 120ms ease;
  cursor: default;
}

.trust-badge[href] {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.trust-badge[href]:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

.trust-badge:hover,
.trust-badge:active {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.7);
}

.trust-badge b {
  display: block;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.trust-badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}

/* ===== Sections ===== */
section {
  padding: 2.5rem 0;
  border-top: 2px solid var(--line);
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.32rem 0.56rem;
  border: 2px solid var(--line);
  border-left: 6px solid var(--amber);
  background: #fff;
}

.section-head { margin-bottom: 1.2rem; }

h2 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 5.6vw, 3.05rem);
  margin-bottom: 0.7rem;
}

.section-head p {
  margin: 0;
  max-width: 68ch;
  font-size: 1.05rem;
}

.btn {
  display: inline-block;
  border: 2px solid var(--line);
  padding: 0.72rem 1rem;
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--line);
  outline: none;
}

.btn-solid { background: var(--ink); color: #fff; }
.btn-signal { background: var(--signal); color: #fff; }

/* ===== Job stamps ===== */
.job-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.job-stamp {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem 1rem 1.05rem;
  box-shadow: 5px 5px 0 var(--line);
  text-decoration: none;
  display: grid;
  gap: 0.4rem;
  align-content: start;
  transition: transform 120ms ease, box-shadow 120ms ease;
  border-top: 8px solid var(--signal);
}

.job-stamp:nth-child(2) { border-top-color: var(--amber); }
.job-stamp:nth-child(3) { border-top-color: var(--sea); }
.job-stamp:nth-child(4) { border-top-color: var(--leaf); }

.job-stamp:hover,
.job-stamp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 5px 7px 0 var(--line);
  outline: none;
}

.job-num {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.job-stamp h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.job-stamp p {
  margin: 0;
  font-size: 0.95rem;
}

.job-go {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ===== Process ===== */
.process-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.step {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem;
  box-shadow: 5px 5px 0 var(--line);
  display: grid;
  gap: 0.35rem;
}

.step b {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--signal);
}

.step h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.step p { margin: 0; font-size: 0.95rem; }

/* ===== Two doors ===== */
.doors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.door {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.door-hire { background: #fff8f5; }
.door-buy { background: #fffdf8; }

.door-tag {
  display: inline-block;
  width: fit-content;
  border: 2px solid var(--line);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
}

.door-hire .door-tag { background: var(--signal-aa); }

.door h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.door > p { margin: 0; }

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
  border-top: 2px solid var(--line);
  padding: 0.55rem 0;
  font-size: 0.95rem;
}

.price-list li:first-child { border-top: 0; }

.price-list b {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.door .btn { justify-self: start; margin-top: 0.2rem; }

.door-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ===== Portfolio ===== */
.portfolio-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.product {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem;
  box-shadow: 5px 5px 0 var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.product:hover {
  transform: translateY(-2px);
  box-shadow: 5px 7px 0 var(--line), inset 8px 0 0 var(--amber);
  border-left: 4px solid var(--amber);
  padding-left: calc(1rem - 4px);
}

.product:nth-child(odd) { background: #fffdf8; }
.product:nth-child(2) { background: #eef7fa; }
.product:nth-child(3) { background: #f7f0ea; }

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--line);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.product .product-top h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.product p {
  margin: 0;
  max-width: 65ch;
}

.product-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.product-meta li {
  border: 2px solid var(--line);
  padding: 0.2rem 0.45rem;
  background: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.product a {
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.product-action {
  border-top: 2px solid var(--line);
  background: var(--paper);
  padding: 0.55rem 1rem;
  margin: 0.2rem 0 0;
  transition: background 120ms ease;
}

.product .product-action { margin-top: auto; }

.product-action:hover,
.product-action:focus-within { background: #fff; }

.product-action a {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
}

.product-shot {
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  margin: 0.2rem 0 0;
  line-height: 0;
  overflow: hidden;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.product-shot--wide { aspect-ratio: 16 / 9; }

.product-shot--wide img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product:hover .product-shot {
  box-shadow: 10px 10px 0 var(--line);
}

.board-also {
  margin-top: 1.6rem;
  border: 2px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.board-also-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--line);
  background: var(--paper-2);
}

.board-also-head h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.board-also-head p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 48ch;
}

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

.board-also-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-top: 2px solid var(--line);
}

.board-also-list li:first-child { border-top: 0; }

.board-also-list b {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.board-also-list span.note {
  display: block;
  margin-top: 0.2rem;
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--ink);
}

.board-also-list a {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dealership Kernel Coming Soon — Harbor Grit shelf tile (2026-09-01) */
.board-also-list li.ks-shelf {
  background: var(--paper);
  box-shadow: inset 8px 0 0 0 var(--amber);
}
.board-also-list li.ks-shelf a {
  border: 2px solid var(--line);
  background: #fff;
  padding: 0.35rem 0.55rem;
  box-shadow: 4px 4px 0 #171717;
  text-decoration: none;
}
.board-also-list li.ks-shelf a:hover,
.board-also-list li.ks-shelf a:focus-visible {
  background: var(--signal);
  color: #fff;
  outline: none;
}

/* ===== Cases / blog ===== */
.case-grid,
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.case {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem;
  box-shadow: 5px 5px 0 var(--line);
  display: grid;
  gap: 0.55rem;
  align-content: start;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.case::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--amber);
  transition: width 180ms ease;
  z-index: 1;
  pointer-events: none;
}

.case:hover::before { width: 100%; }

.case:hover {
  transform: translateY(-2px);
  box-shadow: 5px 7px 0 var(--line);
}

.case-badge {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--line);
  background: #fff;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 0.75rem;
  float: right;
  margin: 0 0 0.5rem 0.5rem;
}

.case::after {
  content: "";
  display: table;
  clear: both;
}

.case h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.15rem;
  margin: 0;
}

.case .who {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--signal-dark);
}

.case p { margin: 0; font-size: 0.97rem; }

.case .lbl {
  font-weight: 700;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.case-result {
  margin-top: 0.35rem;
  padding: 0.45rem 0.6rem;
  background: #fff;
  border: 2px solid var(--line);
  border-left: 4px solid var(--signal);
  font-weight: 700;
  font-size: 0.92rem;
}

.text-link {
  font-weight: 700;
  text-underline-offset: 3px;
}

.case.blog-card::before { background: var(--sea); }

.blog-tag {
  display: inline-block;
  margin: 0 0 0.55rem;
  background: var(--paper-2);
  border: 2px solid var(--line);
  padding: 0.22rem 0.5rem;
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.blog-read {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.service {
  border: 2px solid var(--line);
  padding: 0.95rem;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 120ms ease;
}

.service:hover { transform: translateY(-2px); }

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--signal);
}

.service:nth-child(2)::before { background: var(--sea); }
.service:nth-child(3)::before { background: var(--leaf); }
.service:nth-child(4)::before { background: var(--amber); }

.service h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
  padding-left: 0.6rem;
}

.service p {
  margin: 0;
  padding-left: 0.6rem;
}

.service .text-link {
  display: inline-block;
  margin-top: 0.55rem;
  padding-left: 0.6rem;
}

.service-price {
  margin-top: 0.4rem;
  display: inline-block;
  padding: 0.35rem 0.55rem;
  background: #fff;
  border: 2px solid var(--line);
  font-weight: 700;
  font-size: 0.88rem;
}

.service:nth-child(1) .service-price { color: var(--signal-dark); }
.service:nth-child(2) .service-price { color: var(--sea); }
.service:nth-child(3) .service-price { color: var(--leaf); }
.service:nth-child(4) .service-price { color: var(--amber); }

/* ===== About ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-copy,
.about-box {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.about-copy p { margin: 0 0 0.9rem; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.about-points li {
  border: 2px solid var(--line);
  padding: 0.45rem 0.55rem;
  background: #f7f7f7;
}

.about-box {
  background: #111;
  color: #fff;
  display: grid;
  gap: 0.65rem;
}

.about-box b {
  font-family: "Archivo Black", Impact, sans-serif;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
}

.about-box p {
  margin: 0;
  color: #ddd;
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-quote {
  border-top: 2px solid #333;
  padding-top: 0.7rem;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: #d4d4d4;
  line-height: 1.45;
  font-style: italic;
}

.about-quote cite {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-weight: 700;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0;
}

.faq-q {
  padding: 0.9rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--signal);
}
details[open] .faq-q::after { content: "−"; }

.faq-a {
  padding: 0 1rem 0.9rem;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
}
.faq-a p { margin: 0; }

.faq-item {
  border: 2px solid var(--line);
  background: #fff;
  margin-bottom: 0.6rem;
  box-shadow: 4px 4px 0 var(--line);
  padding-left: 1rem;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 4px 5px 0 var(--line);
}

.faq-item[open] {
  border-left-color: var(--signal);
  border-left-width: 4px;
  padding-left: calc(1rem - 2px);
}

.faq-item:nth-child(2)[open] { border-left-color: var(--sea); }
.faq-item:nth-child(3)[open] { border-left-color: var(--leaf); }
.faq-item:nth-child(4)[open] { border-left-color: var(--amber); }
.faq-item:nth-child(5)[open] { border-left-color: var(--signal); }

/* ===== Contact ===== */
.contact-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.95rem;
}

.contact-copy,
.contact-form {
  border: 2px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.contact-copy p { margin: 0 0 0.85rem; }

.door-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.door-opt {
  border: 2px solid var(--line);
  background: #fff;
  padding: 0.65rem 0.7rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.door-opt:has(input:checked) {
  background: var(--signal);
  color: #fff;
}

.door-opt input { accent-color: var(--ink); }

.field { margin-bottom: 0.72rem; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.32rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field input,
.field textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 0;
  font: inherit;
  padding: 0.68rem;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid #f2ca57;
  outline-offset: 0;
  border-color: var(--line);
}

.hp {
  position: absolute;
  left: -10000px;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.submit {
  width: 100%;
  border: 2px solid var(--line);
  background: var(--signal);
  color: #fff;
  padding: 0.78rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--line);
}

.submit:hover,
.submit:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--line);
  outline: none;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-micro {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ===== Footer ===== */
.footer {
  border-top: 2px solid var(--line);
  padding: 1.35rem 0 2rem;
  background: #171717;
  color: #efefef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  align-items: start;
}

.footer h3 {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.footer p {
  margin: 0;
  color: #d4d4d4;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-links a {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  background: #fff;
  color: #111;
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 380ms ease, transform 380ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta { display: none; }

.sticky-chip {
  position: fixed;
  bottom: 6.5rem;
  right: 1.4rem;
  z-index: 30;
  display: none;
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--line);
  box-shadow: 5px 5px 0 var(--line);
  max-width: 300px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 380ms ease, transform 380ms ease;
}
.sticky-chip.show {
  opacity: 1;
  transform: translateY(0);
}
.sticky-chip .chip-link {
  display: block;
  padding: 0.85rem 2.2rem 0.85rem 1rem;
  color: #fff;
  text-decoration: none;
}
.sticky-chip .chip-title {
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.2rem;
}
.sticky-chip .chip-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
}
.chip-dismiss {
  position: absolute;
  top: 0.3rem;
  right: 0.4rem;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  line-height: 1;
}
.chip-dismiss:hover { color: #fff; }
.chip-dismiss:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

@media (min-width: 720px) {
  :root { --space: 1.4rem; }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 1.4rem;
    align-items: center;
  }

  .job-grid,
  .process-row,
  .portfolio-wall,
  .services-grid,
  .case-grid,
  .blog-grid,
  .doors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .contact-area {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

@media (min-width: 1000px) {
  :root { --topbar-height: 74px; }
  .topbar .wrap { min-height: 74px; }

  .job-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .process-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: 1.2fr 0.8fr; }
  .contact-area { grid-template-columns: 0.95fr 1.05fr; }
}

@media (min-width: 1100px) {
  .sticky-chip.show { display: block; }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    border-top: 2px solid var(--line);
    border-bottom: 2px solid var(--line);
    background: #f6f1e8;
    display: flex;
    flex-direction: column;
    padding: 0.65rem 1rem 0.85rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    border: 2px solid var(--line);
    background: #fff;
  }

  .nav a.cta-chip {
    background: var(--signal);
    color: #fff;
  }

  .nav a::after { display: none; }

  .hero-window {
    margin: 0;
    transform: none;
    max-width: none;
  }

  h1 { max-width: 12ch; }

  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: block;
    background: var(--signal-aa);
    color: #fff;
    text-align: center;
    padding: 0.82rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    text-decoration: none;
    border-top: 2px solid var(--line);
    box-shadow: 0 -4px 0 rgba(0,0,0,0.08);
  }
  .mobile-cta:hover { background: #d12b06; }
  body { padding-bottom: 7rem; }

  .dc-widget .dc-launcher,
  .dc-skin-harbor-grit .dc-launcher {
    bottom: calc(3.6rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero::before {
    animation: none;
    opacity: 0.055;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .sticky-chip { transition: none; }
}
