/* ============================================================
   Henson Engineering — Cinematic
   Dark warm charcoal, photo-led, type minimal. Documentary feel.
   ============================================================ */

:root {
  --bg: #14110d;
  --bg-2: #1c1813;
  --bg-3: #211d17;
  --line: #2a251c;
  --line-strong: #3a342a;
  --paper: #efe6d0;
  --paper-dim: #c8bea8;
  --paper-mute: #8a8175;
  --paper-soft: #a59c8a;
  --accent: #d4a23a;
  --accent-2: #b8501e;
  --gutter: clamp(20px, 4vw, 40px);
  --max: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html { background: var(--bg); }

body {
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--paper);
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.025em;
}
h3 { font-size: 22px; letter-spacing: -0.018em; }
p { margin: 0 0 1em; color: var(--paper-dim); }
p:last-child { margin-bottom: 0; }
.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--paper-dim);
  max-width: 48ch;
}
.eyebrow {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: inline-block;
}
.eyebrow-accent { color: var(--accent); }
.mono { font-family: "Geist Mono", ui-monospace, monospace; }

a { color: inherit; }

/* ---------- Container ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.bleed { padding: 0 var(--gutter); }

/* ---------- Utility bar (top, very subtle) ---------- */
.h-utility {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.h-utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.h-utility a { color: var(--paper-dim); text-decoration: none; }
.h-utility a:hover { color: var(--accent); }
.h-utility .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ec07a; box-shadow: 0 0 8px rgba(78,192,122,.55); display: inline-block; }
.h-utility .left { display: flex; gap: 12px; align-items: center; }
.h-utility .right { display: flex; gap: 16px; align-items: center; }
@media (max-width: 720px) {
  .h-utility .container { gap: 10px; }
  .h-utility .open-long { display: none; }
  .h-utility .email-show { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--paper);
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  filter: invert(1);
}
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.brand-divider {
  width: 1px; height: 28px;
  background: var(--line-strong);
  margin: 0 4px;
}
.brand-name {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--paper-mute);
}
.brand-sub {
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 3px;
}
@media (max-width: 560px) {
  .brand-logo { height: 26px; }
  .brand-divider, .brand-name, .brand-sub { display: none; }
}

.nav { display: flex; gap: 32px; justify-content: center; }
.nav a {
  text-decoration: none;
  color: var(--paper-dim);
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 4px 0;
  position: relative;
  transition: color .15s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}
.nav a:hover, .nav a.active { color: var(--paper); }
.nav a.active::after, .nav a:hover::after { transform: scaleX(1); }

/* Header CTA */
.tel-line {
  text-decoration: none;
  color: var(--paper);
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.tel-line::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,162,58,.18);
}
.tel-line:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  color: var(--paper);
}
.nav-toggle span {
  width: 18px; height: 1.5px; background: var(--paper); position: relative; display: block;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; inset: 0; background: var(--paper);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(6px); }

.mobile-nav { display: none; background: var(--bg-2); border-top: 1px solid var(--line); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  text-decoration: none;
  color: var(--paper);
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: grid; }
}

