/* ─────────────────────────────────────────────────
   REX Gerüstbau · Brutalist-Swiss grid style
   palette: ink/concrete/safety yellow + safety red
   ───────────────────────────────────────────────── */

:root {
  --ink:      #0c0c0c;        /* deep black  */
  --ink-2:    #1a1a1a;        /* near black  */
  --concrete: #f3efe6;        /* warm off-white background */
  --concrete-2:#e9e3d6;       /* deeper concrete */
  --paper:    #ffffff;
  --rule:     #dad3c2;        /* hairline    */
  --rule-2:   #c6bea9;
  --muted:    #6e6a60;
  --yellow:   #FBE000;        /* signature scaffold yellow */
  --red:      #ff3a1d;        /* safety red accent */
  --green:    #2f6e3a;
  --max:      1320px;
  --gutter:   clamp(20px, 4vw, 56px);
  --radius:   2px;            /* almost no rounded corners */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--concrete);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { font: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--yellow); padding: 12px 18px;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  z-index: 999;
}
.skip:focus { left: 12px; top: 12px; }

.mono, .tag-mono, .map-link, .card-eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.02em;
}

/* ───────────  GLOBAL "SCAFFOLD" GRID OVERLAY  ─────────── */
.grid-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.grid-overlay span {
  border-left: 1px dashed var(--rule);
  opacity: 0.55;
}
.grid-overlay span:first-child { border-left: 0; }
@media (max-width: 800px) { .grid-overlay { display: none; } }

/* ───────────  TOP BAR  ─────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px var(--gutter);
  background: var(--concrete);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: saturate(140%);
}

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.logo-mark {
  display: inline-grid; grid-template-rows: 1fr 1fr 1fr; gap: 3px;
  width: 26px; height: 26px;
  background: var(--ink);
  padding: 4px;
}
.logo-mark.big { width: 38px; height: 38px; padding: 5px; gap: 4px; }
.logo-bar { background: var(--yellow); }
.logo-mark .logo-bar:nth-child(2) { background: var(--paper); }
.logo-mark .logo-bar:nth-child(3) { background: var(--red); }
.logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: Anton, "Arial Narrow", sans-serif;
  letter-spacing: 0.06em;
  font-size: 22px;
  font-weight: 400;
}
.logo-text em {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; gap: 22px; justify-self: center; }
.nav a {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 0;
  position: relative;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.nav a i {
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 4px;
  width: 0; height: 2px; background: var(--ink);
  transition: width .25s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }

.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  padding: 10px 14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid var(--ink);
  transition: background .2s, color .2s;
}
.topbar-cta:hover { background: var(--yellow); color: var(--ink); }
.topbar-cta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .55; transform: scale(.85); }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--ink);
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  transition: transform .25s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 64px 0 auto 0; z-index: 40;
  background: var(--ink); color: var(--paper);
  padding: 24px var(--gutter) 32px;
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--yellow);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #2a2a2a;
  font-family: Anton, sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.mobile-nav a i {
  font-family: "JetBrains Mono", monospace;
  font-style: normal;
  font-size: 12px;
  color: var(--yellow);
  font-weight: 500;
}
.mobile-nav .mobile-cta {
  margin-top: 14px;
  background: var(--yellow);
  color: var(--ink);
  padding: 16px 18px;
  border-bottom: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}

/* ───────────  HERO  ─────────── */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 40px;
  row-gap: 32px;
  z-index: 2;
}

