/* ============================================================
   OTL CONCRETE — On The Level Concrete
   Design system: black / gold (#F6AB1E) / warm paper
   Type: Archivo (variable width+weight) · Inter · IBM Plex Mono
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --ink-950: #131112;
  --ink-900: #1A1718;
  --ink-850: #231F20;          /* logo black */
  --ink-800: #2C2829;
  --ink-700: #3A3536;
  --gold:     #F6AB1E;
  --gold-deep:#D89108;
  --gold-soft:#FFC55C;
  --paper:    #F4F1EB;
  --paper-2:  #ECE8E0;
  --white:    #FFFFFF;
  --t-strong: #1E1B1C;
  --t-body:   #4C4644;
  --t-soft:   #7A736F;
  --td-strong:#F6F3EE;
  --td-body:  #B5ADA7;
  --td-soft:  #847D78;
  --line:     #DCD7CD;
  --line-dark:#332F30;

  /* type */
  --f-display: "Archivo", "Arial Black", sans-serif;
  --f-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", "SF Mono", monospace;

  --fs-d1: clamp(3.05rem, 8.2vw, 6.1rem);
  --fs-d2: clamp(2.1rem, 4.4vw, 3.4rem);
  --fs-d3: clamp(1.55rem, 2.6vw, 2.1rem);
  --fs-h4: clamp(1.12rem, 1.5vw, 1.3rem);
  --fs-lede: clamp(1.06rem, 1.45vw, 1.22rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.78rem;

  /* rhythm */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;    --sp-6: 4rem;   --sp-7: 6rem;    --sp-8: 8rem;
  --section: clamp(4.75rem, 11vh, 8.25rem);
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --gap: clamp(1.25rem, 2.5vw, 2rem);
  --radius: 3px;
  --header-h: 76px;

  /* motion */
  --ease: cubic-bezier(.22,.61,.21,1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--t-body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4,p,ul,ol,figure { margin: 0; }
ul[class], ol[class] { padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--ink-950); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* ---------- Type helpers ---------- */
.d1, .d2, .d3 {
  font-family: var(--f-display);
  font-weight: var(--fw-dh, 790);
  font-stretch: 115%;
  text-transform: uppercase;
  letter-spacing: var(--ls-d, 0.005em);
  color: var(--t-strong);
}
.d1 { font-size: var(--fs-d1); line-height: 0.94; }
.d2 { font-size: var(--fs-d2); line-height: 1.0; }
.d3 { font-size: var(--fs-d3); line-height: 1.08; }
.h4 {
  font-family: var(--f-display);
  font-weight: var(--fw-db, 700);
  font-stretch: 106%;
  font-size: var(--fs-h4);
  line-height: 1.25;
  color: var(--t-strong);
  letter-spacing: 0.01em;
}
.on-dark .d1, .on-dark .d2, .on-dark .d3, .on-dark .h4 { color: var(--td-strong); }
.lede { font-size: var(--fs-lede); line-height: 1.65; }
.gold { color: var(--gold); }

/* eyebrow: mono label with gold dash */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--t-soft);
}
.eyebrow::before {
  content: "";
  width: 1.65rem;
  height: 2px;
  background: var(--gold);
  flex: none;
}
.on-dark .eyebrow { color: var(--td-soft); }

