/* ============================================================
   MARTIN METALWORKS - SHARED STYLESHEET
   Brand: heavy-duty workhorse - charcoal canvas, Oswald display,
   JetBrains Mono eyebrows, Inter body, gray #AAA9AD accent.
   ============================================================ */

:root {
  --bg: #0B0B0B;
  --bg-surface: #141414;
  --concrete: #F4F4F2;
  --concrete-soft: #E8E8E5;
  --type-dark: #E8E8E6;
  --type-light: #1A1A1A;
  --steel: #5A5A5A;
  --hairline: #2A2A2A;
  --hairline-light: #C7C7C0;
  --yellow: #848689; /* accent: gray (was yellow #F2C000) */
  --yellow-dark: #6A6C6F; /* darker hover variant */
  --hot: #B91C1C;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--type-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.display {
  font-family: 'Oswald', Impact, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
}

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  z-index: 100;
  transition: background 220ms ease, border-color 220ms ease;
}
header.site.scrolled {
  background: rgba(11, 11, 11, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
  transition: padding 220ms ease;
}
header.site.scrolled .nav { padding: 10px 0; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--type-dark); transition: gap 220ms ease; }
header.site.scrolled .logo { gap: 10px; }
.logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--type-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: -0.02em;
  transition: width 220ms ease, height 220ms ease, font-size 220ms ease;
}
header.site.scrolled .logo-mark {
  width: 26px; height: 26px; font-size: 11px;
}
.logo-word {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 17px; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: font-size 220ms ease, letter-spacing 220ms ease;
}
header.site.scrolled .logo-word { font-size: 14px; letter-spacing: 0.05em; }
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  transition: height 220ms ease;
}
header.site.scrolled .logo-img { height: 31px; }
footer.site .logo-img { height: 48px; }

nav.menu { display: flex; align-items: center; gap: 32px; }
nav.menu a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500; font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--type-dark);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
nav.menu a:hover, nav.menu a.active { color: var(--yellow); }
nav.menu a.active { border-bottom: 2px solid var(--yellow); }

.phone-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--yellow);
  color: var(--type-light) !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--yellow);
  transition: all 0.2s ease;
}
header.site.scrolled .phone-cta {
  padding: 9px 18px;
  font-size: 13px;
}
.phone-cta:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.phone-cta svg { width: 16px; height: 16px; }

.menu-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle svg { width: 24px; height: 24px; stroke: var(--type-dark); }
.phone-cta-mobile { display: none; }

/* ---------- Hero - full-bleed photo overlay (home page) ---------- */
.hero-bleed {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.hero-bleed-img {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) contrast(1.05);
}
.hero-bleed-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.35) 0%, rgba(11,11,11,0.65) 100%);
}
.hero-bleed .wrap { position: relative; z-index: 2; padding: 96px 32px; }
.hero-bleed h1 {
  font-family: 'Oswald', Impact, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
  color: var(--type-dark);
}
.hero-bleed h1 .y { color: var(--yellow); }
.hero-bleed .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--type-dark);
  margin-bottom: 36px;
}
.hero-bleed .tagline .dot { color: var(--yellow); margin: 0 10px; }
.hero-bleed-actions {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--yellow);
  color: var(--type-light) !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--yellow);
  transition: all 0.2s ease;
}
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-secondary {
  padding: 16px 28px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--type-dark);
  border: 1px solid var(--type-dark);
  transition: all 0.2s ease;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(242, 192, 0, 0.04), transparent 60%),
    var(--bg);
}
.page-hero h1 {
  font-family: 'Oswald', Impact, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  margin-top: 16px;
  max-width: 880px;
}
.page-hero h1 .y { color: var(--yellow); }
.page-hero p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--type-dark);
  margin-top: 24px;
  max-width: 680px;
}
.page-hero.page-hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) contrast(1.05);
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.45) 0%, rgba(11, 11, 11, 0.78) 100%);
}
.page-hero.page-hero-photo .wrap { position: relative; z-index: 2; }

/* ---------- Intro section (home) ---------- */
.intro {
  padding: 96px 0;
  border-bottom: 1px solid var(--hairline);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin: 14px 0 28px;
}
.intro h2 .y { color: var(--yellow); }
.intro p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--type-dark);
}
.intro p strong { color: var(--type-dark); font-weight: 600; }
.intro-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--hairline);
}
.intro-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

/* ---------- Specifics showcase (home) ---------- */
.specifics {
  padding: 96px 0;
  border-bottom: 1px solid var(--hairline);
}
.specifics-head { margin-bottom: 48px; max-width: 720px; }
.specifics-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin-top: 14px;
}
.specifics-head h2 .y { color: var(--yellow); }
.specifics-head .lead {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--steel);
}
.specifics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.spec-card {
  background: var(--bg);
  transition: background 0.2s ease;
  display: flex;
  flex-direction: column;
}
.spec-card:hover { background: var(--bg-surface); }
.spec-photo {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  background: var(--bg-surface);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.spec-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 260ms ease;
}
.spec-photo:hover img { transform: scale(1.05); }
.spec-photo-zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(11, 11, 11, 0.78);
  border: 1px solid var(--hairline);
  color: var(--type-dark);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.spec-photo:hover .spec-photo-zoom,