/* ---------- Sticky / banner / button (CTA tweak) ---------- */
.sticky-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--accent);
  color: var(--bg);
  padding: 13px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  font-family: "Geist", sans-serif;
}
.sticky-call .num { font-family: "Geist Mono", monospace; font-weight: 600; font-size: 17px; }
@media (max-width: 760px) {
  body.cta-style-sticky .sticky-call { display: flex; }
  body.cta-style-sticky { padding-bottom: 56px; }
}
.floating-banner {
  display: none;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.floating-banner .num { font-family: "Geist Mono", monospace; font-weight: 600; }
body.cta-style-banner .floating-banner { display: flex; }
body.cta-style-button .sticky-call { display: none !important; }

/* ---------- Image placeholder (cinematic) ---------- */
.simg {
  background: #2a251c linear-gradient(135deg, #2a251c 25%, #3a342a 25%, #3a342a 50%, #2a251c 50%, #2a251c 75%, #3a342a 75%);
  background-size: 14px 14px;
  position: relative;
  overflow: hidden;
}
.simg-paper {
  background: #efe6d0 linear-gradient(135deg, #efe6d0 25%, #e3d9c0 25%, #e3d9c0 50%, #efe6d0 50%, #efe6d0 75%, #e3d9c0 75%);
}
.simg::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: rgba(0,0,0,.6);
  padding: 5px 9px;
  pointer-events: none;
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 3;
}
.simg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.simg.has-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.45) 100%);
  z-index: 2;
  pointer-events: none;
}
.simg-paper::after { color: #6c624e; background: rgba(255,255,255,.6); }
.simg-empty::after { display: none; }

/* ---------- HERO (home) ---------- */
.hero {
  position: relative;
  height: clamp(560px, 78vh, 780px);
  margin: 0 var(--gutter);
  overflow: hidden;
}
.hero > .simg { position: absolute; inset: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,13,0) 35%, rgba(20,17,13,.85) 100%),
    linear-gradient(90deg, rgba(20,17,13,.5) 0%, rgba(20,17,13,0) 40%);
  pointer-events: none;
}
.hero-corner {
  position: absolute; top: 24px; left: 0; right: 0;
  padding: 0 var(--gutter);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}
.hero-corner .l, .hero-corner .r {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper-dim);
  pointer-events: auto;
}
.hero-corner .r { text-align: right; }
.hero-text {
  position: absolute; left: 0; right: 0; bottom: 40px;
  padding: 0 var(--gutter);
  z-index: 3;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-text h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 14ch;
  color: var(--paper);
  font-weight: 500;
}
.hero-text p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--paper-dim);
  max-width: 36ch;
  margin: 0;
}
.hero-text .cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-top: 18px;
}
@media (max-width: 760px) {
  .hero-text { grid-template-columns: 1fr; gap: 18px; }
  .hero-corner { top: 16px; }
  .hero-corner .r { display: none; }
}