.mono {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Level motif (spirit-level rule) ---------- */
.level-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.level-rule::before, .level-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.level-rule .vial {
  flex: none;
  width: 34px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  position: relative;
}
.level-rule .vial::before {
  content: "";
  position: absolute;
  inset: 2px 50%;
  transform: translateX(-50%);
  width: 6px;
  border-radius: 3px;
  background: var(--gold);
}
.on-dark .level-rule::before, .on-dark .level-rule::after { background: var(--line-dark); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section); }
.section-head { max-width: 56rem; }
.section-head .eyebrow { margin-bottom: var(--sp-3); }
.section-head .d2 + .lede { margin-top: var(--sp-3); max-width: 44rem; }
.on-dark { background: var(--ink-900); color: var(--td-body); }
.on-paper2 { background: var(--paper-2); }
.on-white { background: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--f-display);
  font-weight: var(--fw-db, 700);
  font-stretch: 106%;
  font-size: 0.92rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink-950);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  border-radius: var(--radius) 0 var(--radius) var(--radius);
}
.btn-gold:hover { background: var(--gold-deep); }
.btn-outline { border-color: #A39C92; color: var(--t-strong); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--t-strong); }
.hero .btn-outline, .on-dark .btn-outline, .site-footer .btn-outline { border-color: #5C5554; color: var(--td-strong); }
.hero .btn-outline:hover, .on-dark .btn-outline:hover, .site-footer .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--t-strong);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.btn-link::after { content: "→"; color: var(--gold); }
.btn-link:hover { gap: 0.85rem; }
.on-dark .btn-link { color: var(--td-strong); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: color-mix(in srgb, var(--ink-950) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line-dark) 70%, transparent);
  transition: background .3s var(--ease);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: var(--header-h);
}
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 42px; width: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.1rem); }
.site-nav a.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--td-body);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color .2s;
}
.site-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right .25s var(--ease);
}
.site-nav a.nav-link:hover, .site-nav a.nav-link[aria-current="page"] { color: var(--td-strong); }
.site-nav a.nav-link[aria-current="page"]::after, .site-nav a.nav-link:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 1.4rem; }
.header-phone {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--td-strong);
  text-decoration: none;
}
.header-phone span { color: var(--gold); margin-right: 0.45rem; }
.header-phone:hover { color: var(--gold); }
.header-cta .btn { padding: 0.62rem 1.15rem; font-size: 0.8rem; }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.nav-toggle .ln, .nav-toggle .ln::before, .nav-toggle .ln::after {
  content: "";
  display: block;
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--td-strong);
  transition: transform .28s var(--ease), top .28s var(--ease), opacity .2s;
}
.nav-toggle .ln { top: 21px; }
.nav-toggle .ln::before { top: -7px; left: 0; right: 0; }
.nav-toggle .ln::after { top: 7px; left: 0; right: 0; }
.nav-open .nav-toggle .ln { background: transparent; }
.nav-open .nav-toggle .ln::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle .ln::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 120;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.4rem;
    padding: calc(var(--header-h) + 2rem) var(--gutter) 4rem;
    background: var(--ink-950);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }
  .nav-open .site-nav { opacity: 1; visibility: visible; }
  .site-nav a.nav-link {
    font-family: var(--f-display);
    font-weight: var(--fw-dh, 780);
    font-stretch: 112%;
    text-transform: uppercase;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.16;
    color: var(--td-strong);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), color .2s;
  }
  .nav-open .site-nav a.nav-link { opacity: 1; transform: none; }
  .nav-open .site-nav a.nav-link:nth-child(1) { transition-delay: .05s; }
  .nav-open .site-nav a.nav-link:nth-child(2) { transition-delay: .1s; }
  .nav-open .site-nav a.nav-link:nth-child(3) { transition-delay: .15s; }
  .nav-open .site-nav a.nav-link:nth-child(4) { transition-delay: .2s; }
  .nav-open .site-nav a.nav-link:nth-child(5) { transition-delay: .25s; }
  .site-nav a.nav-link[aria-current="page"] { color: var(--gold); }
  .site-nav a.nav-link::after { display: none; }
  .site-nav .nav-foot {
    margin-top: auto;
    display: grid;
    gap: 1rem;
    opacity: 0;
    transition: opacity .4s .3s;
  }
  .nav-open .site-nav .nav-foot { opacity: 1; }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .header-phone { display: none; }
  body.nav-open { overflow: hidden; }
}
@media (min-width: 921px) { .site-nav .nav-foot { display: none; } }

/* ---------- Hero (home) ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  min-height: 100svh;
  background: var(--ink-950);
  color: var(--td-body);
}
.hero-panel {
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 2.5rem) clamp(1.5rem, 5vw, 5rem) 2.2rem clamp(1.25rem, 6vw, 7rem);
  position: relative;
}
.hero-kicker { margin-top: auto; margin-bottom: var(--sp-4); }
.hero h1 {
  font-family: var(--f-display);
  font-weight: var(--fw-dh, 800);
  font-stretch: 118%;
  font-size: clamp(3.9rem, 8.3vw, 7.4rem);
  line-height: 1;
  letter-spacing: var(--ls-d, 0.002em);
  text-transform: uppercase;
  color: var(--td-strong);
}
/* justified block — each row sized to equal width, like the logo lockup.
   Row factors are font-metric-specific; per-variant overrides live in type-lab.css */
