/* ------------------------------------------------------------------
   _shared/base.css
   Brand-neutral foundation consumed by every archetype. Palette, type,
   and scale are driven entirely by CSS custom properties. The :root
   below is the DEFAULT token set; generate.js injects a per-prospect
   <style id="brand-tokens"> AFTER the stylesheet link, so brand tokens
   override these defaults (equal specificity, later wins). Veils and
   overlays are derived from --bg with color-mix so they track any palette.

   Also owns the frozen contact-form styles (the form markup is the single
   shared partial archetypes/_shared/contact-form.partial.html), the header,
   footer, buttons, make-it-mine CTA, reveal animation, and a11y utilities.
   ------------------------------------------------------------------ */

:root {
  /* palette (default: charcoal-sienna) */
  --bg: #0d0e0a;
  --surface: #161812;
  --surface-2: #1f221c;
  --text: #f4ede0;
  --text-soft: rgba(244,237,224,0.78);
  --text-mute: rgba(244,237,224,0.55);
  --text-dim: rgba(244,237,224,0.22);
  --accent: #c47753;
  --accent-deep: #a4623f;
  --highlight: #9bb47a;
  --on-accent: #f4ede0;
  --rule: rgba(244,237,224,0.14);
  /* type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display-clamp: clamp(2.6rem, 6.2vw, 5.4rem);
  --display-lh: 0.98;
  --display-ls: -0.015em;
  --base-size: 17px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--base-size);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; }
a:hover { color: var(--accent); }

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 900px) { .wrap { padding: 0 56px; } }

.skip {
  position: absolute; left: -9999px;
  background: var(--text); color: var(--bg); padding: 10px 16px;
}
.skip:focus { left: 8px; top: 8px; z-index: 1000; }

/* ---------- Shared type primitives ---------- */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 22px;
  display: flex; align-items: center; gap: 14px;
}
.kicker-line { display: inline-block; width: 32px; height: 1px; background: var(--accent); }
.kicker-center { justify-content: center; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--display-clamp);
  line-height: var(--display-lh);
  letter-spacing: var(--display-ls);
  color: var(--text);
  margin: 0 0 24px;
}
.display em { font-style: italic; color: var(--highlight); font-weight: 400; }

.section-lede { font-size: 1.05rem; color: var(--text-soft); max-width: 50ch; margin: 0; }
.section-head { margin: 0 0 56px; max-width: 640px; }
.section-head-center { margin: 0 auto 64px; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--on-accent); transform: translateY(-1px); }
.btn-block { width: 100%; padding: 18px 32px; }
.btn-link { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; }
.btn-link:hover { color: var(--accent); }

/* ---------- Header ---------- */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; padding: 0; }
.header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; row-gap: 12px; padding-top: 28px; padding-bottom: 28px; }
.wordmark { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; flex-shrink: 0; }
.wordmark-text { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: -0.005em; color: var(--text); }
.wordmark-sub { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.3em; color: var(--text-mute); text-transform: uppercase; }
.nav { display: none; gap: 36px; align-items: center; }
.nav a { color: var(--text-soft); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; position: relative; padding-bottom: 4px; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s ease; }
.nav a:hover::after { width: 100%; }
.header-phone { color: var(--text); font-family: var(--serif); font-weight: 500; font-size: 18px; font-feature-settings: "lnum"; border-bottom: 1px solid var(--text-dim); padding-bottom: 2px; white-space: nowrap; transition: border-color .25s ease, color .25s ease; }
.header-phone:hover { border-color: var(--accent); color: var(--accent); }
@media (min-width: 1000px) { .nav { display: flex; } }

