/* ============================================================
   RTK DEVELOPMENT — Core Stylesheet
   Palette: Dark / Brass Gold — restrained, warm, premium
   ============================================================ */

:root {
  --bg: #0C0C0D;
  --surface: #17171A;
  --surface-2: #1F2023;
  --white: #F3F1EA;
  --steel: #9C978C;
  --steel-soft: #6B675E;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --gold: #C6A15B;
  --gold-deep: #A9813F;
  --gold-soft: rgba(198,161,91,0.14);
  --ink: #0C0C0D;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --nav-h: 84px;
  --container: 1240px;
  --radius: 14px;
  --radius-sm: 8px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
#page-content {
  opacity: 0;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}
.mono { font-family: var(--font-mono); }
.steel-text { color: var(--steel-soft); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section {
  position: relative;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.section--tight { padding: 88px 0; }
.section--dark {
  background: var(--surface);
  border-bottom: none;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Corner registration marks */
.crosshairs { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.crosshairs span {
  position: absolute;
  width: 14px; height: 14px;
}
.crosshairs span::before, .crosshairs span::after {
  content: ''; position: absolute; background: var(--steel-soft); opacity: 0.6;
}
.crosshairs span::before { width: 100%; height: 1px; top: 50%; }
.crosshairs span::after { height: 100%; width: 1px; left: 50%; }
.crosshairs .tl { top: 18px; left: 18px; }
.crosshairs .tr { top: 18px; right: 18px; }
.crosshairs .bl { bottom: 18px; left: 18px; }
.crosshairs .br { bottom: 18px; right: 18px; }

.headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--white);
}
h1.headline { font-size: clamp(2.6rem, 6vw, 5rem); }
h2.headline { font-size: clamp(2rem, 4vw, 3.1rem); }
h3.headline { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--steel);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(198,161,91,0.32); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--arrow::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn--arrow:hover::after { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1160px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 22px;
  border-radius: 16px;
  background: rgba(14,14,16,0.6);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 10px 40px rgba(0,0,0,0.65);
  background: rgba(14,14,16,0.82);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.nav__mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
}
.nav__brand-primary { color: var(--white); }
.nav__brand-secondary { color: var(--steel); font-weight: 500; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__links a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--steel);
  border-radius: 8px;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--white); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: 11px 20px; font-size: 0.88rem; }