.type-rows .row { display: block; line-height: var(--row-lh, 0.92); white-space: nowrap; }
.type-rows .row:nth-child(1) { font-size: 1.19em; }
.type-rows .row:nth-child(2) { font-size: 0.888em; }
.type-rows .row:nth-child(3) { font-size: 0.981em; }
.type-rows .row.gold { color: var(--gold); }
.hero .lede { margin-top: var(--sp-4); max-width: 30rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: var(--sp-5);
}
.hero-call {
  margin-top: var(--sp-4);
  font-family: var(--f-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  color: var(--td-soft);
}
.hero-call a {
  color: var(--td-strong);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.hero-call a:hover { color: var(--gold); }
.hero-meta {
  margin-top: auto;
  padding-top: clamp(2.5rem, 6vh, 4.5rem);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--td-soft);
}
.hero-media { position: relative; overflow: hidden; min-height: 60vh; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--ink-950) 0%, color-mix(in srgb, var(--ink-950) 24%, transparent) 18%, transparent 42%),
              linear-gradient(0deg, color-mix(in srgb, var(--ink-950) 55%, transparent) 0%, transparent 26%);
}
.hero-tag {
  position: absolute;
  z-index: 2;
  bottom: 2.2rem;
  right: 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem;
  background: color-mix(in srgb, var(--ink-950) 78%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--line-dark) 80%, transparent);
  border-radius: var(--radius);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--td-body);
}
.hero-tag i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 3.25rem; }
  .hero-meta { padding-top: 3.5rem; }
  .hero .lede { max-width: 34rem; }
  .hero-media { min-height: 72vw; }
  .hero-media::before {
    background: linear-gradient(0deg, transparent 60%, color-mix(in srgb, var(--ink-950) 70%, transparent) 100%);
  }
  .hero-tag { bottom: 1.1rem; right: 1.1rem; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 19vw; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding-top: 2.75rem; }
}

/* ---------- Gold strip — one clean line of five; swipeable on small screens ---------- */
.ticker {
  background: var(--gold);
  color: var(--ink-950);
  overflow: hidden;
  border-block: 1px solid var(--ink-950);
  padding-block: 1.15rem;
}
.ticker .track {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-inline: var(--gutter);
}
.ticker .track::-webkit-scrollbar { display: none; }
.ticker .set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(1.6rem, 2.6vw, 2.6rem);
}
.ticker .item {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 2.6vw, 2.6rem);
  font-family: var(--f-display);
  font-weight: var(--fw-db, 740);
  font-stretch: 110%;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker .item::after {
  content: "";
  flex: none;
  width: 24px; height: 8px;
  border: 1.5px solid var(--ink-950);
  border-radius: 4px;
  background: radial-gradient(circle at center, var(--ink-950) 0 2.5px, transparent 2.6px);
}
.ticker .set .item:last-child::after { display: none; }
@media (max-width: 1100px) {
  .ticker .track { justify-content: flex-start; }
}

/* ---------- Intro / stats ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro-grid .d2 { margin-top: var(--sp-3); }
.intro-copy p + p { margin-top: var(--sp-3); }
.stat-stack { display: grid; gap: 0; border-top: 1px solid var(--line); }
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 1.4rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.stat .num {
  font-family: var(--f-display);
  font-weight: var(--fw-dh, 800);
  font-stretch: 114%;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1;
  color: var(--t-strong);
  min-width: 4.2ch;
}
.stat .num em { color: var(--gold); font-style: normal; }
.stat .lbl {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-soft);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; }
}

/* ---------- Service cards ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  margin-top: var(--sp-6);
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}
.svc-card:hover { border-color: color-mix(in srgb, var(--gold) 55%, var(--line)); transform: translateY(-3px); box-shadow: 0 18px 38px -22px rgba(20,17,18,.35); }
.svc-card .ph { aspect-ratio: 4 / 3.1; overflow: hidden; position: relative; }
.svc-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .ph img { transform: scale(1.045); }
.svc-card .ph::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 26px; height: 26px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  opacity: 0;
  transition: opacity .25s;
}
.svc-card:hover .ph::after { opacity: 1; }
.svc-card .body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.svc-card .body p { font-size: var(--fs-small); line-height: 1.65; }
.svc-card .tag {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-soft);
  margin-top: auto;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.svc-card .tag::after { content: "→"; color: var(--gold); font-family: var(--f-body); transition: transform .2s var(--ease); }
.svc-card:hover .tag::after { transform: translateX(4px); }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

/* compact "more services" strip */
.svc-more {
  margin-top: var(--sp-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0;
}
.svc-more .lbl {
  font-family: var(--f-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-soft);
  margin-right: 1.4rem;
}
.svc-more ul { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; padding: 0; margin: 0; }
.svc-more li {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--t-body);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  background: var(--paper);
}