/* ---------- Contact (frozen partial) ---------- */
.contact { padding: 110px 0; background: var(--surface); border-top: 1px solid var(--rule); }
.contact-wrap { display: grid; gap: 56px; grid-template-columns: 1fr; }
.contact-lede { color: var(--text-soft); font-size: 1.1rem; max-width: 40ch; margin: 0 0 36px; }
.contact-direct { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.contact-direct li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.cd-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; }
.contact-direct a, .contact-direct li > span:last-child { font-family: var(--serif); font-size: 1.2rem; color: var(--text); }
.contact-direct a:hover { color: var(--accent); }
.contact-form { display: flex; flex-direction: column; gap: 22px; background: var(--bg); padding: 40px 32px; border: 1px solid var(--rule); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; padding: 14px 0;
  background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  color: var(--text); width: 100%; transition: border-color .25s ease; border-radius: 0;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-opacity='.5' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center; padding-right: 24px;
}
.field select option { background: var(--bg); color: var(--text); }
.field textarea { resize: vertical; min-height: 84px; }
.row { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 600px) { .row { grid-template-columns: 1fr 1fr; } }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; }
.form-status { margin: 0; font-size: 14px; min-height: 20px; color: var(--text-soft); }
.form-status.ok { color: var(--highlight); }
.form-status.err { color: var(--accent); }
.form-fineprint { font-size: 11px; color: var(--text-mute); margin: 0; letter-spacing: 0.05em; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--rule); padding: 70px 0 0; }
.footer-wrap { display: grid; gap: 48px; grid-template-columns: 1fr; padding-bottom: 50px; border-bottom: 1px solid var(--rule); }
.footer-name { font-family: var(--serif); font-size: 1.7rem; margin: 0 0 8px; color: var(--text); }
.footer-tagline { color: var(--text-mute); font-size: 14px; margin: 0; max-width: 36ch; }
.footer-cols { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-h { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); font-weight: 600; margin: 0 0 8px; }
.footer-col a, .footer-col span { font-family: var(--serif); font-size: 1rem; color: var(--text-soft); }
.footer-fine { padding: 24px 0; }
.footer-fine p { margin: 0; font-size: 12px; color: var(--text-mute); }
@media (min-width: 800px) { .footer-wrap { grid-template-columns: 1.3fr 1fr; align-items: start; } }

/* ---------- Make-it-Mine ---------- */
.make-it-mine {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--text); color: var(--bg); padding: 14px 22px; border-radius: 0;
  font-size: 14px; font-weight: 500; display: flex; flex-direction: column; line-height: 1.2;
  transition: background .25s ease, color .25s ease, transform .2s ease;
  max-width: 240px; border: 1px solid var(--text);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--bg) 60%, transparent);
}
.make-it-mine:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); transform: translateY(-2px); }
.mim-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }
.mim-cta { font-family: var(--serif); font-size: 17px; font-style: italic; }
@media (max-width: 600px) { .make-it-mine { padding: 12px 18px; bottom: 16px; right: 16px; max-width: 200px; } }

/* ---------- Reveal ---------- */
/* JS adds .reveal (hidden), then .in when scrolled into view. A [data-stagger]
   container sets --reveal-delay per child so a group cascades in. Archetypes
   may add their own reveal flavors; this is the shared default. */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); transition-delay: var(--reveal-delay, 0s); }
.reveal.in { opacity: 1; transform: none; }
/* Parallax layers are moved by JS via translate3d; hint the compositor. */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}


/* ------------------------------------------------------------------
   kinetic-brutalist / archetype.css
   Bold neo-brutalist editorial. Oversized grotesk headlines, a hard
   structural grid, thick solid rules, blocky cards with a hard offset
   drop shadow (no blur, no glass anywhere), strong accent color blocks,
   and one horizontal CSS marquee band between sections. Everything is
   derived from the injected brand tokens (--bg, --surface, --text,
   --accent, --highlight, --on-accent), so any light palette recolors
   the whole page. The offset shadow uses color-mix on --text so it
   tracks the palette. Count-up stats and staggered reveals come from the
   shared reveal script; the marquee is pure CSS and pauses under
   prefers-reduced-motion.
   ------------------------------------------------------------------ */

.arch-kinetic-brutalist {
  background: var(--bg);
  position: relative;
}

/* Shared shadow + edge tokens, all derived from --text so they recolor. */
.arch-kinetic-brutalist {
  --brut-edge: 3px solid var(--text);
  --brut-edge-thin: 2px solid var(--text);
  --brut-shadow: 8px 8px 0 color-mix(in srgb, var(--text) 90%, transparent);
  --brut-shadow-sm: 5px 5px 0 color-mix(in srgb, var(--text) 90%, transparent);
  --brut-shadow-accent: 8px 8px 0 color-mix(in srgb, var(--accent) 90%, transparent);
}

