/* =====================================================================
   ETHANMETALS — Custom Sheet Metal Solutions
   Palette pulled directly from the brand's logo + card:
     ink   #0a0d12  — near-black navy, base background
     panel #131826  — raised panel background
     steel #595b61  — brushed-steel gray (exact match from logo file)
     blue  #0070e0  — brand blue (exact match from logo file)
     arc   #bfe7ff  — hot arc-flash / laser highlight, used sparingly
     silver#c7ced9  — body text
   Signature motif: a laser-cut sweep line (CNC nod) + a faint
   diamond-plate texture lifted from the card's photo backdrop.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --ink: #0a0d12;
  --ink-2: #05070a;
  --panel: #131826;
  --panel-2: #1a2137;
  --steel: #595b61;
  --steel-light: #8b8e96;
  --line: rgba(139, 142, 150, 0.22);
  --blue: #0070e0;
  --blue-bright: #2f93ff;
  --arc: #bfe7ff;
  --silver: #c7ced9;
  --white: #f3f6fa;

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

  --container-w: 1180px;
  --radius: 8px;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.site-header, main, .site-footer { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

::selection { background: var(--blue); color: var(--white); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--blue-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blue-bright);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 22px -8px rgba(0,112,224,0.5); }
.btn-primary:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(47,147,255,0.55); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--silver); }
.btn-ghost:hover { border-color: var(--blue-bright); color: var(--white); }
.btn-sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 18, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
}
.brand-word-accent { color: var(--blue-bright); }

.site-nav { display: flex; gap: 2rem; margin: 0 auto; }
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--silver);
  padding: 1.5rem 0 1.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover, .nav-link[aria-current="page"] {
  color: var(--white);
  border-color: var(--blue);
}

.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--white); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(0, 112, 224, 0.16), transparent 60%),
    var(--ink);
}
.hero-inner { max-width: 760px; position: relative; }
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  margin-bottom: 1.6rem;
}
.laser-line {
  display: block;
  height: 3px;
  margin: 0.6rem 0 1.7rem;
  width: 100%;
  max-width: 220px;
  background: linear-gradient(90deg, var(--blue), var(--arc));
  border-radius: 2px;
  box-shadow: 0 0 16px 1px rgba(191, 231, 255, 0.55);
  transform-origin: left center;
  animation: laserSweep 1.3s cubic-bezier(.2,.7,.2,1) 0.15s both;
}
@keyframes laserSweep {
  from { transform: scaleX(0); opacity: 0.4; }
  to { transform: scaleX(1); opacity: 1; }
}
.hero p.lede {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}
.hero-inner > .eyebrow { animation: fadeUp 0.6s ease 0s both; }
.hero-inner > h1 { animation: fadeUp 0.7s ease 0.1s both; }
.hero-inner > .lede { animation: fadeUp 0.6s ease 0.45s both; }
.hero-inner > .btn-row { animation: fadeUp 0.6s ease 0.6s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .laser-line { animation: none; transform: scaleX(1); }
  .hero-inner > .eyebrow, .hero-inner > h1, .hero-inner > .lede, .hero-inner > .btn-row {
    animation: none; opacity: 1; transform: none;
  }
}

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-alt {
  background-color: var(--panel);
  background-image:
    linear-gradient(rgba(139, 142, 150, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 142, 150, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  position: relative;
}
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--steel-light); margin-top: 0.9rem; }

.diamond-divider {
  height: 46px;
  background-color: var(--ink-2);
  background-image:
    repeating-linear-gradient(45deg, rgba(199, 206, 217, 0.05) 0, rgba(199, 206, 217, 0.05) 1px, transparent 1px, transparent 13px),
    repeating-linear-gradient(-45deg, rgba(199, 206, 217, 0.05) 0, rgba(199, 206, 217, 0.05) 1px, transparent 1px, transparent 13px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Cards / capability grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.spec-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.spec-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(0,112,224,0.28); }
.spec-card:hover svg { filter: drop-shadow(0 10px 20px rgba(0, 112, 224, 0.5)); }
.spec-card .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.9rem;
}
.spec-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.spec-card p { color: var(--steel-light); font-size: 0.95rem; }
.spec-card svg { width: 58px; height: 58px; margin-bottom: 1.2rem; filter: drop-shadow(0 8px 16px rgba(0, 112, 224, 0.35)); }

.section-alt .spec-card { background: var(--ink); }

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.process-step { position: relative; border-top: 1px solid var(--line); padding-top: 1.6rem; }
.process-step .num {
  font-family: var(--font-mono);
  color: var(--blue-bright);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.7rem;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--steel-light); font-size: 0.95rem; }

/* ---------- Follow the build ---------- */
.follow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 2.6rem;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
}
.follow h2 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.follow p { color: var(--steel-light); max-width: 46ch; }

/* ---------- Service page rows ---------- */
.service-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 3rem;
  align-items: start;
  padding: 3.4rem 0;
  border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  text-transform: uppercase;
}
.service-row h2 { font-size: 1.6rem; margin: 0.7rem 0 0; }
.service-row .desc h3 { font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--white); }
.service-row .desc p { color: var(--steel-light); }
.service-row ul { margin-top: 1rem; }
.service-row ul li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--silver);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.service-row ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 7px; height: 7px;
  background: var(--blue);
  transform: rotate(45deg);
}

/* ---------- Portfolio placeholders ---------- */
.portfolio-note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
}
.portfolio-note h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.portfolio-note p { color: var(--steel-light); max-width: 50ch; }