.hero-meta {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px dashed var(--rule);
  padding: 14px 0;
  margin-bottom: 8px;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  background: var(--ink); color: var(--yellow);
  padding: 6px 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-mono {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}

.hero-headline {
  grid-column: 1 / 2;
  grid-row: 2;
  margin: 0;
  font-family: Anton, "Arial Narrow", sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero-headline .line { display: block; }
.hero-headline em {
  font-style: italic;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 400;
  font-size: 0.92em;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}
.hero-headline mark {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 0.05em;
  box-shadow: 0 -0.18em 0 var(--yellow) inset;
}

.hero-side {
  grid-column: 2 / 3;
  grid-row: 2;
  align-self: end;
  display: flex; flex-direction: column; gap: 24px;
  border-left: 1px solid var(--ink);
  padding-left: 24px;
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  max-width: 38ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-figure {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
  position: relative;
  border: 1px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.hero-figure figcaption {
  position: absolute; left: 0; bottom: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  background: var(--ink); color: var(--paper);
  font-size: 12px;
}
.hero-figure figcaption .mono {
  background: var(--yellow);
  color: var(--ink);
  padding: 3px 6px;
  font-size: 11px; font-weight: 700;
}

.hero-counters {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.hero-counters > div {
  padding: 22px 22px 22px 0;
  border-right: 1px dashed var(--rule);
  display: flex; flex-direction: column; gap: 8px;
}
.hero-counters > div:last-child { border-right: 0; }
.hero-counters strong {
  font-family: Anton, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero-counters span {
  font-size: 13px;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
}

.hero-marker {
  position: absolute;
  right: var(--gutter);
  top: 80px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  font-size: 10px; color: var(--muted);
  pointer-events: none;
}
.hero-marker .bar { width: 1px; height: 60px; background: var(--ink); }
@media (max-width: 1100px) { .hero-marker { display: none; } }

/* ───────────  BUTTONS  ─────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 22px;
  font-family: Inter, sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn.primary {
  background: var(--ink);
  color: var(--paper);
}
.btn.primary:hover {
  background: var(--yellow);
  color: var(--ink);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ───────────  TICKER  ─────────── */
.ticker {
  position: relative; z-index: 2;
  background: var(--yellow);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 26px;
  white-space: nowrap;
  padding: 14px 0;
  animation: marquee 35s linear infinite;
  font-family: Anton, "Arial Narrow", sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ticker-track span:nth-child(even) {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5em;
  align-self: center;
  color: var(--ink);
  opacity: 0.7;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ───────────  SECTION HEAD  ─────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.section-index {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.section-head h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 18ch;
}
.section-head .muted { color: var(--muted); }

/* ───────────  SERVICES  ─────────── */
.services {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 96px auto 0;
  padding: 0 var(--gutter);
}
.service-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.service {
  position: relative;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 28px 26px 32px;
  background: var(--paper);
  transition: background .25s ease;
  overflow: hidden;
  min-height: 220px;
  display: flex; flex-direction: column;
}
.service::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--yellow);
  z-index: 0;
  transition: width .3s ease;
}
.service:hover { background: var(--paper); }
.service:hover::before { width: 8px; }
.service > * { position: relative; z-index: 1; }
.service .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.service h3 {
  margin: 16px 0 12px;
  font-family: Anton, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.service p {
  margin: 0;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.55;
}

/* ───────────  PROCESS  ─────────── */
.process {
  position: relative; z-index: 2;
  background: var(--ink);
  color: var(--paper);
  margin-top: 96px;
  padding: 96px 0 96px;
}
.process .section-head {
  max-width: var(--max);
  margin: 0 auto 56px;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid #2a2a2a;
}
.process .section-head h2 { color: var(--paper); }
.process .section-head .muted { color: #8b867a; }
.process .section-head .section-index { color: var(--yellow); }

.steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px dashed #2a2a2a;
  border-left: 1px dashed #2a2a2a;
}
.step {
  border-right: 1px dashed #2a2a2a;
  border-bottom: 1px dashed #2a2a2a;
  padding: 32px 28px 36px;
  position: relative;
  background: var(--ink);
}
.step-num {
  font-family: Anton, sans-serif;
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px var(--yellow);
  display: block;
  margin: 0 0 8px -4px;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.step h3 {
  margin: 0 0 12px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.step-lede {
  margin: 0 0 18px;
  color: #d6d2c5;
  font-size: 15px;
  max-width: 36ch;
}
.step ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px dashed #2a2a2a;
}
.step ul li {
  padding: 12px 0;
  border-bottom: 1px dashed #2a2a2a;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #ece8db;
  position: relative;
  padding-left: 22px;
}
.step ul li::before {
  content: "+";
  position: absolute; left: 0; top: 12px;
  color: var(--yellow);
  font-weight: 700;
}

/* ───────────  GALLERY  ─────────── */
.gallery {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 96px auto 0;
  padding: 0 var(--gutter);
}
.collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.collage figure {
  margin: 0;
  position: relative;
  border: 1px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
}
.collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.04);
  transition: transform .6s ease, filter .4s ease;
}
.collage figure:hover img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.08);
}
.collage figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.7) 40%);
  color: var(--paper);
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  font-family: Inter, sans-serif;
}
.collage figcaption .mono {
  background: var(--yellow); color: var(--ink);
  padding: 2px 6px;
  font-weight: 700;
  font-size: 10px;
}

/* tile placement — asymmetric editorial collage */
.t1 { grid-column: span 4; grid-row: span 2; }
.t2 { grid-column: span 2; grid-row: span 1; }
.t3 { grid-column: span 2; grid-row: span 1; }
.t4 { grid-column: span 3; grid-row: span 2; }
.t5 { grid-column: span 3; grid-row: span 1; }
.t6 { grid-column: span 3; grid-row: span 1; }

/* ───────────  CONTACT  ─────────── */
.contact {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 96px auto 96px;
  padding: 0 var(--gutter);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.contact-card {
  padding: 36px 36px 40px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; gap: 24px;
}
.card-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 16px;
}
.contact-dl { margin: 0; }
.contact-dl > div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
}
.contact-dl dt {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.contact-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.contact-dl dd a {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}
.contact-dl dd a:hover { background: var(--yellow); }

.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }

.contact-map {
  position: relative;
  background: var(--ink);
  min-height: 420px;
}
.contact-map iframe {
  width: 100%; height: 100%; min-height: 420px;
  border: 0;
  filter: grayscale(0.6) contrast(1.05);
}
.map-link {
  position: absolute; right: 14px; bottom: 14px;
  background: var(--yellow); color: var(--ink);
  padding: 8px 12px;
  font-size: 12px; font-weight: 700;
  border: 1px solid var(--ink);
}
.map-link:hover { background: var(--ink); color: var(--yellow); }

/* ───────────  FOOTER  ─────────── */
.footer {
  position: relative; z-index: 2;
  background: var(--ink);
  color: var(--paper);
  padding: 64px var(--gutter) 32px;
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 32px;
  border-bottom: 1px dashed #2a2a2a;
  padding-bottom: 32px;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: Anton, sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-claim {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 38px);
  color: var(--yellow);
  text-align: right;
  line-height: 1.1;
  max-width: 22ch;
  justify-self: end;
}
.footer-cols {
  max-width: var(--max);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-cols h4 {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 700;
}
.footer-cols p, .footer-cols ul {
  margin: 0; padding: 0; list-style: none;
  font-size: 14px;
  line-height: 1.7;
  color: #d6d2c5;
}
.footer-cols a:hover { color: var(--yellow); }
.link-btn {
  background: none; border: 0; padding: 0;
  color: inherit; cursor: pointer;
  border-bottom: 1px dashed #555;
  font-size: 14px;
  font-family: Inter, sans-serif;
}
.link-btn:hover { color: var(--yellow); border-color: var(--yellow); }

.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  color: #8b867a;
}

/* ───────────  MODAL  ─────────── */
.modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 720px;
  width: 92%;
}
.modal::backdrop {
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(2px);
}
.modal article {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 28px 32px 36px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 12px;
}
.modal header .mono {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal .close {
  background: var(--ink); color: var(--yellow);
  border: 0; width: 32px; height: 32px;
  font-size: 22px; line-height: 1; cursor: pointer;
  font-family: Inter, sans-serif;
}
.modal .close:hover { background: var(--red); }
.modal h3 {
  margin: 0 0 12px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: 36px;
  text-transform: uppercase;
}
.modal h4 {
  margin: 18px 0 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.modal p {
  margin: 0 0 8px;
  font-size: 14px; line-height: 1.6;
  color: #2a2a2a;
}

/* ───────────  REVEAL  ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ───────────  RESPONSIVE  ─────────── */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .topbar { grid-template-columns: 1fr auto auto; }
  .topbar-cta { display: inline-flex; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-headline { grid-column: 1; }
  .hero-side { grid-column: 1; border-left: 0; padding-left: 0; border-top: 1px dashed var(--rule); padding-top: 22px; }
  .hero-counters { grid-template-columns: 1fr; }
  .hero-counters > div { border-right: 0; border-bottom: 1px dashed var(--rule); padding: 16px 0; }
  .hero-counters > div:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .t1, .t2, .t3, .t4, .t5, .t6 { grid-column: span 2; grid-row: span 1; }
  .t1, .t4 { grid-row: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { border-right: 0; border-bottom: 1px solid var(--ink); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-claim { text-align: left; justify-self: start; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .topbar { gap: 12px; padding: 12px var(--gutter); }
  .topbar-cta { display: none; }
  .nav { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  .step-num { font-size: 80px; }
}