/* Oversized loud display type, tight and grotesk. The font family is set
   by the tokens; here we push size, weight and a hard uppercase cut. */
.arch-kinetic-brutalist .display {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.9rem, 7.2vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
}
.arch-kinetic-brutalist .display em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-stroke: 0;
}

/* Loud blocky eyebrows. */
.arch-kinetic-brutalist .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--on-accent);
  padding: 7px 14px 6px;
  border: var(--brut-edge-thin);
  box-shadow: var(--brut-shadow-sm);
  font-weight: 800;
  letter-spacing: 0.16em;
}
.arch-kinetic-brutalist .kicker-line { display: none; }
.arch-kinetic-brutalist .kicker-center { margin-left: auto; margin-right: auto; }

/* Squared, blocky buttons with a hard offset that collapses on press. */
.arch-kinetic-brutalist .btn {
  border-radius: 0;
  border: var(--brut-edge);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--brut-shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, color .2s ease;
}
.arch-kinetic-brutalist .btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--text); }
.arch-kinetic-brutalist .btn-primary:hover {
  background: var(--accent-deep);
  color: var(--on-accent);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--text) 90%, transparent);
}
.arch-kinetic-brutalist .btn-primary:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 color-mix(in srgb, var(--text) 90%, transparent); }
.arch-kinetic-brutalist .btn-link { font-weight: 700; letter-spacing: 0.04em; color: var(--text); }
.arch-kinetic-brutalist .btn-link:hover { color: var(--accent); }

/* ---------- Header ---------- */
.arch-kinetic-brutalist .site-header { position: absolute; background: transparent; }
.arch-kinetic-brutalist .header-wrap {
  border-bottom: var(--brut-edge);
  margin-top: 18px;
}
.arch-kinetic-brutalist .wordmark-text { font-family: var(--sans); font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
.arch-kinetic-brutalist .wordmark-sub { font-weight: 800; }
.arch-kinetic-brutalist .nav a { font-weight: 700; color: var(--text); }
.arch-kinetic-brutalist .nav a::after { height: 3px; background: var(--accent); }
.arch-kinetic-brutalist .header-phone {
  font-family: var(--sans); font-weight: 800; font-size: 16px;
  border: var(--brut-edge-thin); border-bottom-width: 2px;
  padding: 8px 14px; box-shadow: var(--brut-shadow-sm);
  background: var(--surface);
}
.arch-kinetic-brutalist .header-phone:hover { background: var(--accent); color: var(--on-accent); border-color: var(--text); }

/* ---------- Hero ---------- */
.arch-kinetic-brutalist .hero { padding: 168px 0 72px; }
.arch-kinetic-brutalist .hero-wrap { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.arch-kinetic-brutalist .hero-content .display { margin-bottom: 22px; }
.arch-kinetic-brutalist .hero-content .lede { font-size: 1.18rem; font-weight: 500; color: var(--text); max-width: 46ch; margin: 0 0 34px; }
.arch-kinetic-brutalist .hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.arch-kinetic-brutalist .hero-media { position: relative; }
.arch-kinetic-brutalist .hero-figure {
  margin: 0; border: var(--brut-edge); border-radius: 0; overflow: hidden;
  box-shadow: var(--brut-shadow);
}
.arch-kinetic-brutalist .hero-figure img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; }
.arch-kinetic-brutalist .hero-badge {
  position: absolute; left: 18px; bottom: -26px; z-index: 3;
  background: var(--surface); color: var(--text);
  border: var(--brut-edge); box-shadow: var(--brut-shadow-sm);
  padding: 14px 20px; display: flex; flex-direction: column; gap: 4px; max-width: 280px;
}
.arch-kinetic-brutalist .hero-badge-rating { font-family: var(--sans); font-size: 2.1rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 10px; line-height: 1; }
.arch-kinetic-brutalist .hero-badge-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; }
.arch-kinetic-brutalist .hero-badge-text { font-size: 0.82rem; font-weight: 600; color: var(--text-soft); }
@media (min-width: 980px) {
  .arch-kinetic-brutalist .hero-wrap { grid-template-columns: 1.04fr 0.96fr; gap: 60px; }
  .arch-kinetic-brutalist .hero { padding: 200px 0 92px; }
}