.spec-photo:focus-visible .spec-photo-zoom { opacity: 1; }
.spec-photo:focus-visible { outline: 2px solid var(--type-dark); outline-offset: -2px; }
.spec-photo-zoom svg { width: 17px; height: 17px; }
.spec-body { padding: 26px 28px 32px; }
.spec-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.spec-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 19px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--type-dark);
}
.spec-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--steel);
}
.specifics-cta {
  margin-top: 48px;
  text-align: center;
}
.specifics-cta .btn-secondary span { margin-left: 4px; }

/* ---------- Service blocks (services page) ---------- */
.service {
  padding: 52px 0;
  border-bottom: 1px solid var(--hairline);
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.service-grid.reverse { direction: rtl; }
.service-grid.reverse > * { direction: ltr; }
.service h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.0;
  margin: 10px 0 14px;
}
.service h2 .y { color: var(--yellow); }
.service p {
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 18px;
  color: var(--type-dark);
}
.service ul {
  list-style: none;
  border-top: 1px solid var(--hairline);
}
.service li {
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: 'Oswald', sans-serif;
  font-weight: 500; font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--type-dark);
  display: flex;
  align-items: center;
  gap: 14px;
}
.service li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.05em;
}
.service ul { counter-reset: item; }
.service-photo {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--hairline);
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}
/* Marine & Trailer: obvious placeholder until Hank supplies a photo */
.service-photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 1px dashed #3a3a3a;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 14px, transparent 14px 28px),
    var(--bg-surface);
  color: var(--type-light);
}
.service-photo-ph svg { width: 42px; height: 42px; opacity: 0.45; }
.service-photo-ph-label {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
}
.service-photo-ph-label em {
  font-style: normal;
  display: block;
  margin-top: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  opacity: 0.8;
}

/* ---------- Testimonials / Reviews (home) ---------- */
.testimonials {
  padding: 112px 0 120px;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(242, 192, 0, 0.06), transparent 60%),
    var(--bg);
}
.testimonials-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.testimonials h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  margin-top: 16px;
  max-width: 760px;
}
.testimonials h2 .y { color: var(--yellow); }
.rating-badge {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 18px 24px;
  border: 1px solid var(--hairline);
  background: var(--bg-surface);
  flex-shrink: 0;
}
.rating-badge-stars { color: #F2C000; font-size: 18px; letter-spacing: 2px; line-height: 1; }
.rating-badge-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 36px; line-height: 1;
  color: var(--type-dark);
}
.rating-badge-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel); line-height: 1.2;
}
.rating-badge-meta strong { color: var(--type-dark); font-weight: 600; letter-spacing: 0.14em; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  position: relative;
  padding: 36px 32px 28px;
  border: 1px solid var(--hairline);
  background: var(--bg-surface);
  display: flex; flex-direction: column;
  transition: border-color 180ms ease, transform 180ms ease;
}
.review:hover { border-color: var(--yellow); transform: translateY(-3px); }
.review::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 56px; height: 3px; background: var(--yellow);
}
.review-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.review-stars { color: #F2C000; letter-spacing: 3px; font-size: 16px; line-height: 1; }
.review-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.review p {
  font-size: 17px; line-height: 1.55;
  color: var(--type-dark);
  margin-bottom: 24px;
  flex: 1;
}
.review p .pull { color: var(--yellow); }
.review cite {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  display: flex; align-items: center; gap: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
  border: 1px solid var(--hairline);
}
.review-avatar.initial {
  background: var(--yellow);
  color: var(--type-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: 0;
  border: none;
}
.review cite .cite-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.review cite strong {
  color: var(--type-dark); font-weight: 600;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: none;
  font-family: 'Inter', sans-serif;
}
.review-cta { margin-top: 56px; text-align: center; }
.review-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 6px;
  cursor: pointer;
}
.review-cta a:hover { color: var(--type-dark); border-bottom-color: var(--type-dark); }

/* ---------- CTA strip (home, between reviews & footer) ---------- */
.cta-strip {
  padding: 80px 0;
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.cta-strip h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 28px;
}
.cta-strip h2 .y { color: var(--yellow); }
.cta-strip-actions {
  display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}

/* ---------- Lead form (light section) ---------- */
.form-section {
  background: var(--concrete);
  color: var(--type-light);
  padding: 96px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
}
.form-section .eyebrow { color: var(--type-light); }
.form-section .eyebrow::before { background: var(--type-light); }
.form-section h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  margin: 16px 0 24px;
  color: var(--type-light);
}
.form-section p.intro {
  font-size: 17px;
  color: var(--type-light);
  margin-bottom: 32px;
  max-width: 460px;
}
.form-section .phone-block {
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.form-section .phone-block strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 32px;
  color: var(--type-light);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.form-section .phone-block a {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--type-light);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--yellow);
}
.form-section .phone-block span {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--steel);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-section .area {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

form.lead-form { display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--type-light);
  padding: 14px 16px;
  background: var(--concrete-soft);
  border: 1px solid var(--hairline-light);
  transition: border 0.2s ease;
  border-radius: 0;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--type-light);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