.nav__mobile-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__call {
  display: none;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__call svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav__call:hover { background: rgba(198,161,91,0.24); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 38px; height: 38px;
  position: relative;
  flex-shrink: 0;
}
.nav__toggle span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 25px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav__mobile-panel {
  display: none;
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__call { display: flex; }
  .nav__toggle { display: block; }
  .nav__mobile-panel {
    display: block;
    position: fixed;
    top: calc(var(--nav-h) + 8px);
    left: 50%;
    width: min(92%, 1160px);
    background: rgba(17,17,19,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px) scale(0.97);
    transform-origin: top center;
    z-index: 999;
  }
  .nav__mobile-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .nav__mobile-panel a {
    display: block;
    padding: 14px 16px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    color: var(--white);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav__mobile-panel.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__mobile-panel.is-open a:nth-child(1) { transition-delay: 0.03s; }
  .nav__mobile-panel.is-open a:nth-child(2) { transition-delay: 0.06s; }
  .nav__mobile-panel.is-open a:nth-child(3) { transition-delay: 0.09s; }
  .nav__mobile-panel.is-open a:nth-child(4) { transition-delay: 0.12s; }
  .nav__mobile-panel.is-open a:nth-child(5) { transition-delay: 0.15s; }
  .nav__mobile-panel a.is-active { background: var(--surface-2); color: var(--gold); }
  .nav__mobile-panel .btn { display: flex; margin: 8px; justify-content: center; }
  .nav__mobile-panel__actions {
    display: flex;
    gap: 8px;
    padding: 4px;
  }
  .nav__mobile-panel__actions .btn { flex: 1; margin: 4px; }
}

body { padding-top: calc(var(--nav-h) + 26px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

.hero__art {
  justify-self: center;
}
.hero__art img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.trust-card {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-card__icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.trust-card p { font-size: 0.94rem; color: var(--white); line-height: 1.45; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 0.09s); }

/* ---------- Cards (glass) ---------- */
.glass-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(198,161,91,0.35);
}

/* ---------- Section header pattern ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat-strip__item {
  padding: 40px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--white); }
.stat-strip .num span { color: var(--gold); }
.stat-strip .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-soft); margin-top: 8px; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
}
.service-card__index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.service-card h3 { margin: 18px 0 12px; }
.service-card p { color: var(--steel); font-size: 0.95rem; }

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 22px; left: 0; right: 0;
  height: 1px;
  background: var(--line-strong);
}
.process-step { position: relative; padding-top: 60px; padding-right: 20px; }
.process-step__dot {
  position: absolute;
  top: 14px; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg);
}
.section--dark .process-step__dot { border-color: var(--surface); }
.process-step .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-step h4 { font-family: var(--font-display); font-size: 1.15rem; margin: 10px 0 8px; color: var(--white); }
.process-step p { color: var(--steel); font-size: 0.9rem; }

/* ---------- Projects ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
  transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--white); color: var(--white); }
.filter-btn.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.project-card {
  overflow: hidden;
  cursor: default;
}
.project-card__media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.project-card__media svg { width: 100%; height: 100%; }
.project-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(12,12,13,0.85);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 2;
}
.project-card__body { padding: 22px 24px 26px; }
.project-card__body .loc { font-family: var(--font-mono); font-size: 0.75rem; color: var(--steel); margin-top: 6px; }
.project-card__body h3 { font-size: 1.2rem; margin-top: 4px; color: var(--white); }
.project-card__meta {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel);
}
.project-card[data-cat] { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.project-card.is-hidden { display: none; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card { padding: 24px; text-align: left; }
.team-card__photo {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.team-card__photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(45deg, transparent 48%, rgba(198,161,91,0.18) 50%, transparent 52%);
}
.team-card h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); }
.team-card .role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

.team-card--placeholder {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}
.team-card__plus {
  width: 34px; height: 34px;
  border: 1px dashed var(--steel-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-soft);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.team-card--placeholder p { color: var(--steel-soft); font-size: 0.85rem; max-width: 22ch; }

/* ---------- Founder's note (about page) ---------- */
.founder-note {
  padding: 48px 52px;
}
.founder-note__quote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white);
  max-width: 58ch;
}
.founder-note__sig {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
}
@media (max-width: 620px) {
  .founder-note { padding: 36px 28px; }
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.value-item { background: var(--surface); padding: 40px; }
.value-item__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item__icon svg { width: 19px; height: 19px; }
.value-item h4 { font-family: var(--font-display); font-size: 1.3rem; margin: 14px 0 10px; color: var(--white); }
.value-item p { color: var(--steel); font-size: 0.92rem; max-width: 42ch; }

/* ---------- Timeline (about) ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute; left: 5px; top: 6px; bottom: 6px; width: 1px;
  background: var(--line-strong);
}
.timeline-item { position: relative; padding-bottom: 44px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute; left: -32px; top: 4px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-item .yr { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); }
.timeline-item h4 { font-family: var(--font-display); font-size: 1.1rem; margin: 8px 0 6px; color: var(--white); }
.timeline-item p { color: var(--steel); font-size: 0.92rem; max-width: 52ch; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--steel-soft); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,161,91,0.16);
}
.field textarea { resize: vertical; min-height: 120px; }

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info-card { padding: 36px; }
.contact-info-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .ico { width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); }
.contact-info-row .lbl { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
.contact-info-row .val { font-weight: 600; margin-top: 3px; color: var(--white); }

.form-privacy-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--steel-soft);
  line-height: 1.5;
  max-width: 42ch;
}

.form-status {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.ok { color: #6FC08A; }
.form-status.error { color: #E08585; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 100px 0;
}
.cta-band .headline { max-width: 18ch; margin-inline: auto; }
.cta-band__actions { display: flex; justify-content: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--surface);
  color: var(--steel);
  padding: 44px 0 20px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.footer__logo { width: 168px; height: auto; margin-bottom: 14px; }
.footer p.steel-text { font-size: 0.9rem; max-width: 34ch; }
.footer h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-soft);
  margin-bottom: 10px;
}
.footer__links a {
  display: block;
  padding: 4px 0;
  font-size: 0.92rem;
  color: var(--steel);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.footer__links a:hover { color: var(--gold); transform: translateX(3px); }
.footer__contact-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.footer__contact-link svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--steel-soft);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 30px 0 40px; }
.section--flush-top { padding-top: 0; }
.page-hero .eyebrow { margin-bottom: 22px; }

/* ---------- Service detail (services page) ---------- */
.service-block { padding: 44px; }
.service-block__head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; }
.service-block__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-block__icon svg { width: 22px; height: 22px; }
.service-block__head-text { display: flex; flex-direction: column; gap: 10px; }
.service-block__head .service-card__index { font-size: 0.75rem; }
.service-block p.desc { color: var(--steel); max-width: 66ch; margin-top: 4px; }

.service-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.service-two-col h5, .service-groups-grid h5, .service-deliverables h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-two-col ul, .service-groups-grid ul, .service-deliverables ul { display: flex; flex-direction: column; gap: 9px; }
.service-two-col li, .service-groups-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--white);
}
.service-two-col li::before, .service-groups-grid li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 1.5px;
  background: var(--gold);
}