/* ---------- Full-bleed band ---------- */
.band {
  position: relative;
  height: clamp(240px, 38vh, 420px);
  overflow: hidden;
}
.band img { width: 100%; height: 100%; object-fit: cover; }
.band figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: 1.4rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  background: color-mix(in srgb, var(--ink-950) 65%, transparent);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

/* ---------- Residential / Commercial split ---------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: var(--sp-6);
}
.split-card {
  background: var(--ink-850);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.split-card .ph { aspect-ratio: 16 / 9.5; overflow: hidden; position: relative; }
.split-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.split-card:hover .ph img { transform: scale(1.035); }
.split-card .ph .chip {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  background: var(--gold);
  color: var(--ink-950);
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.42rem 0.75rem;
  border-radius: var(--radius);
}
.split-card .body { padding: clamp(1.5rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 1.1rem; flex: 1; }
.split-card .body > p { font-size: var(--fs-small); max-width: 36rem; }
.split-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.5rem;
  margin-top: 0.3rem;
}
.split-list li {
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--td-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.split-list li::before { content: ""; width: 5px; height: 5px; background: var(--gold); flex: none; }
.split-card .btn-link { margin-top: auto; align-self: flex-start; padding-top: 1rem; }
@media (max-width: 860px) { .split-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
.process-grid .sticky { position: sticky; top: calc(var(--header-h) + 2rem); }
.process-grid .sticky .d2 { margin-top: var(--sp-3); }
.process-grid .sticky p { margin-top: var(--sp-3); max-width: 26rem; }
.process-grid .sticky .btn { margin-top: var(--sp-4); }
.steps { border-top: 1px solid var(--line); counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 1.4rem;
  padding-block: 1.55rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.step .no {
  font-family: var(--f-display);
  font-weight: var(--fw-dh, 800);
  font-stretch: 116%;
  font-size: 2.1rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px #C9C2B6;
  transition: color .3s var(--ease), -webkit-text-stroke-color .3s var(--ease);
  padding-top: 0.2rem;
}
.step:hover .no { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.step h3 { margin-bottom: 0.3rem; }
.step p { font-size: var(--fs-small); max-width: 34rem; }
@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid .sticky { position: static; }
}

/* process photo strip */
.proc-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: var(--sp-6);
}
.proc-strip figure { position: relative; border-radius: var(--radius); overflow: hidden; }
.proc-strip img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; }
.proc-strip figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 0.9rem 0.8rem;
  background: linear-gradient(transparent, rgba(19,17,18,.78));
  color: #EDE9E3;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  gap: 0.6rem;
}
.proc-strip figcaption b { color: var(--gold); font-weight: 500; }
@media (max-width: 860px) {
  .proc-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Featured work mosaic ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(110px, 16vw, 215px);
  gap: var(--gap);
  margin-top: var(--sp-6);
}
.mosaic a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  background: var(--paper-2);
}
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.mosaic a:hover img { transform: scale(1.04); }
.mosaic .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.1rem 0.95rem;
  background: linear-gradient(transparent, rgba(19,17,18,.74));
  color: #EFEBE5;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mosaic a:hover .cap { opacity: 1; transform: none; }
.m-a { grid-column: 1 / 8;  grid-row: 1 / 3; }
.m-b { grid-column: 8 / 13; grid-row: 1 / 4; }
.m-c { grid-column: 1 / 5;  grid-row: 3 / 6; }
.m-d { grid-column: 5 / 8;  grid-row: 3 / 6; }
.m-e { grid-column: 8 / 13; grid-row: 4 / 6; }
.m-d img { object-position: center 76%; }
@media (max-width: 860px) {
  .mosaic { grid-auto-rows: clamp(96px, 24vw, 150px); }
  .m-a { grid-column: 1 / 13; grid-row: auto / span 2; }
  .m-b { grid-column: 1 / 7;  grid-row: auto / span 3; }
  .m-c { grid-column: 7 / 13; grid-row: auto / span 3; }
  .m-d { grid-column: 1 / 7;  grid-row: auto / span 2; }
  .m-e { grid-column: 7 / 13; grid-row: auto / span 2; }
}