/* ---------- Sub-page head (short hero) ---------- */
.page-head {
  position: relative;
  margin: 0 var(--gutter);
  min-height: 360px;
  overflow: hidden;
  padding: 80px 0 56px;
}
.page-head > .simg {
  position: absolute; inset: 0;
}
.page-head::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,.3) 0%, rgba(20,17,13,.85) 80%);
}
.page-head .inner {
  position: relative; z-index: 2;
  padding: 0 var(--gutter);
}
.page-head .crumbs {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 14px;
}
.page-head .crumbs a { color: var(--paper-mute); text-decoration: none; }
.page-head .crumbs a:hover { color: var(--accent); }
.page-head .crumbs span { color: var(--paper); }
.page-head .head-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.page-head .lead { margin-top: 8px; }
@media (max-width: 800px) {
  .page-head .head-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Sections ---------- */
.section { padding: 80px var(--gutter); border-bottom: 1px solid var(--line); }
.section-tight { padding: 56px var(--gutter); }
.section-bleed { padding: 80px 0; border-bottom: 1px solid var(--line); }
.section-paper {
  background: var(--paper);
  color: #1d1812;
  border-bottom: 1px solid var(--line);
}
.section-paper h2, .section-paper h3 { color: #1d1812; }
.section-paper p, .section-paper .lead { color: #4a4234; }
.section-paper .eyebrow { color: #8a7a4a; }

.svc-strip {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.svc-strip h2 { max-width: 14ch; margin-top: 14px; }
.svc-strip .lead { margin-top: 18px; }
@media (max-width: 900px) {
  .svc-strip { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Service tiles ---------- */
.svc-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .svc-tiles { grid-template-columns: 1fr; } }

.svc-tile {
  position: relative;
  text-decoration: none;
  color: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: block;
  background: var(--bg-2);
  transition: border-color .2s ease, transform .2s ease;
}
.svc-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.svc-tile .simg { aspect-ratio: 4/3; }
.svc-tile .lab {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}
.svc-tile .lab .n {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--paper-mute);
}
.svc-tile .lab h3 { font-size: 18px; font-weight: 500; }
.svc-tile .lab .arr {
  font-family: "Geist Mono", monospace;
  font-size: 14px;
  color: var(--accent);
  transition: transform .2s ease;
}
.svc-tile:hover .arr { transform: translateX(4px); }

/* full-bleed feature tile */
.full-tile {
  position: relative;
  height: clamp(420px, 56vh, 620px);
  margin: 0 var(--gutter);
  overflow: hidden;
  border: 1px solid var(--line);
}
.full-tile > .simg { position: absolute; inset: 0; }
.full-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,0) 40%, rgba(20,17,13,.85) 100%);
}
.full-tile-overlay {
  position: absolute; left: 0; right: 0; bottom: 36px;
  padding: 0 36px;
  z-index: 3;
  color: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.full-tile-overlay h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  max-width: 18ch;
}
.full-tile-overlay .meta {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-dim);
  text-align: right;
}
.full-tile-overlay .more {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  margin-top: 12px;
  display: inline-block;
}
@media (max-width: 700px) {
  .full-tile-overlay { grid-template-columns: 1fr; padding: 0 24px; bottom: 24px; }
  .full-tile-overlay .meta { text-align: left; }
}

/* ---------- Recent work mosaic ---------- */
.work-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 8px;
  padding: 8px var(--gutter) 80px;
}
.work-mosaic .simg { aspect-ratio: 4/3; }
.work-mosaic .feat { grid-row: span 2; }
.work-mosaic .feat .simg { aspect-ratio: auto; height: 100%; }
@media (max-width: 700px) {
  .work-mosaic { grid-template-columns: 1fr 1fr; }
  .work-mosaic .feat { grid-row: span 1; }
  .work-mosaic .feat .simg { aspect-ratio: 4/3; height: auto; }
}

/* ---------- Quote / pull quote ---------- */
.quote-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 var(--gutter);
  padding: 80px 0;
  text-align: center;
}
.quote-strip blockquote {
  font-family: "Geist", sans-serif;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--paper);
  max-width: 28ch;
  margin: 0 auto;
}
.quote-strip cite {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-top: 24px;
  font-style: normal;
}
.quote-strip cite .name { color: var(--paper-dim); }

/* ---------- Materials chips ---------- */
.chip-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 800px) { .chip-band { grid-template-columns: 1fr; gap: 24px; } }
.chip-band h3 { font-size: 15px; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  color: var(--paper-dim);
  background: var(--bg-2);
}

/* ---------- Contact band ---------- */
.contact-band {
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid var(--line);
}
.contact-band .big {
  font-family: "Geist Mono", monospace;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-block;
  margin-top: 14px;
}
.contact-band .big:hover { color: var(--paper); }
.contact-band .lines {
  font-size: 14px;
  color: var(--paper-dim);
  line-height: 1.8;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.02em;
}
.contact-band .lines a { color: var(--paper-dim); text-decoration: none; border-bottom: 1px solid var(--paper-mute); padding-bottom: 1px; }
.contact-band .lines a:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 700px) { .contact-band { grid-template-columns: 1fr; gap: 24px; padding: 56px var(--gutter); } }

/* ---------- HT Steel band ---------- */
.htsteel-band {
  margin: 0 var(--gutter);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.htsteel-band .mark {
  width: 56px; height: 56px;
  border: 1px solid var(--paper-mute);
  display: grid; place-items: center;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--paper);
}
.htsteel-band h3 { font-size: 22px; line-height: 1.2; margin-bottom: 6px; max-width: 36ch; }
.htsteel-band p { font-size: 14px; color: var(--paper-dim); margin: 0; max-width: 60ch; }
.htsteel-band .link {
  color: var(--accent);
  text-decoration: none;
  font-family: "Geist Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  white-space: nowrap;
}
.htsteel-band .link:hover { color: var(--paper); border-color: var(--paper); }
@media (max-width: 800px) {
  .htsteel-band { grid-template-columns: 1fr; gap: 18px; }
  .htsteel-band .link { justify-self: start; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 28px var(--gutter);
  border-top: 1px solid var(--line);
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer a { color: var(--paper-mute); text-decoration: none; }
.footer a:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--bg);
  transition: all .15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--paper); color: var(--bg); border-color: var(--paper); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-accent:hover { background: var(--paper); border-color: var(--paper); }