button.submit {
  background: var(--type-light);
  color: var(--yellow);
  border: 1px solid var(--type-light);
  padding: 18px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  justify-self: start;
  transition: all 0.2s ease;
  border-radius: 0;
}
button.submit:hover { background: var(--yellow); color: var(--type-light); border-color: var(--yellow); }

/* ---------- Gallery grid + lightbox ---------- */
.gallery-section {
  padding: 80px 0 120px;
  border-bottom: 1px solid var(--hairline);
}
.gallery-filters {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.gallery-pill {
  appearance: none;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--type-dark);
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
}
.gallery-pill:hover { border-color: var(--yellow); color: var(--yellow); }
.gallery-pill.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--type-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--hairline);
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}
.gallery-item:hover { border-color: var(--yellow); transform: translateY(-3px); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item[data-hidden="true"] { display: none; }
.gallery-item .gallery-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(11,11,11,0.85);
  padding: 5px 9px;
  border: 1px solid var(--yellow);
}

/* Lightbox */
.lbx {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lbx[data-open="true"] { display: flex; }
.lbx-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lbx-img {
  position: relative; z-index: 2;
  max-width: min(1200px, calc(100vw - 64px));
  max-height: calc(100vh - 64px);
  border: 3px solid var(--yellow);
}
.lbx-img img { display: block; max-width: 100%; max-height: calc(100vh - 70px); }
.lbx-close {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 3;
  width: 44px; height: 44px;
  background: var(--bg);
  border: 1px solid var(--hairline);
  color: var(--type-dark);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.18s ease;
}
.lbx-close:hover { border-color: var(--yellow); color: var(--yellow); }
.lbx-close svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--bg);
  color: var(--steel);
  padding: 64px 0 32px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
footer.site h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
footer.site .footer-tag {
  margin-top: 20px;
  color: var(--steel);
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
}
footer.site a {
  display: block;
  color: var(--type-dark);
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.2s ease;
}
footer.site a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--steel);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
footer.site .footer-powered a {
  display: inline;
  padding: 0;
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--type-dark);
}
footer.site .footer-powered a:hover { color: var(--yellow); }

/* ---------- Footer service area band ---------- */
.footer-area {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: baseline;
}
.footer-area-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-area-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}
.footer-area p {
  color: var(--steel);
  font-size: 13px;
  line-height: 1.7;
  max-width: 880px;
}