.service-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px 32px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.service-groups-grid h5 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-groups-grid__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--steel-soft);
}

.service-block__overview {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
}

.service-deliverables {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.service-deliverables ul { flex-direction: row; flex-wrap: wrap; gap: 10px; }
.service-deliverables li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--surface-2);
  border-radius: 999px;
  font-size: 0.82rem;
}
.service-deliverables li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 1.5px;
  background: var(--gold);
}

/* ---------- Coming soon state ---------- */
.coming-soon {
  text-align: center;
  padding: 80px 40px;
  max-width: 640px;
  margin-inline: auto;
}
.coming-soon__icon {
  width: 64px; height: 64px;
  margin: 0 auto 26px;
  color: var(--gold);
}
.coming-soon h3 { margin-bottom: 12px; }
.coming-soon p { color: var(--steel); }
.coming-soon .btn { margin-top: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; margin-top: 10px; }
  .hero__art img { max-width: 220px; margin-inline: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .process::before { display: none; }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-top: 0;
    padding-right: 12px;
  }
  .process-step__dot {
    position: static;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item:nth-child(2) { border-right: none; }
  .stat-strip__item { border-bottom: 1px solid var(--line); }
  .footer__top { grid-template-columns: 1fr 1fr; row-gap: 24px; }
}

@media (max-width: 720px) {
  .service-two-col { grid-template-columns: 1fr; gap: 24px; }
  .service-block { padding: 30px; }
}

@media (max-width: 640px) {
  :root { --nav-h: 70px; }
  .nav { padding: 10px 10px 10px 14px; top: 12px; }
  .nav__brand { font-size: 0.98rem; gap: 8px; }
  .nav__mark { width: 26px; height: 26px; }
  .nav__brand-text { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__brand-primary { line-height: 1.15; }
  .nav__brand-secondary {
    font-family: var(--font-mono);
    font-size: 0.52rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .section { padding: 80px 0; }
  .section--tight { padding: 60px 0; }
  .section--flush-top { padding-top: 0; }
  .hero { padding: 30px 0 60px; }
  .page-hero { padding: 24px 0 28px; }
  .container { padding-inline: 20px; }
  .services-grid, .project-grid, .team-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 36px 0 20px; }
  .footer__top { grid-template-columns: 1fr; row-gap: 18px; padding-bottom: 20px; }
  .footer__links { display: flex; flex-wrap: wrap; gap: 6px 16px; }
  .footer__links a { display: inline-block; padding: 2px 0; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 4px; padding-top: 12px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip__item { border-right: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cta-band__actions .btn, .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__actions, .cta-band__actions { flex-direction: column; }
}