/* ---------- Stat bar (hard blocks) ---------- */
.arch-kinetic-brutalist .brut-stats { padding: 30px 0 22px; }
.arch-kinetic-brutalist .stat-bar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: var(--brut-edge);
  box-shadow: var(--brut-shadow);
  background: var(--text);
}
.arch-kinetic-brutalist .bstat {
  background: var(--surface);
  border-right: var(--brut-edge-thin);
  border-bottom: var(--brut-edge-thin);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 3px;
}
.arch-kinetic-brutalist .bstat-num { font-family: var(--sans); font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--accent); letter-spacing: -0.02em; }
.arch-kinetic-brutalist .bstat-word { font-size: 1.9rem; color: var(--text); text-transform: uppercase; }
.arch-kinetic-brutalist .bstat-label { font-size: 0.92rem; color: var(--text); font-weight: 800; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.arch-kinetic-brutalist .bstat-sub { font-size: 0.78rem; color: var(--text-mute); font-weight: 600; }
@media (min-width: 820px) { .arch-kinetic-brutalist .stat-bar { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Section rhythm ---------- */
.arch-kinetic-brutalist .services,
.arch-kinetic-brutalist .work,
.arch-kinetic-brutalist .area,
.arch-kinetic-brutalist .about,
.arch-kinetic-brutalist .reviews { padding: 92px 0; }
.arch-kinetic-brutalist .services-intro { font-size: 1.06rem; font-weight: 500; color: var(--text); max-width: 52ch; margin: 18px 0 0; }
.arch-kinetic-brutalist .section-lede { font-weight: 500; color: var(--text); }

/* ---------- Marquee band (pure CSS) ---------- */
.marquee {
  border-top: var(--brut-edge);
  border-bottom: var(--brut-edge);
  background: var(--accent);
  color: var(--on-accent);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-left: 28px;
  animation: brut-marquee 26s linear infinite;
  will-change: transform;
}
.marquee-word {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.3rem, 3.2vw, 2.1rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--on-accent);
}
.marquee-star { font-size: 1.1rem; color: var(--on-accent); opacity: 0.85; }
@keyframes brut-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Services (offset shadow blocks) ---------- */
.arch-kinetic-brutalist .services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.arch-kinetic-brutalist .service-card {
  background: var(--surface);
  border: var(--brut-edge);
  border-radius: 0;
  padding: 30px 26px;
  box-shadow: var(--brut-shadow);
  transition: transform .14s ease, box-shadow .14s ease, background .2s ease;
}
.arch-kinetic-brutalist .service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 color-mix(in srgb, var(--accent) 90%, transparent);
}
.arch-kinetic-brutalist .service-num {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 800;
  color: var(--on-accent); display: inline-block; margin-bottom: 16px;
  padding: 6px 12px; border: var(--brut-edge-thin); background: var(--accent);
}
.arch-kinetic-brutalist .service-card h3 { font-family: var(--sans); font-size: 1.45rem; margin: 0 0 10px; color: var(--text); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
.arch-kinetic-brutalist .service-card p { margin: 0; color: var(--text-soft); font-size: 0.98rem; font-weight: 500; }
@media (min-width: 680px) { .arch-kinetic-brutalist .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .arch-kinetic-brutalist .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Work (hard mosaic) ---------- */
.arch-kinetic-brutalist .work-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.arch-kinetic-brutalist .work-card {
  position: relative; border: var(--brut-edge); border-radius: 0; overflow: hidden; margin: 0;
  box-shadow: var(--brut-shadow);
  transition: transform .14s ease, box-shadow .14s ease;
}
.arch-kinetic-brutalist .work-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 color-mix(in srgb, var(--text) 90%, transparent); }
.arch-kinetic-brutalist .work-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.arch-kinetic-brutalist .work-card:hover img { transform: scale(1.04); }
.arch-kinetic-brutalist .work-card-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px 16px;
  background: var(--surface);
  border-top: var(--brut-edge);
}
.arch-kinetic-brutalist .work-loc { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-accent); background: var(--accent); padding: 3px 8px; font-weight: 800; display: inline-block; }
.arch-kinetic-brutalist .work-card-meta p { margin: 8px 0 0; color: var(--text); font-size: 0.98rem; font-family: var(--sans); font-weight: 700; }
@media (min-width: 720px) {
  .arch-kinetic-brutalist .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; }
  .arch-kinetic-brutalist .work-card-big { grid-column: span 2; }
  .arch-kinetic-brutalist .work-card-big img { aspect-ratio: 16 / 8; }
}