/* ---------- Scroll reveal utility ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Reviews modal ---------- */
.rmod {
  position: fixed; inset: 0;
  z-index: 1000;
  display: none;
  align-items: stretch;
  justify-content: center;
}
.rmod[data-open="true"] { display: flex; }
.rmod-backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.rmod-panel {
  position: relative;
  margin: auto;
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  background: #0B0B0B;
  border: 1px solid #2A2A2A;
  border-top: 3px solid #F2C000;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.rmod-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid #2A2A2A;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rmod-head .eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F2C000;
  margin-bottom: 8px;
}
.rmod-head h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: 32px; line-height: 0.96;
  color: #E8E8E6;
}
.rmod-head .y { color: #F2C000; }
.rmod-rating {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 16px;
  border: 1px solid #2A2A2A;
  background: #141414;
}
.rmod-rating-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 28px;
  color: #F2C000;
  line-height: 1;
}
.rmod-rating-meta {
  display: flex; flex-direction: column; gap: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A5A5A;
  line-height: 1.2;
}
.rmod-rating-meta strong { color: #E8E8E6; font-weight: 600; }
.rmod-rating-meta .stars { color: #F2C000; letter-spacing: 2px; font-size: 12px; }
.rmod-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid #2A2A2A;
  color: #E8E8E6;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.18s ease;
  font-family: inherit;
}
.rmod-close:hover { border-color: #F2C000; color: #F2C000; }
.rmod-close svg { width: 18px; height: 18px; }
.rmod-filters {
  padding: 16px 32px;
  border-bottom: 1px solid #2A2A2A;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: #0B0B0B;
}
.rmod-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.rmod-pill {
  appearance: none;
  background: transparent;
  border: 1px solid #2A2A2A;
  color: #E8E8E6;
  padding: 8px 13px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.rmod-pill .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: #5A5A5A;
}
.rmod-pill:hover { border-color: #F2C000; color: #F2C000; }
.rmod-pill.active { background: #F2C000; border-color: #F2C000; color: #1A1A1A; }
.rmod-pill.active .count { color: #1A1A1A; }
.rmod-sort {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A5A5A;
}
.rmod-sort select {
  background: transparent;
  border: 1px solid #2A2A2A;
  color: #E8E8E6;
  padding: 6px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.rmod-body { overflow-y: auto; padding: 24px 32px 32px; flex: 1; }
.rmod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rmod-card {
  position: relative;
  padding: 24px 24px 18px;
  border: 1px solid #2A2A2A;
  background: #141414;
  display: flex; flex-direction: column;
}
.rmod-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 40px; height: 2px; background: #F2C000;
}
.rmod-card[data-hidden="true"] { display: none; }
.rmod-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.rmod-stars { color: #F2C000; letter-spacing: 3px; font-size: 14px; line-height: 1; }
.rmod-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5A5A5A;
}
.rmod-card p {
  font-size: 15px; line-height: 1.55;
  color: #E8E8E6;
  margin-bottom: 18px;
  flex: 1;
}
.rmod-foot {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid #2A2A2A;
  padding-top: 12px;
}
.rmod-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: #0B0B0B;
  border: 1px solid #2A2A2A;
}
.rmod-avatar.initial {
  background: #F2C000;
  color: #1A1A1A;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 15px;
  border: none;
}
.rmod-foot-text { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.rmod-name { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; color: #E8E8E6; }
.rmod-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A8A8A;
}
.rmod-no-results {
  padding: 48px 16px;
  text-align: center;
  color: #5A5A5A;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  display: none;
}
.rmod-no-results.show { display: block; }
body.rmod-locked { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .review-grid { grid-template-columns: 1fr; }
  .testimonials-head { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .specifics { padding: 64px 0; }
  .specifics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .wrap { padding: 0 24px; }
  .menu-toggle { display: inline-flex; }
  nav.menu, .phone-cta-desktop { display: none; }
  .phone-cta-mobile { display: inline-flex !important; padding: 10px 16px; font-size: 13px; }
  .nav { gap: 16px; }

  .hero-bleed { min-height: 64vh; }
  .hero-bleed .wrap { padding: 64px 24px; }

  .page-hero { padding: 64px 0 48px; }

  .intro { padding: 64px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }

  .service { padding: 40px 0; }
  .service-grid, .form-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .service-grid.reverse { direction: ltr; }
  .service-grid.reverse .service-photo { order: 2; }

  .form-section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-area { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .specifics-grid { grid-template-columns: 1fr; }
  .rmod-panel { width: 100vw; max-height: 100vh; height: 100vh; border-left: 0; border-right: 0; border-top: 3px solid #F2C000; }
  .rmod-head { padding: 24px 20px 16px; }
  .rmod-head h2 { font-size: 24px; }
  .rmod-rating { padding: 8px 12px; }
  .rmod-rating-num { font-size: 22px; }
  .rmod-filters { padding: 12px 20px; }
  .rmod-body { padding: 20px; }
  .rmod-grid { grid-template-columns: 1fr; }
}


/* ---------- Go-live additions ---------- */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }

/* The form sits on .form-section, which is a LIGHT surface (--concrete) with
   --type-light text. Use the light-surface colours here, not the dark-canvas ones. */
.form-err {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.06em; line-height: 1.5;
  color: var(--hot); margin: 0; padding: 12px 14px;
  border-left: 3px solid var(--hot); background: rgba(185, 28, 28, 0.08);
}
.form-note { font-size: 12px; line-height: 1.6; color: var(--steel); margin: 0; }
.form-note a { color: var(--type-light); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--hot); }

/* Success panel is a grid sibling of the form; without this it stretches to the
   full height the form occupied and reads as a large empty block. */
#lead-thanks { align-self: start; }

/* footer.site a is display:block/15px, which would break the Privacy link out of the
   11px mono baseline row. Keep it inline and on the same line as the copyright. */
footer.site .footer-bottom a {
  display: inline; font-size: inherit; font-family: inherit; letter-spacing: inherit;
  text-transform: inherit; padding: 0; color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
footer.site .footer-bottom a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }

@media (max-width: 900px) {
  nav.menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--hairline);
    padding: 8px 24px 20px;
  }
  body.nav-open nav.menu { display: flex; }
  body.nav-open { overflow: hidden; }
  nav.menu a { padding: 14px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; }
  nav.menu a:last-child { border-bottom: 0; }
  nav.menu a.active { border-bottom: 1px solid var(--yellow); }
  header.site .wrap.nav { position: relative; }
  .menu-toggle[aria-expanded="true"] svg { stroke: var(--yellow); }
}