.plate {
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem;
  text-align: center;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
  transition: border-color 0.2s ease;
}
.plate:hover { border-color: var(--blue); }
.plate svg { width: 34px; height: 34px; margin: 0 auto 1.1rem; color: var(--blue-bright); }
.plate h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }
.plate span.soon {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.spec-sheet {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
}
.spec-sheet .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.spec-sheet .row:last-child { border-bottom: none; }
.spec-sheet .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
}
.spec-sheet .value { color: var(--white); font-weight: 500; text-align: right; }
.spec-sheet .value a:hover { color: var(--blue-bright); }

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  color: var(--steel-light);
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--steel-light); margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3.5rem 0 0; background: var(--ink-2); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.6rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand p { margin-top: 1rem; color: var(--steel-light); font-size: 0.9rem; max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col a, .footer-col p { display: block; color: var(--silver); font-size: 0.92rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: var(--steel-light);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Illustrated icon badges (client-supplied artwork) ---------- */
.icon-badge {
  width: 84px;
  height: 84px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 22px -10px rgba(0,0,0,0.55);
  flex-shrink: 0;
}
.icon-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; display: block; }
.icon-badge-sm { width: 56px; height: 56px; border-radius: 12px; padding: 6px; }
.icon-badge-sm img { border-radius: 6px; }
.icon-plain { width: 84px; height: 84px; flex-shrink: 0; filter: drop-shadow(0 8px 16px rgba(0, 112, 224, 0.4)); }
.icon-plain img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- Photo gallery ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.photo-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.photo-card:hover { transform: translateY(-3px); border-color: var(--blue); }
.photo-card .frame { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.photo-card .frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.photo-card:hover .frame img { transform: scale(1.04); }
.photo-card .cap { padding: 1.1rem 1.3rem 1.3rem; }
.photo-card .tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
  display: block;
  margin-bottom: 0.4rem;
}
.photo-card .cap p { color: var(--silver); font-size: 0.92rem; margin: 0; }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.photo-strip .frame { aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--ink); }
.photo-strip .frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Values / slogans strip ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
}
.value-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--steel-light); font-size: 0.92rem; }
.value-card .mark { color: var(--blue-bright); font-family: var(--font-mono); font-size: 1.3rem; display: block; margin-bottom: 0.9rem; }

/* ---------- Bio layout ---------- */
.bio-layout { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 3rem; align-items: start; }
.bio-text p { color: var(--silver); font-size: 1.02rem; margin-bottom: 1.2rem; }
.bio-text .sign { color: var(--white); font-family: var(--font-display); font-weight: 600; margin-top: 1.5rem; }
.narrow { max-width: 730px; margin-left: auto; margin-right: auto; text-align: left; }
.bio-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45); position: sticky; top: 100px; }
.bio-photo img { width: 100%; display: block; }

@media (max-width: 900px) {
  .photo-strip, .values-grid { grid-template-columns: 1fr 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo { position: static; max-width: 420px; }
}
@media (max-width: 560px) {
  .photo-strip, .values-grid { grid-template-columns: 1fr; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 1.1rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--steel-light);
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--steel-light); }
.breadcrumbs a:hover { color: var(--blue-bright); }
.breadcrumbs .sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumbs .current { color: var(--silver); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(10, 13, 18, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
}
.mobile-cta-bar .btn { flex: 1; }
@media (max-width: 720px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); padding: 1.6rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.faq-item p { color: var(--steel-light); font-size: 0.95rem; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.review-placeholder {
  background: var(--panel);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2.6rem;
  text-align: center;
  color: var(--steel-light);
}
.review-placeholder h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.6rem; }

/* ---------- Project spotlights (case studies) ---------- */
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.spotlight-row:last-child { border-bottom: 1px solid var(--line); }
.spotlight-row .frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 3; box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45); }
.spotlight-row .frame img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-row .tag { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--blue-bright); text-transform: uppercase; }
.spotlight-row h3 { font-size: 1.3rem; margin: 0.6rem 0 0.8rem; }
.spotlight-row p { color: var(--steel-light); }

/* ---------- Map embed ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 22px -12px rgba(0,0,0,0.45);
}
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Legal / prose pages ---------- */
.legal p, .legal li { color: var(--silver); margin-bottom: 1rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 0.9rem; }
.legal h2:first-child { margin-top: 0; }
.legal ul { margin: 0.8rem 0 1.2rem; }
.legal ul li { padding-left: 1.3rem; position: relative; }
.legal ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; background: var(--blue); transform: rotate(45deg); }

@media (max-width: 900px) {
  .spotlight-row { grid-template-columns: 1fr; }
}

/* ---------- Brand positioning list ---------- */
.positioning-list { display: flex; flex-direction: column; max-width: 780px; }
.positioning-item { display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem; padding: 1.8rem 0; border-top: 1px solid var(--line); }
.positioning-item:last-child { border-bottom: 1px solid var(--line); }
.positioning-item .num { font-family: var(--font-mono); color: var(--blue-bright); font-size: 1.3rem; }
.positioning-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.positioning-item p { color: var(--steel-light); font-size: 0.95rem; }
@media (max-width: 560px) {
  .positioning-item { grid-template-columns: 34px 1fr; gap: 1rem; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding: 0.5rem 0 0.25rem;
    margin-top: 0.5rem;
    gap: 0;
  }
  .site-nav.is-open .nav-link { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
  .header-cta.is-open {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }
  .process { grid-template-columns: 1fr; gap: 2.4rem; }
  .service-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.6rem 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .follow { flex-direction: column; align-items: flex-start; }
  .portfolio-note { flex-direction: column; align-items: flex-start; }
}
