/* ── Reset & Variables ── */
:root {
  --bg: #0a0a0a;
  --panel: #111;
  --muted: #737373;
  --line: rgba(255,255,255,.1);
  --gold: #c9a227;
  --gold-dark: #a88318;
  --white: #fff;
  --soft: #f5f3ef;
  --text: #e8e8e8;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform .15s, filter .15s, background .15s;
  white-space: nowrap;
  cursor: pointer;
}
.btn.gold { background: var(--gold); color: #111; border-color: var(--gold); }
.btn.gold:hover { background: #d9b030; transform: translateY(-1px); }
.btn.dark { background: #1a1a1a; color: #fff; border-color: rgba(255,255,255,.15); }
.btn.dark:hover { background: #222; transform: translateY(-1px); }
.btn.light { background: #fff; color: #111; }
.btn.light:hover { background: #f0f0f0; transform: translateY(-1px); }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.header-logo {
  height: 44px;
  width: auto;
  display: block;
  /* White logo on dark header — works perfectly */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ccc;
  letter-spacing: .01em;
}
.nav-links a:hover { color: #fff; }
.desktop-cta { display: inline-flex; }
.mobile-call { display: none; }

/* ── Hamburger ── */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}
.menu-btn span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .2s; }

/* ── Mobile Sticky CTA ── */
.mobile-sticky-cta { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,.97) 0%, rgba(10,10,10,.82) 55%, rgba(10,10,10,.35) 100%),
    radial-gradient(circle at 75% 25%, rgba(201,162,39,.18), transparent 40%);
  z-index: 1;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .7;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 80px;
  max-width: 680px;
}
.hero-copy { max-width: 620px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 900;
  margin-bottom: 16px;
}
.gold-text { color: var(--gold); }
.sublead {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.lead {
  font-size: 17px;
  line-height: 1.65;
  color: #ccc;
  max-width: 560px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── Trust Bar ── */
.trust {
  background: #0f0f0f;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 0;
  gap: 0;
}
.trust-item {
  font-size: 13px;
  font-weight: 700;
  color: #ddd;
  padding: 10px 16px;
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

/* ── Sections ── */
.section { padding: 88px 0; }
.section.light { background: var(--soft); color: #111; }
.section.dark2 { background: #0f0f0f; }
.section-label {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  display: block;
}
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2,
.section h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 900;
  margin: 8px 0 16px;
}
.section p {
  font-size: 17px;
  line-height: 1.7;
  color: #bbb;
}
.section.light p { color: #555; }
.section.light h2 { color: #111; }
.section.dark2 p { color: #aaa; }

/* ── Service Cards (4-up) ── */
.cards4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  transition: transform .2s, background .2s;
}
.service-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.08); }
.service-img { height: 160px; overflow: hidden; background: #1a1a1a; flex-shrink: 0; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: #fff; line-height: 1.25; }
.service-body p { font-size: 14px; line-height: 1.6; color: #aaa; margin: 0; flex: 1; }
.learn-more { display: inline-flex; margin-top: 14px; color: var(--gold); font-size: 13px; font-weight: 800; }

.services-footer-link { margin-top: 36px; text-align: center; }

/* ── Section head row ── */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head-row h2 { margin-bottom: 8px; }
.review-btn { white-space: nowrap; flex-shrink: 0; }

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.step {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.step h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.step p { font-size: 14px; line-height: 1.65; color: #999; }

/* ── Projects: Homepage 3-col ── */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card-simple {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
}
.project-card-simple img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.project-card-label {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #1a1a1a;
}
.pill-dark {
  display: inline-flex;
  background: rgba(201,162,39,.15);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  width: fit-content;
}
.project-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #e0e0e0;
  line-height: 1.3;
}

/* ── Projects: Full page grid ── */
.projects-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-clean-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: transform .2s, box-shadow .2s;
}
.project-clean-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.project-clean-img { height: 200px; overflow: hidden; background: #f0f0f0; }
.project-clean-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.project-clean-card:hover .project-clean-img img { transform: scale(1.03); }
.project-clean-label { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 5px; }
.project-clean-title { font-size: 14px; font-weight: 800; color: #111; line-height: 1.3; }
.project-clean-loc { font-size: 12px; color: #888; }
.light .pill-dark { /* already colored */ }

/* ── Filter bar ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: #999; }
.filter-btn {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid #ddd;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
  color: #555;
}
.filter-btn.active, .filter-btn:hover { background: #111; color: #fff; border-color: #111; }

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── Photo cards ── */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #161616;
  min-height: 380px;
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.1), transparent);
}
.photo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 1;
}
.pill {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 800;
  color: #e5e5e5;
}
.caption-title { font-size: 18px; font-weight: 800; margin-top: 8px; line-height: 1.2; }

/* ── Client grid ── */
.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.client {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  color: #ddd;
}

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tc-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(201,162,39,.2);
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.tc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tc-avatar-initials {
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
}
.tc-meta { flex: 1; min-width: 0; }
.tc-name { display: block; font-size: 14px; font-weight: 800; color: #fff; }
.tc-company { display: block; font-size: 12px; color: #888; margin-top: 2px; }
.tc-google-icon { flex-shrink: 0; opacity: .7; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }
.quote-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  flex: 1;
}
.review-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-md);
  padding: 0 18px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 0;
  color: #eee;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { font-size: 14px; line-height: 1.65; color: #aaa; margin: 0 0 16px; }

/* ── Quote Form ── */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.contact-box {
  margin-top: 24px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 20px;
  line-height: 1.75;
  font-size: 15px;
  color: #333;
}
.contact-box strong { color: #111; font-weight: 800; font-size: 14px; display: block; margin-bottom: 4px; }
.contact-box a { font-weight: 800; color: #111; }
.quote-form {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; font-weight: 800; color: #666; text-transform: uppercase; letter-spacing: .1em; }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: #111;
  transition: border-color .15s, box-shadow .15s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.quote-form textarea { min-height: 110px; resize: vertical; }
.span2 { grid-column: span 2; }
.file-input { padding: 10px !important; cursor: pointer; font-size: 14px !important; }
.field-hint { font-size: 11px; color: #aaa; }
.submit-btn { width: 100%; margin-top: 16px; padding: 16px; font-size: 16px; }
.form-note { font-size: 12px !important; color: #999 !important; margin: 10px 0 0 !important; line-height: 1.5 !important; }
.form-note a { color: var(--gold); font-weight: 800; }

/* ── Footer CTA bar ── */
.footer-cta-bar { background: var(--gold); padding: 26px 0; }
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-bar strong { font-size: 18px; font-weight: 900; color: #111; display: block; margin-bottom: 3px; }
.footer-cta-bar span { font-size: 14px; color: #4a3800; }
.footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-cta-bar .btn.dark { background: #111; color: #fff; border-color: rgba(0,0,0,.2); }

/* ── Footer ── */
.footer { background: #060606; border-top: 1px solid var(--line); padding: 0 0 0; color: #999; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 36px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; color: #777; margin-top: 14px; }
.footer-logo-img {
  height: 56px;
  width: auto;
  /* White logo on dark footer */
}
.footer-col-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 800;
  color: #555;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; font-weight: 600; color: #888; }
.footer-links a:hover { color: #fff; }
.footer-contact { margin-top: 0; }
.footer-contact a { font-weight: 700; color: #aaa; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
}
.footer-bottom a { color: #555; font-weight: 600; }
.footer-small { font-size: 12px; color: #555; }
.google-biz-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-top: 10px;
}
.google-biz-link:hover { color: #e0b82e; }

/* ── Page Heroes ── */
.page-hero {
  position: relative;
  min-height: 400px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.95) 0%, rgba(10,10,10,.72) 60%, rgba(10,10,10,.3) 100%);
  z-index: 1;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .65;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 64px;
  max-width: 820px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 900;
  margin: 14px 0 16px;
}
.page-hero .lead { font-size: 17px; line-height: 1.65; color: #ccc; max-width: 640px; }

/* ── Service detail page ── */
.content { max-width: 820px; }
.content p { font-size: 18px; line-height: 1.8; color: #d0d0d0; margin-bottom: 20px; }
.content h2 { font-size: 34px; font-weight: 900; letter-spacing: -.04em; margin: 36px 0 14px; }
.content h3 { font-size: 24px; font-weight: 800; letter-spacing: -.03em; margin: 28px 0 10px; }
.content ul { padding-left: 22px; color: #c0c0c0; line-height: 1.85; font-size: 17px; margin-bottom: 20px; }
.light .content p, .light .content ul { color: #444; }
.light .content h2, .light .content h3 { color: #111; }
.bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.bullet {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  font-weight: 700;
  font-size: 14px;
}
.sidebar-card {
  position: sticky;
  top: 90px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.mini-cta { margin-top: 20px; border-top: 1px solid var(--line); padding-top: 18px; }
.mini-cta p { font-size: 14px; line-height: 1.6; color: #aaa; margin-bottom: 14px; }
.top-align { align-items: start; }

/* ── All Services: tile grid ── */
.services-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-tile {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  transition: transform .2s, background .2s;
}
.svc-tile:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); }
.svc-tile-img { height: 200px; overflow: hidden; background: #1a1a1a; }
.svc-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.svc-tile:hover .svc-tile-img img { transform: scale(1.04); }
.svc-tile-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc-tile-title { font-size: 22px; font-weight: 900; letter-spacing: -.04em; color: #fff; margin-bottom: 10px; }
.svc-tile-desc { font-size: 15px; line-height: 1.65; color: #aaa; margin-bottom: 16px; }
.svc-tile-bullets {
  padding-left: 18px;
  margin-bottom: 18px;
  display: grid;
  gap: 4px;
}
.svc-tile-bullets li { font-size: 14px; color: #999; line-height: 1.5; }

/* ── Extra scopes grid ── */
.extra-scopes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.extra-scope {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.extra-scope:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.extra-scope-icon { font-size: 26px; margin-bottom: 12px; }
.extra-scope h4 { font-size: 16px; font-weight: 900; color: #111; margin-bottom: 8px; letter-spacing: -.02em; }
.extra-scope p { font-size: 14px; line-height: 1.65; color: #555; }

/* ── Service detail page CTA ── */
.cta-band {
  background: #0a0a0a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 52px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}
.cta-inner h2 { font-size: clamp(26px, 3.5vw, 44px); line-height: 1.05; letter-spacing: -.045em; margin-bottom: 10px; }
.cta-inner p { color: #aaa; font-size: 16px; line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ── About / Contact / Service Area ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.area-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 18px;
  font-weight: 800;
  font-size: 14px;
  color: #111;
}

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links, .nav > .btn { display: none; }
  .menu-btn { display: flex; }
  .mobile-call { display: inline-flex; }
  .desktop-cta { display: none; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px;
    flex-direction: column;
    gap: 0;
    z-index: 55;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 700;
  }

  .hero-inner { padding: 60px 0 64px; }
  .hero { min-height: 500px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(2n) { border-right: none; }

  .cards4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .form-wrap { grid-template-columns: 1fr; }
  .services-tile-grid { grid-template-columns: 1fr; }
  .extra-scopes-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-clean-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar-card { position: static; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { padding-bottom: 60px; }

  .mobile-sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0a0a0a;
    border-top: 1px solid var(--line);
  }
  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    padding: 14px 10px;
    font-weight: 800;
    font-size: 14px;
  }
  .mobile-sticky-cta a:first-child { background: var(--gold); color: #111; }
  .mobile-sticky-cta a:last-child { color: #fff; }

  .nav { height: 64px; }
  .header-logo { height: 36px; }

  .hero { min-height: auto; }
  .hero-inner { padding: 52px 0 56px; }
  .hero h1 { font-size: 38px; }
  .sublead { font-size: 16px; }
  .lead { font-size: 16px; }

  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-bottom: 1px solid var(--line); border-right: none; }

  .section { padding: 60px 0; }
  .cards4, .process-grid, .project-grid, .client-grid, .field-grid, .testimonial-grid,
  .extra-scopes-grid, .projects-clean-grid, .services-tile-grid { grid-template-columns: 1fr; }
  .span2 { grid-column: auto; }
  .bullets { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 36px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .page-hero-content { padding: 64px 0 48px; }
  .photo-card { min-height: 260px; }
  .actions { flex-direction: column; }
  .footer-cta-actions { flex-direction: column; width: 100%; }
  .footer-cta-actions .btn { width: 100%; justify-content: center; }
  .svc-tile-img { height: 160px; }
  .project-clean-img { height: 180px; }
}

/* ── About page pillars ── */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pillar {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pillar-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  opacity: .5;
  letter-spacing: -.04em;
  margin-bottom: 14px;
  line-height: 1;
}
.pillar h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: #fff; }
.pillar p { font-size: 14px; line-height: 1.65; color: #999; margin: 0; }

/* ── Service Area ── */
.area-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.area-card-detailed {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.area-card-detailed strong { font-size: 15px; font-weight: 800; color: #111; }
.area-card-detailed span { font-size: 12px; color: #888; }
.area-note-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 600px;
}
.area-note-box p { font-size: 15px; color: #555; line-height: 1.65; margin-top: 10px; }
.area-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-service-item {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.area-service-icon { font-size: 24px; margin-bottom: 12px; }
.area-service-item h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.area-service-item h3 a { color: var(--gold); }
.area-service-item h3 a:hover { color: #e0b82e; }
.area-service-item p { font-size: 13px; line-height: 1.6; color: #999; margin: 0; }

/* ── Footer logo size fix ── */
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
}

/* ── Responsive additions ── */
@media (max-width: 980px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
  .area-grid-detailed { grid-template-columns: repeat(2, 1fr); }
  .area-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-pillars { grid-template-columns: 1fr; }
  .area-grid-detailed { grid-template-columns: 1fr 1fr; }
  .area-services-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   ALL SERVICES PAGE — collection layout
════════════════════════════════════════════ */
.svc-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.svc-page-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -.045em;
  margin: 8px 0 10px;
}
.svc-page-header p {
  font-size: 16px;
  color: #aaa;
  max-width: 560px;
  line-height: 1.6;
}
.section.light .svc-page-header p { color: #666; }

.svc-collection {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.svc-collection-item {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.04);
  border: none;
  transition: background .2s;
  text-decoration: none;
}
.svc-collection-item:hover { background: rgba(255,255,255,.08); }
.svc-collection-item:nth-child(odd) { border-right: 1px solid var(--line); }
.svc-collection-item:nth-child(1),
.svc-collection-item:nth-child(2) { border-bottom: 1px solid var(--line); }

.svc-collection-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1a1a1a;
  flex-shrink: 0;
}
.svc-collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transition: transform .3s;
  display: block;
}
.svc-collection-item:hover .svc-collection-img img { transform: scale(1.03); }

.svc-collection-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,10,10,.75);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border: 1px solid rgba(201,162,39,.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.svc-collection-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-collection-body h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.svc-collection-body p {
  font-size: 15px;
  line-height: 1.65;
  color: #aaa;
  margin: 0 0 16px;
}
.svc-collection-body ul {
  padding-left: 0;
  list-style: none;
  margin: 0 0 18px;
  display: grid;
  gap: 5px;
}
.svc-collection-body ul li {
  font-size: 13px;
  color: #888;
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.svc-collection-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
  top: 1px;
}
.svc-collection-body .learn-more { margin-top: auto; }

.svc-page-footer-note {
  margin-top: 40px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-lg);
  max-width: 640px;
}
.svc-page-footer-note p { font-size: 16px; color: #555; line-height: 1.6; margin: 0; }

/* ════════════════════════════════════════════
   RELATED WORK (service pages)
════════════════════════════════════════════ */
.related-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: transform .2s, box-shadow .2s;
}
.related-work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.related-work-img {
  height: 186px;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}
.related-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform .3s;
}
.related-work-card:hover .related-work-img img { transform: scale(1.03); }
.related-work-label {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.related-work-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}
.related-work-loc {
  font-size: 12px;
  color: #888;
}

/* Section heading consistency in light sections */
.section.light .section-label { color: var(--gold); }
.section.light h2 { color: #111; letter-spacing: -.045em; }
.section.light .section-head h2 { color: #111; }

/* ════════════════════════════════════════════
   ABOUT PAGE — photo row
════════════════════════════════════════════ */
.about-sidebar { display: flex; flex-direction: column; }
.about-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.about-photo-item { display: flex; flex-direction: column; gap: 10px; }
.about-photo-frame {
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--line);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.about-photo-caption {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
  font-style: italic;
}

/* ════════════════════════════════════════════
   RESPONSIVE — new components
════════════════════════════════════════════ */
@media (max-width: 980px) {
  .svc-collection { grid-template-columns: 1fr; }
  .svc-collection-item:nth-child(odd) { border-right: none; }
  .svc-collection-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .svc-collection-item:nth-child(1),
  .svc-collection-item:nth-child(2),
  .svc-collection-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .svc-collection-item:last-child { border-bottom: none; }
  .related-work-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo-row { grid-template-columns: 1fr 1fr; }
  .about-photo-row .about-photo-item:last-child { display: none; }
}
@media (max-width: 640px) {
  .svc-collection-img { height: 160px; }
  .svc-collection-body { padding: 18px 20px 22px; }
  .related-work-grid { grid-template-columns: 1fr 1fr; }
  .related-work-img { height: 140px; }
  .about-photo-row { grid-template-columns: 1fr; }
  .about-photo-row .about-photo-item:last-child { display: flex; }
  .about-photo-frame { height: 200px; }
}