/* ---------- Area (hard tags) ---------- */
.arch-kinetic-brutalist .towns-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 800px; margin: 0 auto; }
.arch-kinetic-brutalist .town {
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.02em;
  padding: 9px 18px; border-radius: 0;
  background: var(--surface);
  border: var(--brut-edge-thin);
  box-shadow: var(--brut-shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, color .2s ease;
}
.arch-kinetic-brutalist .town:hover {
  transform: translate(-2px, -2px);
  background: var(--accent); color: var(--on-accent); border-color: var(--text);
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--text) 90%, transparent);
}

/* ---------- About ---------- */
.arch-kinetic-brutalist .about-wrap { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.arch-kinetic-brutalist .about-figure { margin: 0; border: var(--brut-edge); border-radius: 0; overflow: hidden; box-shadow: var(--brut-shadow); }
.arch-kinetic-brutalist .about-figure img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.arch-kinetic-brutalist .about-text p { color: var(--text-soft); margin: 0 0 18px; font-size: 1.05rem; font-weight: 500; }
.arch-kinetic-brutalist .about-text .sig { font-family: var(--sans); font-size: 1.2rem; font-weight: 800; color: var(--text); display: flex; flex-direction: column; gap: 2px; margin-top: 26px; text-transform: uppercase; }
.arch-kinetic-brutalist .sig-role { font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }
@media (min-width: 900px) { .arch-kinetic-brutalist .about-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }

/* ---------- Reviews (offset blocks) ---------- */
.arch-kinetic-brutalist .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.arch-kinetic-brutalist .review-card {
  background: var(--surface);
  border: var(--brut-edge);
  border-radius: 0; padding: 30px 26px;
  box-shadow: var(--brut-shadow);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .14s ease, box-shadow .14s ease;
}
.arch-kinetic-brutalist .review-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 color-mix(in srgb, var(--accent) 90%, transparent); }
.arch-kinetic-brutalist .review-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 1.1rem; }
.arch-kinetic-brutalist .review-card blockquote { margin: 0; font-family: var(--sans); font-size: 1.18rem; font-weight: 600; line-height: 1.45; color: var(--text); }
.arch-kinetic-brutalist .review-card cite { font-style: normal; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); font-weight: 800; }
@media (min-width: 760px) { .arch-kinetic-brutalist .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Contact + footer ---------- */
.arch-kinetic-brutalist .contact { background: var(--surface); border-top: var(--brut-edge); }
.arch-kinetic-brutalist .contact-form { border-radius: 0; background: var(--bg); border: var(--brut-edge); box-shadow: var(--brut-shadow); }
.arch-kinetic-brutalist .field input,
.arch-kinetic-brutalist .field select,
.arch-kinetic-brutalist .field textarea { border-bottom-width: 2px; }
.arch-kinetic-brutalist .btn-block { border-radius: 0; }
.arch-kinetic-brutalist .contact-direct a,
.arch-kinetic-brutalist .contact-direct li > span:last-child { font-family: var(--sans); font-weight: 700; }

.arch-kinetic-brutalist .site-footer { background: var(--surface); border-top: var(--brut-edge); }
.arch-kinetic-brutalist .footer-name { font-family: var(--sans); font-weight: 800; text-transform: uppercase; }
.arch-kinetic-brutalist .footer-col a,
.arch-kinetic-brutalist .footer-col span { font-family: var(--sans); font-weight: 600; }

/* ---------- Make-it-Mine ---------- */
.arch-kinetic-brutalist .make-it-mine {
  border-radius: 0;
  border: var(--brut-edge);
  background: var(--accent); color: var(--on-accent);
  box-shadow: var(--brut-shadow-sm);
}
.arch-kinetic-brutalist .make-it-mine:hover {
  background: var(--text); color: var(--bg); border-color: var(--text);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 color-mix(in srgb, var(--accent) 90%, transparent);
}
.arch-kinetic-brutalist .mim-cta { font-family: var(--sans); font-style: normal; font-weight: 800; text-transform: uppercase; }