/* ---------- About teaser ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-grid .ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-grid .ph img { aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; }
.about-grid .ph::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--gold) 60%, transparent);
  border-radius: 2px;
  pointer-events: none;
}
.about-grid .copy .d2 { margin-top: var(--sp-3); }
.about-grid .copy p { margin-top: var(--sp-3); }
.about-grid .copy .btn-link { margin-top: var(--sp-4); }
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--sp-4);
}
.badge-row span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--td-body);
  border: 1px solid var(--line-dark);
  padding: 0.42rem 0.8rem;
  border-radius: 99px;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Quote form ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.quote-aside .d2 { margin-top: var(--sp-3); }
.quote-aside > p { margin-top: var(--sp-3); max-width: 26rem; }
.contact-rows { margin-top: var(--sp-5); border-top: 1px solid var(--line); }
.contact-rows a, .contact-rows .row {
  display: grid;
  grid-template-columns: 6.4rem 1fr;
  gap: 1rem;
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  align-items: baseline;
}
.contact-rows .k {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-soft);
}
.contact-rows .v {
  font-family: var(--f-display);
  font-weight: var(--fw-db, 700);
  font-stretch: 108%;
  font-size: clamp(0.92rem, 1.1vw + 0.5rem, 1.06rem);
  color: var(--t-strong);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}
.contact-rows a:hover .v { color: var(--gold-deep); }

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.4vw, 2.6rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
}
.field { display: grid; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-soft);
}
.field label em { color: var(--gold-deep); font-style: normal; }
.field input, .field select, .field textarea {
  font: 500 0.95rem/1.5 var(--f-body);
  color: var(--t-strong);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.78rem 0.95rem;
  width: 100%;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field input[type="file"] { padding: 0.6rem; font-size: 0.82rem; color: var(--t-soft); }
.field input[type="file"]::file-selector-button {
  font: 600 0.78rem var(--f-body);
  letter-spacing: 0.04em;
  color: var(--t-strong);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.9rem;
  margin-right: 0.9rem;
  cursor: pointer;
}
.seg {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.seg label {
  flex: 1;
  text-align: center;
  padding: 0.72rem 0.5rem;
  font: 600 0.82rem var(--f-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-soft);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.seg label + label { border-left: 1px solid var(--line); }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg input:checked + label { background: var(--ink-900); color: var(--gold); }
.quote-form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.4rem;
}
.quote-form .note { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--t-soft); }
.form-status { grid-column: 1 / -1; font-weight: 600; font-size: 0.92rem; display: none; }
.form-status.ok { display: block; color: #2E7D32; }
.form-status.err { display: block; color: #B3261E; }
@media (max-width: 980px) { .quote-wrap { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .quote-form { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: var(--td-body); }
.footer-cta {
  border-bottom: 1px solid var(--line-dark);
  padding-block: clamp(3.5rem, 8vh, 6rem);
}
.footer-cta .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-cta .d2 { max-width: 30ch; color: var(--td-strong); }
.footer-cta .d2 em { color: var(--gold); font-style: normal; }
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 4.5fr) minmax(0, 2.5fr) minmax(0, 2.5fr) minmax(0, 3fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 7vh, 4.5rem);
}
.footer-main .brand-col img { height: 58px; width: auto; }
.footer-main .brand-col p {
  margin-top: 1.4rem;
  font-size: var(--fs-small);
  max-width: 26rem;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--td-soft);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: grid; gap: 0.55rem; list-style: none; padding: 0; margin: 0; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--td-body);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .mono-line { font-family: var(--f-mono); font-size: 0.82rem; letter-spacing: 0.05em; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.4rem;
}
.footer-bottom .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--td-soft);
}
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink-950);
  color: var(--td-body);
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vh, 6.5rem));
  padding-bottom: clamp(3rem, 8vh, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: var(--sp-3); }
.page-hero h1 {
  font-family: var(--f-display);
  font-weight: var(--fw-dh, 800);
  font-stretch: 117%;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: var(--ls-d, 0.002em);
  text-transform: uppercase;
  color: var(--td-strong);
  max-width: 18ch;
}
.page-hero .lede { margin-top: var(--sp-3); max-width: 42rem; }
.page-hero .crumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: var(--sp-5);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--td-soft);
}
.page-hero .crumbs a { color: var(--td-soft); text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { color: var(--gold); }

/* ---------- Projects / gallery ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: var(--sp-5);
}
.filter-bar button {
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-body);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.5rem 1.05rem;
  transition: all .2s var(--ease);
}
.filter-bar button:hover { border-color: var(--gold); color: var(--t-strong); }
.filter-bar button[aria-pressed="true"] {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: var(--sp-5);
}
.g-item { display: grid; gap: 0.7rem; }
.g-item.hidden { display: none; }
.g-item button {
  border: 0;
  padding: 0;
  background: var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
}
.g-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.g-item.wide { grid-column: span 2; }
.g-item.wide img { aspect-ratio: 16 / 10.5; }
.g-item.pano { grid-column: 1 / -1; }
.g-item.pano img { aspect-ratio: 21 / 8; }
.g-item button:hover img { transform: scale(1.035); }
.g-item button::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  opacity: 0;
  transition: opacity .25s;
}
.g-item button:hover::after { opacity: 1; }
.g-cap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--t-soft);
}
.g-cap .cat { color: var(--gold-deep); flex: none; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .g-item.wide { grid-column: span 2; } }
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.wide { grid-column: span 1; }
  .g-item.wide img { aspect-ratio: 3/4; }
  .g-item.pano img { aspect-ratio: 16/9; }
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: color-mix(in srgb, var(--ink-950) 94%, transparent);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; }
.lightbox figure {
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: grid;
  gap: 0.9rem;
}
.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  height: auto;
  margin-inline: auto;
  border-radius: var(--radius);
}
.lightbox figcaption {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--td-body);
}
.lightbox .lb-btn {
  position: absolute;
  background: color-mix(in srgb, var(--ink-850) 80%, transparent);
  border: 1px solid var(--line-dark);
  color: var(--td-strong);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: border-color .2s, color .2s;
}
.lightbox .lb-btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Services page rows ---------- */
.svc-rows { display: grid; gap: var(--sp-6); margin-top: var(--sp-6); }
.svc-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-row:nth-child(even) { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.svc-row:nth-child(even) .ph { order: 2; }
.svc-row .ph { align-self: stretch; min-height: 320px; position: relative; }
.svc-row .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-row .body { padding: clamp(1.6rem, 3.5vw, 3rem); }
.svc-row .body .idx {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.8rem;
}
.svc-row .body p { margin-top: 0.9rem; max-width: 38rem; }
.svc-row .feats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.3rem;
}
.svc-row .feats li {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t-soft);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.35rem 0.8rem;
  background: var(--paper);
}
@media (max-width: 860px) {
  .svc-row, .svc-row:nth-child(even) { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .ph { order: 0; }
  .svc-row .ph { min-height: 0; aspect-ratio: 16/9; }
  .svc-row .ph img { position: static; height: 100%; }
}

/* capability list (text services) */
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-top: var(--sp-5);
}
.cap-item {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}
.cap-item .tick {
  width: 30px; height: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 5px;
  margin-top: 0.45rem;
  position: relative;
}
.cap-item .tick::before {
  content: "";
  position: absolute;
  inset: 2px 50%;
  transform: translateX(-50%);
  width: 5px;
  border-radius: 3px;
  background: var(--gold);
}
.cap-item p { font-size: var(--fs-small); margin-top: 0.25rem; }
@media (max-width: 720px) { .cap-grid { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: var(--sp-6);
}
.value-card {
  border-top: 3px solid var(--gold);
  background: var(--white);
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
}
.value-card .no {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 1rem;
}
.value-card p { font-size: var(--fs-small); margin-top: 0.7rem; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: var(--sp-6);
}
.fleet-grid figure { display: grid; gap: 0.7rem; }
.fleet-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}
.fleet-grid figcaption {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-soft);
}
@media (max-width: 720px) { .fleet-grid { grid-template-columns: 1fr; } .fleet-grid img { aspect-ratio: 4/3.4; } }

.community {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.community img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 820px) { .community { grid-template-columns: 1fr; } .community img { max-width: 420px; } }

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--sp-4);
}
.area-cloud span {
  font-family: var(--f-display);
  font-weight: var(--fw-db, 700);
  font-stretch: 108%;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--t-strong);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.7rem 1.2rem;
}
.area-cloud span.more { color: var(--t-soft); border-style: dashed; background: transparent; }

/* ---------- CTA band (inner pages) ---------- */
.cta-band {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vh, 6.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band .d2 { color: var(--td-strong); max-width: 24ch; }
.cta-band .d2 em { color: var(--gold); font-style: normal; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta-band .mono-phone {
  font-family: var(--f-mono);
  color: var(--td-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
.cta-band .mono-phone a { color: var(--td-strong); text-decoration: none; border-bottom: 1px solid var(--gold); }
.cta-band .mono-phone a:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .svc-card, .mosaic img, .g-item img { transition: none; }
}

/* ---------- Utilities ---------- */
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.center { text-align: center; }
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.head-row .btn-link { margin-bottom: 0.5rem; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