.btn-lg { padding: 15px 22px; font-size: 15px; }
.btn .num { font-family: "Geist Mono", monospace; font-weight: 600; }

.text-link {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  display: inline-block;
}
.text-link:hover { color: var(--paper); border-color: var(--paper); }

/* ---------- Service detail page ---------- */
.svc-detail-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 80px var(--gutter);
  border-bottom: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) { .svc-detail-body { grid-template-columns: 1fr; gap: 32px; padding: 56px var(--gutter); } }

.svc-aside { font-size: 14px; }
.svc-aside p { color: var(--paper-dim); margin-bottom: 24px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: top;
  color: var(--paper-dim);
}
.spec-table tr:first-child td { border-top: 1px solid var(--line); }
.spec-table td:first-child {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-mute);
  width: 42%;
  padding-right: 12px;
}

.svc-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 600px) { .svc-list { grid-template-columns: 1fr; } }
.svc-list li {
  font-size: 15px;
  color: var(--paper);
  padding: 14px 16px 14px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
}
.svc-list li:nth-child(even) { border-right: 0; }
@media (max-width: 600px) { .svc-list li { border-right: 0; } }
.svc-list li::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%;
  width: 10px; height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
}

.svc-cta-card {
  margin-top: 36px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.svc-cta-card .ttl {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}
.svc-cta-card .sub { font-size: 14px; color: var(--paper-dim); }
.svc-cta-card .num { font-family: "Geist Mono", monospace; color: var(--accent); font-weight: 600; }

.prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.prevnext a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 36px var(--gutter);
  text-decoration: none;
  color: var(--paper);
  border-right: 1px solid var(--line);
  transition: background .15s ease;
}
.prevnext a:last-child { border-right: 0; text-align: right; align-items: flex-end; }
.prevnext a:hover { background: var(--bg-2); }
.prevnext .lab {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
}
.prevnext .ttl { font-size: 22px; font-weight: 500; }

/* ---------- About stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat .k {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 10px;
}
.stat .v {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper);
  word-break: break-word;
}
.stat .v.v-sm { font-size: 24px; }
.stat .sub { font-size: 13px; color: var(--paper-mute); margin-top: 6px; }

/* ---------- 3-step "how we work" ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step .n {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.step h3 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.step p { color: var(--paper-dim); }

/* ---------- About row ---------- */
.row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.row-2col .simg { aspect-ratio: 5/4; }
@media (max-width: 900px) { .row-2col { grid-template-columns: 1fr; gap: 28px; } }
.row-2col h2 { margin-bottom: 16px; }
.row-2col p { margin-bottom: 14px; }

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
  max-width: var(--max); margin-left: auto; margin-right: auto;
  padding: 0 0;
}
.gallery-filter {
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper-dim);
  cursor: pointer;
  transition: all .15s ease;
}
.gallery-filter:hover { color: var(--paper); border-color: var(--paper); }
.gallery-filter.active { background: var(--paper); color: var(--bg); border-color: var(--paper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-grid .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-grid .item .simg { aspect-ratio: 1/1; transition: transform .4s ease; width: 100%; height: 100%; }
.gallery-grid .item:hover .simg { transform: scale(1.04); }
.gallery-grid .item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 100%);
  color: var(--paper);
  opacity: 0;
  transition: opacity .2s ease;
}
.gallery-grid .item:hover .cap { opacity: 1; }
.gallery-grid .item .cap h4 { font-size: 15px; margin-bottom: 4px; font-weight: 500; }
.gallery-grid .item .cap .meta {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.gallery-grid .item.tall .simg { aspect-ratio: 3/4; }
.gallery-grid .item.feat { grid-column: span 2; grid-row: span 2; }
.gallery-grid .item.feat .simg { aspect-ratio: auto; height: 100%; min-height: 100%; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .item.feat { grid-column: span 2; grid-row: span 1; }
  .gallery-grid .item.feat .simg { aspect-ratio: 1/1; }
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  padding: 56px var(--gutter);
  border-right: 1px solid var(--line);
}
.contact-form-wrap {
  padding: 56px var(--gutter);
  background: var(--bg-2);
}
@media (max-width: 900px) {
  .contact-info { border-right: 0; border-bottom: 1px solid var(--line); }
}
.info-block { margin-bottom: 28px; }
.info-block .label {
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 8px;
  display: block;
}
.info-block .value {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--paper);
  line-height: 1.4;
}
.info-block a.value { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.info-block a.value:hover { color: var(--accent); }
.info-block .value.mono { font-family: "Geist Mono", monospace; font-weight: 500; font-size: 22px; }
.info-block .sub { font-size: 13px; color: var(--paper-mute); margin-top: 6px; }
.map-embed { margin-top: 8px; aspect-ratio: 16/9; position: relative; overflow: hidden; border: 1px solid var(--line); }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--paper-mute);
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  font-family: "Geist", sans-serif;
  font-size: 15px;
  color: var(--paper);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,162,58,.18);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-error {
  font-family: "Geist Mono", monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-2); margin-top: 6px;
}
.success-banner {
  background: rgba(78,192,122,.15);
  border: 1px solid #4a8a5a;
  color: #a7d4b0;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: "Geist Mono", monospace;
  letter-spacing: 0.04em;
}

/* ---------- 404 ---------- */
.notfound { padding: 120px var(--gutter); text-align: center; }
.notfound .num { font-family: "Geist Mono", monospace; font-size: 80px; color: var(--accent); line-height: 1; margin-bottom: 14px; }

/* ---------- Density tweak ---------- */
body.density-compact .section { padding: 56px var(--gutter); }
body.density-compact .page-head { min-height: 280px; padding: 56px 0 40px; }
body.density-compact .hero { height: clamp(440px, 62vh, 620px); }
body.density-airy .section { padding: 112px var(--gutter); }
body.density-airy .page-head { min-height: 420px; padding: 100px 0 72px; }
body.density-airy .hero { height: clamp(620px, 88vh, 820px); }

/* ---------- Accent tweak ---------- */
/* set via JS on :root */

/* ---------- Hero treatment tweak ---------- */
body.hero-textured .hero > .simg {
  background:
    radial-gradient(circle at 25% 30%, rgba(212,162,58,.16), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(184,80,30,.18), transparent 60%),
    #1c1814 linear-gradient(135deg, #1c1814 25%, #2a251c 25%, #2a251c 50%, #1c1814 50%, #1c1814 75%, #2a251c 75%);
  background-size: auto, auto, 14px 14px;
}
body.hero-split .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  min-height: 560px;
}
body.hero-split .hero > .simg {
  position: relative;
  inset: auto;
  width: 100%; height: 100%;
  min-height: 560px;
}
body.hero-split .hero::after { display: none; }
body.hero-split .hero-corner { display: none; }
body.hero-split .hero-text {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  padding: 48px var(--gutter);
  bottom: auto; left: auto; right: auto;
  align-items: end;
  background: var(--bg);
  grid-template-columns: 1fr;
}
body.hero-split .hero > .simg { grid-column: 2; grid-row: 1; }
@media (max-width: 800px) {
  body.hero-split .hero { grid-template-columns: 1fr; }
  body.hero-split .hero > .simg { min-height: 320px; }
}
