:root {
  --bg: #111110;
  --bg-alt: #181817;
  --fg: #f0ede6;
  --fg-muted: #8c8780;
  --accent: #D97706;
  --accent-dim: rgba(217, 119, 6, 0.15);
  --border: rgba(240, 237, 230, 0.08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-mark {
  font-size: 1.125rem;
  color: var(--accent);
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 6rem 3rem 5rem;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 119, 6, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
}

.hero-stat-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.stat:last-child { border-bottom: none; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─── SPECS ─────────────────────────────────────────── */
.specs {
  background: var(--bg-alt);
  padding: 6rem 3rem;
}

.specs-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--fg);
}

.specs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.spec-card {
  background: var(--bg-alt);
  padding: 2rem 2rem 2.5rem;
  transition: background 0.2s;
}

.spec-card:hover { background: #1f1f1d; }

.spec-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.spec-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.spec-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── MANIFESTO ─────────────────────────────────────── */
.manifesto {
  padding: 7rem 3rem;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--accent);
  line-height: 0.7;
  margin-bottom: 1.5rem;
}

.quote-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.manifesto-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ─── STANDARDS ─────────────────────────────────────── */
.standards {
  background: var(--bg-alt);
  padding: 6rem 3rem;
  border-top: 1px solid var(--border);
}

.standards-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.standards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.std-item {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.std-item:nth-child(even) { border-right: none; }

.std-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.std-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  margin-bottom: 0.625rem;
}

.std-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.standards-closing {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  font-size: 0.875rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.footer-email {
  font-size: 0.875rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.footer-email:hover { text-decoration: underline; }

.footer-links {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.footer-service {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav-tagline { display: none; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stat-block { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
  .stat { border-right: 1px solid var(--border); padding: 1rem; }
  .stat:last-child { border-right: none; }
  .specs { padding: 4rem 1.5rem; }
  .specs-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 4rem 1.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .standards { padding: 4rem 1.5rem; }
  .standards-grid { grid-template-columns: 1fr; }
  .std-item { border-right: none; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-stat-block { grid-template-columns: 1fr; }
  .stat { border-right: none; }
}

/* ─── BUTTONS ───────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: #c46205; }

.btn-ghost {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); }

/* ─── SPECS SUBHEADER ───────────────────────────────── */
.specs-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-top: 1rem;
}

/* ─── SERVICE CATEGORY BADGES ───────────────────────── */
.service-category-row {
  display: flex;
  gap: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto 0;
  border: 1px solid var(--border);
}

.service-category-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-alt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.cat-flooring .cat-icon { color: var(--accent); }
.cat-painting .cat-icon { color: #8b6db5; }

/* ─── PAINTING SECTION ───────────────────────────────── */
.painting-section {
  background: var(--bg);
  padding: 5rem 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.painting-section-header {
  margin-bottom: 2.5rem;
}

.painting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.paint-card {
  background: var(--bg-alt);
  padding: 2rem 1.75rem 2.5rem;
}

.paint-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.paint-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── QUOTE CTA ─────────────────────────────────────── */
.quote-cta {
  padding: 7rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.quote-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.quote-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.trust-icon {
  font-size: 0.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ─── QUOTE FORM ─────────────────────────────────────── */
.quote-form {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--fg-muted); opacity: 0.5; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238c8780' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-field select option {
  background: var(--bg);
  color: var(--fg);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover { background: #c46205; }

.form-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Replaces the old inline mailto form in the homepage quote-cta section */
.quote-cta-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.quote-cta-box-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.quote-cta-box-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.quote-cta-box-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.quote-cta-box-btn {
  align-self: flex-start;
}
.quote-cta-box-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ─── NAV CTA ────────────────────────────────────────── */
.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: #c46205; }

/* ─── RESPONSIVE UPDATES ─────────────────────────────── */
@media (max-width: 900px) {
  .quote-inner { grid-template-columns: 1fr; gap: 3rem; }
  .painting-grid { grid-template-columns: 1fr 1fr; }
  .service-category-row { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .quote-cta { padding: 5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; text-align: center; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .painting-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 1.5rem; }
  .specs-flooring-grid { grid-template-columns: 1fr; }
}

/* ─── NAV LINKS ───────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

/* ─── SERVICES PAGE ──────────────────────────────────── */
.services-hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.services-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.services-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ─── SERVICE LINES ──────────────────────────────────── */
.services-grid-section {
  padding: 0 3rem;
  background: var(--bg);
}

.services-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.service-line {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-line:last-child { border-bottom: none; }

/* alternate layout for visual variety */
.service-line:nth-child(even) .service-line-left { order: 2; }
.service-line:nth-child(even) .service-line-right { order: 1; }

.service-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}

.service-body {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-cases {
  margin-bottom: 1.5rem;
}

.cases-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.cases-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.cases-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
}

.cases-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.service-specs-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mini-spec {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
  background: var(--bg-alt);
}

.service-photo-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
}

.service-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.photo-caption {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.spec-icon-large {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem;
  color: var(--accent);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  letter-spacing: -0.05em;
}

/* ─── PROJECT GALLERY ────────────────────────────────── */
.gallery-section {
  background: var(--bg-alt);
  padding: 6rem 3rem;
  border-top: 1px solid var(--border);
}

.gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  margin-bottom: 3rem;
}

.gallery-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  max-width: 500px;
  line-height: 1.65;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.gallery-item {
  background: var(--bg);
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover .gallery-img { transform: scale(1.03); }

.gallery-caption {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.gallery-proj {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.gallery-loc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ─── INQUIRY SECTION ─────────────────────────────────── */
.inquiry-section {
  padding: 7rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.inquiry-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.inquiry-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
  line-height: 1.1;
}

.inquiry-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.inquiry-right {
  /* same column width as left for alignment */
}

/* ─── SERVICES PAGE RESPONSIVE ──────────────────────── */
@media (max-width: 1100px) {
  .service-line {
    grid-template-columns: 1fr 340px;
    gap: 3.5rem;
  }
}

@media (max-width: 900px) {
  .services-hero { padding: 4rem 1.5rem 3rem; }
  .services-grid-section { padding: 0 1.5rem; }
  .service-line {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }
  .service-line:nth-child(even) .service-line-left { order: 1; }
  .service-line:nth-child(even) .service-line-right { order: 2; }
  .gallery-section { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-section { padding: 5rem 1.5rem; }
  .inquiry-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .service-photo { height: 220px; }
}

/* ─── QUOTE PAGE ───────────────────────────────────── */
.quote-hero {
  padding: 5rem 3rem 3.5rem;
  border-bottom: 1px solid var(--border);
}

.quote-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.quote-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 1rem 0 1.25rem;
}

.quote-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.quote-section {
  padding: 5rem 3rem 6rem;
}

.quote-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Trust sidebar */
.quote-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trust-signal {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-signal:first-child { padding-top: 0; }

.trust-icon-block {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--accent-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
}

.trust-text span {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.quote-services-note {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.services-note-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.services-note-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.services-note-list li {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
}

.services-note-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* Form */
.quote-form-wrap {
  /* right column — full width */
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.form-field .req {
  color: var(--accent);
  margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(140, 135, 128, 0.5);
}

.form-field select option {
  background: var(--bg-alt);
  color: var(--fg);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-quote-submit {
  background: var(--accent);
  color: #111110;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1rem 2.5rem;
  cursor: pointer;
  border-radius: 3px;
  transition: opacity 0.15s;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.btn-quote-submit:hover { opacity: 0.88; }

.form-error-banner {
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #fca5a5;
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  border-radius: 3px;
  margin-bottom: 0.25rem;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* Success state */
.quote-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

.success-icon {
  width: 56px;
  height: 56px;
  background: rgba(217, 119, 6, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.success-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.quote-deposit-cta {
  padding: 1.25rem 1.5rem;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.deposit-cta-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-deposit-cta {
  display: inline-block;
  background: var(--accent);
  color: #111110;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.btn-deposit-cta:hover { opacity: 0.9; }
.deposit-cta-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Direct contact block shown on /quote success state */
.quote-contact-block {
  padding: 1rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 100%;
}
.contact-block-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.contact-block-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.contact-block-item {
  font-size: 0.9375rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.contact-block-item:hover { text-decoration: underline; }

/* Checkbox grid for multi-select project type on /quote */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 0.375rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.checkbox-item:hover {
  border-color: rgba(240, 237, 230, 0.2);
  color: var(--fg);
}
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin: 0;
}
.checkbox-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--fg);
}

/* ─── WORK PAGE ─────────────────────────────────────── */
.work-hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.work-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.work-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.work-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* Stats band */
.work-stats-band {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.work-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.work-stat {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work-stat:last-child { border-right: none; }

.work-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.work-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* Trust strip */
.work-trust-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
}

.work-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.trust-badge {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.trust-badge::before { color: var(--accent); }

.trust-sep {
  color: var(--border);
  font-size: 1rem;
}

/* Service breakdown */
.work-services-section {
  background: var(--bg-alt);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.work-section-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.work-section-header {
  margin-bottom: 3rem;
}

.work-section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.work-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.work-svc-card {
  background: var(--bg-alt);
  padding: 2rem 2rem 2.5rem;
  transition: background 0.2s;
}

.work-svc-card:hover { background: #1f1f1d; }

.work-svc-header {
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.work-svc-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.work-svc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.3;
}

.work-svc-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.work-svc-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.work-svc-spec {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.8125rem;
}

.spec-key {
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 60px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-val {
  color: var(--fg-muted);
  line-height: 1.45;
}

/* Project showcase */
.work-projects-section {
  background: var(--bg);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.work-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.work-project-card {
  background: var(--bg);
  overflow: hidden;
  transition: background 0.2s;
}

.work-project-card:hover { background: #141413; }

.work-project-img-wrap {
  position: relative;
  overflow: hidden;
}

.work-project-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.work-project-card:hover .work-project-img { transform: scale(1.03); }

.work-project-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 17, 16, 0.85);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.work-project-body {
  padding: 1.75rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.work-project-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.work-project-scope {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}

.work-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.meta-item {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

.meta-key {
  font-weight: 600;
  color: var(--fg-muted);
  margin-right: 0.3rem;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.work-project-summary {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Work CTA */
.work-cta-section {
  padding: 7rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.work-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.work-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.work-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Work page responsive */
@media (max-width: 1100px) {
  .work-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .work-hero { padding: 4rem 1.5rem 3rem; }
  .work-trust-strip { padding: 1rem 1.5rem; }
  .work-services-section { padding: 4rem 1.5rem; }
  .work-projects-section { padding: 4rem 1.5rem; }
  .work-cta-section { padding: 5rem 1.5rem; }
  .work-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .work-stat:nth-child(2) { border-right: none; }
  .work-stat:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .work-stat:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .work-services-grid { grid-template-columns: 1fr; }
  .work-projects-grid { grid-template-columns: 1fr; }
  .work-trust-inner { gap: 0.75rem; }
}

@media (max-width: 600px) {
  .work-stats-inner { grid-template-columns: 1fr 1fr; }
  .work-project-img { height: 200px; }
  .work-cta-section { text-align: left; }
}

/* Quote page responsive */
@media (max-width: 900px) {
  .quote-section { padding: 4rem 1.5rem; }
  .quote-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .quote-hero { padding: 4rem 1.5rem 3rem; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .quote-hero { padding: 3rem 1.25rem 2.5rem; }
}

/* ─── WORK PAGE — CASE STUDY CARDS ─────────────────── */
.work-case-studies-section {
  background: var(--bg-alt);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.work-cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.work-cs-card {
  background: var(--bg-alt);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.work-cs-card:hover { background: #1f1f1d; }

.work-cs-img-wrap {
  position: relative;
  overflow: hidden;
}

.work-cs-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.work-cs-card:hover .work-cs-img { transform: scale(1.03); }

.work-cs-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 17, 16, 0.88);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.work-cs-body {
  padding: 1.75rem 1.75rem 2rem;
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
}

.work-cs-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
}

.work-cs-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 0.375rem;
}

.work-cs-client {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.work-cs-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.work-cs-block {
  border-left: 2px solid var(--accent);
  padding-left: 0.875rem;
}

.work-cs-block-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.work-cs-block p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.work-cs-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
}

/* ─── CASE STUDY DETAIL PAGE ───────────────────────── */
.cs-hero {
  padding: 5rem 3rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.cs-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-breadcrumb {
  margin-bottom: 1.5rem;
}

.cs-breadcrumb-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.cs-breadcrumb-link:hover { color: var(--fg); }

.cs-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.75rem 0 1.5rem;
}

.cs-scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cs-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
}

.cs-img-band {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.cs-hero-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.cs-img-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
  padding: 0.625rem 3rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  background: var(--bg-alt);
}

.cs-summary-band {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.cs-summary-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cs-summary-stat {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cs-summary-stat:last-child { border-right: none; }

.cs-summary-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}

.cs-summary-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.cs-body-section {
  background: var(--bg);
  padding: 6rem 3rem;
}

.cs-body-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}

.cs-blocks {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.cs-block {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.cs-block:first-child {
  border-top: none;
  padding-top: 0;
}

.cs-block-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.cs-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.cs-block-text {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.cs-block-text:last-child { margin-bottom: 0; }

/* Sidebar */
.cs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

.cs-sidebar-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.cs-sidebar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.cs-sidebar-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.cs-spec-row:last-child { border-bottom: none; }

.cs-spec-key {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.cs-spec-val {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.cs-sidebar-cta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cs-sidebar-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.cs-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.cs-sidebar-cta-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* More Case Studies section */
.cs-more-section {
  background: var(--bg-alt);
  padding: 5rem 3rem;
  border-top: 1px solid var(--border);
}

.cs-more-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cs-more-inner .section-label {
  margin-bottom: 2rem;
}

.cs-more-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.cs-more-card {
  background: var(--bg-alt);
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: background 0.2s;
}

.cs-more-card:hover { background: #1f1f1d; }

.cs-more-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.cs-more-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.3;
}

.cs-more-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}

.cs-more-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* Hero photo placeholder */
.hero-photo-placeholder {
  background: #1a1a18;
  color: #8c8780;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 400px;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px dashed rgba(240,237,230,0.15);
  border-radius: 2px;
}

/* Testimonial block */
.cs-testimonial-block {
  background: rgba(217, 119, 6, 0.06);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 2rem 2rem 1.75rem;
  margin: 2rem 0 1rem;
}

.cs-testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.cs-testimonial-cite {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cs-testimonial-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}

.cs-testimonial-title {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* Sidebar download section */
.cs-sidebar-download {
  background: rgba(240,237,230,0.03);
  border: 1px solid rgba(240,237,230,0.08);
  border-radius: 4px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.cs-sidebar-dl-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.cs-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary, #f0ede6);
  font-family: 'Syne', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.25rem;
  border-radius: 3px;
  border: 1px solid rgba(240,237,230,0.2);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  width: 100%;
  justify-content: center;
}

.cs-dl-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── CASE STUDY RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .work-cs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .work-case-studies-section { padding: 4rem 1.5rem; }
  .work-cs-grid { grid-template-columns: 1fr; }
  .cs-hero { padding: 4rem 1.5rem 3rem; }
  .cs-img-caption { padding: 0.625rem 1.5rem; }
  .cs-summary-inner { grid-template-columns: repeat(2, 1fr); }
  .cs-summary-stat:nth-child(2) { border-right: none; }
  .cs-summary-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .cs-summary-stat:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .cs-body-section { padding: 4rem 1.5rem; }
  .cs-body-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .cs-sidebar { position: static; }
  .cs-more-section { padding: 4rem 1.5rem; }
  .cs-more-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cs-summary-inner { grid-template-columns: 1fr 1fr; }
  .cs-hero-img { max-height: 280px; }
  .btn-quote-submit { width: 100%; text-align: center; }
}

/* ─── NAV DROPDOWN ──────────────────────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  cursor: pointer;
  user-select: none;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  min-width: 240px;
  z-index: 100;
  flex-direction: column;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-item:last-child { border-bottom: none; }

.nav-dropdown-item:hover {
  background: #1f1f1d;
  color: var(--fg);
}

/* ─── SEO LANDING PAGES ─────────────────────────────── */
.seo-hero {
  position: relative;
  padding: 5rem 3rem 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.seo-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(217, 119, 6, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 6, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}

.seo-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}

.seo-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.seo-hero-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.seo-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.seo-hero-img-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
}

.seo-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* SEO page section scaffold */
.seo-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.seo-section-header {
  margin-bottom: 3rem;
}

.seo-section-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-top: 0.875rem;
}

/* Services grid */
.seo-services-section {
  padding: 6rem 3rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.seo-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.seo-svc-card {
  background: var(--bg-alt);
  padding: 2rem 2rem 2.5rem;
  transition: background 0.2s;
}

.seo-svc-card:hover { background: #1f1f1d; }

.seo-svc-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.seo-svc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.seo-svc-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.seo-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Industries */
.seo-industries-section {
  padding: 6rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.seo-industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.seo-industry-item {
  display: flex;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  align-items: flex-start;
}

.seo-industry-item:nth-child(even) { border-right: none; }
.seo-industry-item:nth-last-child(-n+2) { border-bottom: none; }

.seo-industry-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0.125rem;
}

.seo-industry-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.seo-industry-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Differentiators */
.seo-diff-section {
  padding: 6rem 3rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.seo-diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.seo-diff-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.seo-diff-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-diff-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seo-diff-point {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.seo-diff-point:first-child { padding-top: 0; }
.seo-diff-point:last-child { border-bottom: none; }

.seo-diff-point-accent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.seo-diff-point-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.seo-diff-point-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Project snippets */
.seo-projects-section {
  padding: 6rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.seo-snippets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.seo-snippet-card {
  background: var(--bg);
  padding: 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  transition: background 0.2s;
}

.seo-snippet-card:hover { background: #141413; }

.seo-snippet-card--cta { background: var(--bg-alt); }
.seo-snippet-card--cta:hover { background: #1f1f1d; }

.seo-snippet-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.seo-snippet-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.3;
}

.seo-snippet-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}

.seo-snippet-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* Bottom CTA */
.seo-bottom-cta {
  padding: 7rem 3rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.seo-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.seo-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.seo-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.seo-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.seo-cta-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.seo-cta-box-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.seo-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.seo-cta-box-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ─── SEO PAGE RESPONSIVE ────────────────────────────── */
@media (max-width: 1100px) {
  .seo-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .seo-hero { padding: 4rem 1.5rem 3rem; }
  .seo-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .seo-hero-img { height: 260px; }
  .seo-services-section { padding: 4rem 1.5rem; }
  .seo-industries-section { padding: 4rem 1.5rem; }
  .seo-diff-section { padding: 4rem 1.5rem; }
  .seo-diff-inner { grid-template-columns: 1fr; gap: 3rem; }
  .seo-projects-section { padding: 4rem 1.5rem; }
  .seo-snippets-grid { grid-template-columns: 1fr; }
  .seo-bottom-cta { padding: 5rem 1.5rem; }
  .seo-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .seo-industries-grid { grid-template-columns: 1fr; }
  .seo-industry-item { border-right: none; }
  .seo-industry-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .seo-industry-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .seo-services-grid { grid-template-columns: 1fr; }
  .seo-hero-img { height: 220px; }
  .seo-cta-box { padding: 1.5rem; }
}

/* ─── SUBCONTRACTOR PREQUAL PAGE ──────────────────────── */
.sub-hero {
  padding: 6rem 3rem 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.sub-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.sub-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.sub-hero-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sub-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* reuse btn-primary from quote page, add btn-outline */
.btn-outline {
  display: inline-block;
  padding: 0.875rem 2rem;
  border: 1px solid var(--fg-muted);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── SECTION LAYOUT ── */
.sub-section {
  padding: 5rem 3rem;
  background: var(--bg);
}

.sub-section-alt {
  background: var(--bg-alt);
}

.sub-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-section-header {
  margin-bottom: 3rem;
}

.sub-section-sub {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  max-width: 640px;
  line-height: 1.65;
}

/* ─── COMPANY FACTS ── */
.sub-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sub-fact-block {
  background: var(--bg);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.sub-section-alt .sub-fact-block {
  background: var(--bg-alt);
}

.sub-fact-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.sub-fact-val {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.5;
}

.sub-link {
  color: var(--accent);
  text-decoration: none;
}

.sub-link:hover { text-decoration: underline; }

/* ─── INSURANCE GRID ── */
.sub-insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.sub-ins-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.sub-ins-type {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.sub-ins-limits { display: flex; flex-direction: column; gap: 0.6rem; }

.sub-ins-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

.ins-key { color: var(--fg-muted); }

.ins-val {
  color: var(--accent);
  font-weight: 500;
  text-align: right;
}

.sub-ins-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-top: 1rem;
}

/* ─── TRADE SCOPE ── */
.sub-trade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.sub-trade-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem 2.25rem 2.5rem;
}

.sub-trade-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.sub-trade-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}

.sub-trade-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
}

.sub-trade-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sub-trade-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.sub-trade-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* ─── CREW STATS BAND ── */
.sub-crew-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.sub-crew-stat {
  background: var(--bg-alt);
  padding: 2rem;
  text-align: center;
}

.sub-crew-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.sub-crew-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─── COMPLIANCE GRID ── */
.sub-compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sub-comp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sub-comp-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

.sub-comp-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.sub-comp-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.sub-comp-link {
  font-size: 0.8125rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.sub-comp-link:hover { text-decoration: underline; }

.sub-comp-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ─── REFERENCES ── */
.sub-refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sub-ref-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem;
}

.sub-ref-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}

.sub-ref-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.sub-ref-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.sub-ref-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ref-key {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.ref-val {
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.45;
}

.sub-ref-link {
  font-size: 0.8125rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.sub-ref-link:hover { text-decoration: underline; }

/* ─── CTA SECTION ── */
.sub-cta-section {
  background: var(--bg-alt);
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}

.sub-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.sub-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.sub-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.sub-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── SUBCONTRACTOR RESPONSIVE ── */
@media (max-width: 1100px) {
  .sub-insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-crew-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sub-hero { padding: 4rem 1.5rem 3.5rem; }
  .sub-section { padding: 4rem 1.5rem; }
  .sub-facts-grid { grid-template-columns: 1fr; }
  .sub-trade-grid { grid-template-columns: 1fr; }
  .sub-compliance-grid { grid-template-columns: 1fr; }
  .sub-refs-grid { grid-template-columns: 1fr; }
  .sub-insurance-grid { grid-template-columns: 1fr; }
}

/* ─── PROJECTS PAGE ──────────────────────────────────────── */
.projects-hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.projects-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.projects-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Filter chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.filter-chip:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.filter-chip.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Project grid */
.projects-grid-section {
  background: var(--bg);
  padding: 0 3rem;
  border-bottom: 1px solid var(--border);
}

.projects-grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.project-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.project-card:hover { background: #141413; }

.project-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.project-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.project-card:hover .project-card-img { transform: scale(1.03); }

.project-card-industry-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 17, 16, 0.88);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.project-card-body {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.project-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.3;
}

.project-card-scope {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.project-meta-badge {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
}

.project-meta-accent {
  color: var(--accent);
  border-color: rgba(217, 119, 6, 0.3);
}

.project-card-scroll-link {
  display: block;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-decoration: none;
  transition: background 0.15s;
}

.project-card-scroll-link:hover { background: rgba(217, 119, 6, 0.05); }

/* Detail sections */
.detail-sections {
  background: var(--bg);
}

.detail-section {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 0;
  align-items: start;
}

.detail-img-band {
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.detail-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.detail-content {
  padding: 3rem 3rem 3.5rem;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.detail-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
}

.detail-badge-accent {
  color: var(--accent);
  border-color: rgba(217, 119, 6, 0.3);
}

.detail-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 2rem;
}

.detail-block {
  margin-bottom: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.detail-block:first-of-type { border-top: none; padding-top: 0; }

.detail-block-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.detail-block-text {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.detail-cta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.detail-cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.detail-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.detail-cta-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Bottom CTA */
.projects-bottom-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 7rem 3rem;
}

.projects-bottom-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.projects-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.projects-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.projects-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
}

.cta-trust-icon {
  color: var(--accent);
  font-size: 0.875rem;
}

.projects-bottom-cta-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.projects-cta-box {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.projects-cta-box-alt {
  background: var(--bg);
}

.projects-cta-box-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.projects-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.projects-cta-btn-ghost {
  display: block;
  text-align: center;
  width: 100%;
}

.projects-cta-box-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ─── SUBCONTRACTOR RECENT PROJECTS LINK ─────────────── */
.sub-projects-link-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 3rem;
}

.sub-projects-link-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sub-projects-link-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin: 0.75rem 0 1rem;
}

.sub-projects-link-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.sub-projects-link-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-projects-link-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ─── PROJECTS PAGE RESPONSIVE ────────────────────────── */
@media (max-width: 1100px) {
  .detail-inner { grid-template-columns: 1fr; }
  .detail-img-band { position: static; border-right: none; border-bottom: 1px solid var(--border); }
  .detail-hero-img { height: 280px; }
  .projects-grid-wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .projects-hero { padding: 4rem 1.5rem 3rem; }
  .projects-grid-section { padding: 0 1.5rem; }
  .projects-grid-wrap { grid-template-columns: 1fr; }
  .projects-bottom-cta { padding: 5rem 1.5rem; }
  .projects-bottom-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .detail-content { padding: 2.5rem 1.5rem 3rem; }
  .filter-chips { gap: 0.375rem; }
  .filter-chip { font-size: 0.75rem; padding: 0.4rem 1rem; }
}

@media (max-width: 600px) {
  .detail-hero-img { height: 220px; }
  .projects-grid-wrap { grid-template-columns: 1fr; }
  .projects-cta-box { padding: 1.5rem; }
}

/* ─── PORTFOLIO PAGE ─────────────────────────────────── */
.pf-hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.pf-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
}

.pf-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.pf-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.pf-hero-stats {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pf-stat {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.pf-stat:last-child { border-bottom: none; }

.pf-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}

.pf-stat-label {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* Trust bar */
.pf-trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
}

.pf-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Case study section */
.pf-cs-section {
  background: var(--bg-alt);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.pf-section-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-section-header {
  margin-bottom: 3rem;
}

.pf-section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* Case study grid */
.pf-cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.pf-cs-card {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}

.pf-cs-card:hover { background: #1f1f1d; }

.pf-cs-img-wrap {
  position: relative;
  overflow: hidden;
}

.pf-cs-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.pf-cs-card:hover .pf-cs-img { transform: scale(1.03); }

.pf-cs-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(17, 17, 16, 0.88);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.pf-cs-body {
  padding: 1.5rem 1.75rem 1.75rem;
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pf-cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.375rem;
}

.pf-cs-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--fg-muted);
}

.pf-cs-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.pf-cs-client {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 0.875rem;
}

.pf-cs-narrative {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1rem;
  flex: 1;
}

.pf-narr-block {
  border-left: 2px solid var(--accent);
  padding-left: 0.875rem;
}

.pf-narr-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.pf-narr-block p {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0;
}

.pf-cs-scope {
  border-top: 1px solid var(--border);
  padding-top: 0.875rem;
  margin-top: auto;
}

.pf-scope-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.375rem;
}

.pf-scope-val {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Gallery section */
.pf-gallery-section {
  background: var(--bg);
  padding: 6rem 3rem;
  border-bottom: 1px solid var(--border);
}

.pf-gallery-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.pf-gallery-tile {
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background 0.2s;
}

.pf-gallery-tile:hover { background: #141413; }

.pf-gallery-img-wrap {
  position: relative;
  overflow: hidden;
}

.pf-gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.pf-gallery-tile:hover .pf-gallery-img { transform: scale(1.04); }

.pf-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.pf-gallery-tile:hover .pf-gallery-overlay { opacity: 1; }

.pf-gallery-expand {
  font-size: 2rem;
  color: rgba(240, 237, 230, 0.9);
  line-height: 1;
}

.pf-gallery-caption {
  padding: 1rem 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pf-gallery-proj {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.3;
}

.pf-gallery-loc {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.pf-gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Clients section */
.pf-clients-section {
  background: var(--bg-alt);
  padding: 4rem 3rem;
  border-bottom: 1px solid var(--border);
}

.pf-clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pf-clients-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.pf-clients-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pf-client-logo {
  background: var(--bg);
  border: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-client-placeholder {
  font-size: 0.625rem;
  color: rgba(140, 135, 128, 0.4);
  letter-spacing: 0.06em;
  text-align: center;
}

.pf-clients-note {
  font-size: 0.8125rem;
  color: rgba(140, 135, 128, 0.6);
  margin-top: 1rem;
}

.pf-clients-note code {
  font-size: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  color: var(--fg-muted);
}

/* CTA section */
.pf-cta-section {
  padding: 7rem 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pf-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.pf-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.pf-cta-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.pf-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pf-cta-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pf-cta-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.pf-cta-box-alt { background: var(--bg); }

.pf-cta-box-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pf-cta-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.pf-cta-btn-ghost {
  display: block;
  text-align: center;
  width: 100%;
}

.pf-cta-box-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* Portfolio responsive */
@media (max-width: 1100px) {
  .pf-cs-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pf-clients-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .pf-hero { padding: 4rem 1.5rem 3rem; }
  .pf-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pf-trust-bar { padding: 1rem 1.5rem; }
  .pf-cs-section { padding: 4rem 1.5rem; }
  .pf-cs-grid { grid-template-columns: 1fr; }
  .pf-gallery-section { padding: 4rem 1.5rem; }
  .pf-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-clients-section { padding: 3rem 1.5rem; }
  .pf-clients-grid { grid-template-columns: repeat(4, 1fr); }
  .pf-cta-section { padding: 5rem 1.5rem; }
  .pf-cta-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pf-trust-inner { gap: 0.75rem; }
}

@media (max-width: 600px) {
  .pf-gallery-grid { grid-template-columns: 1fr; }
  .pf-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-cta-box { padding: 1.5rem; }
}

/* ─── SERVICES PAGE (rebuilt) ─────────────────────────── */

/* Hero */
.services-hero {
  border-bottom: 1px solid var(--border);
}

.services-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem 3rem;
}

.services-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.services-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Trust bar */
.services-trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.services-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 0;
}

.svc-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0 2rem;
}

.svc-trust-item:first-child { padding-left: 0; }

.svc-trust-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1.1;
}

.svc-trust-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.svc-trust-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
  flex-shrink: 0;
}

/* Sticky service nav */
.svc-sticky-nav {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  z-index: 90;
}

.svc-sticky-nav.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.svc-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.svc-sticky-inner::-webkit-scrollbar { display: none; }

.svc-nav-item {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.svc-nav-item:hover,
.svc-nav-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Service section layout */
.svc-section {
  padding: 5rem 3rem;
  border-bottom: 1px solid var(--border);
}

.svc-section-alt {
  background: var(--bg-alt);
}

.svc-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.svc-reverse {
  grid-template-columns: 420px 1fr;
}

.svc-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.svc-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Detail columns */
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.svc-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.svc-list li {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}

.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 0.2rem;
}

/* Meta row */
.svc-meta-row {
  display: flex;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.svc-section-alt .svc-meta-row {
  background: var(--bg-alt);
}

.svc-meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
}

.svc-meta-item:last-child { border-right: none; }

.svc-meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.svc-meta-val {
  font-size: 0.875rem;
  color: var(--fg);
  font-weight: 500;
}

/* CTA button */
.svc-cta {
  display: inline-block;
}

/* Photo column */
.svc-photo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-photo-wrap {
  position: relative;
}

.svc-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.svc-photo-caption {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

/* Spec chips */
.svc-spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.svc-chip {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  background: transparent;
}

/* Bottom CTA */
.svc-bottom-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 6rem 3rem;
}

.svc-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.svc-bottom-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--fg);
  margin: 0.75rem 0 1.25rem;
}

.svc-bottom-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

.svc-bottom-btn {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.svc-bottom-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.svc-bottom-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc-bottom-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* Services page responsive */
@media (max-width: 1100px) {
  .svc-section-inner { grid-template-columns: 1fr 360px; }
  .svc-reverse { grid-template-columns: 360px 1fr; }
}

@media (max-width: 900px) {
  .services-hero-inner { padding: 4rem 1.5rem 2rem; }
  .services-trust-inner { padding: 1.25rem 1.5rem; flex-wrap: wrap; gap: 1rem; }
  .svc-trust-item { padding: 0 1rem; }
  .svc-trust-divider { display: none; }
  .svc-sticky-inner { padding: 0 1.5rem; }
  .svc-section { padding: 4rem 1.5rem; }
  .svc-section-inner,
  .svc-reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-reverse .svc-photo-col { order: -1; }
  .svc-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-meta-row { flex-direction: column; }
  .svc-meta-item { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-meta-item:last-child { border-bottom: none; }
  .svc-bottom-cta { padding: 4rem 1.5rem; }
  .svc-bottom-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .svc-trust-item { padding: 0; }
  .svc-spec-chips { gap: 0.375rem; }
}

/* ── PDF Download Buttons ─────────────────────────────────── */
.pf-pdf-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(240, 237, 230, 0.3);
  color: rgba(240, 237, 230, 0.75);
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}
.pf-pdf-btn:hover {
  border-color: rgba(240, 237, 230, 0.7);
  color: var(--fg);
  background: rgba(240, 237, 230, 0.05);
}

.svc-pdf-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--fg-muted);
  color: var(--fg-muted);
  font-size: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  letter-spacing: 0.02em;
}
.svc-pdf-btn:hover {
  border-color: var(--fg);
  color: var(--fg);
  background: rgba(240, 237, 230, 0.04);
}
/* ─── PORTFOLIO — ROW LAYOUT (6 anchor case studies) ─── */
.pf-cs-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 3.5rem;
}

.pf-cs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pf-cs-row-rev {
  direction: rtl;
}
.pf-cs-row-rev > * {
  direction: ltr;
}

.pf-cs-img-col {
  position: relative;
}

.pf-cs-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.pf-cs-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.625rem;
  border-radius: 3px;
}

.pf-cs-text-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pf-cs-location {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

.pf-cs-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  margin: 0;
}

.pf-cs-scope {
  font-size: 0.94rem;
  color: rgba(240, 237, 230, 0.72);
  line-height: 1.65;
  margin: 0;
}

.pf-cs-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 1.25rem;
  padding: 1.125rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.pf-cs-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pf-cs-stat-val {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}

.pf-cs-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pf-cs-outcome {
  font-size: 0.92rem;
  color: rgba(240, 237, 230, 0.85);
  line-height: 1.6;
  padding-left: 0.875rem;
  border-left: 2px solid var(--accent);
  margin: 0;
}

.pf-cs-cta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.15s;
  align-self: flex-start;
}
.pf-cs-cta:hover {
  border-color: var(--accent);
}

.pf-imagery-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--fg-muted);
  padding: 1.5rem 2rem 2.5rem;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .pf-cs-row,
  .pf-cs-row.pf-cs-row-rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.75rem;
  }
  .pf-cs-row-rev > * {
    direction: ltr;
  }
  .pf-cs-title { font-size: 1.2rem; }
}

/* ─── SERVICES — portfolio proof link under service CTAs ─── */
.svc-proof-link {
  display: inline-block;
  margin-top: 0.625rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.svc-proof-link:hover {
  color: var(--accent);
}

/* ─── QUOTE — deposit tier grid ──────────────────────────── */
.deposit-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.deposit-tier-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(240, 237, 230, 0.04);
  border: 1.5px solid rgba(240, 237, 230, 0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.deposit-tier-btn:hover {
  background: rgba(217, 119, 6, 0.07);
  border-color: rgba(217, 119, 6, 0.45);
}
.deposit-tier-btn--large {
  border-color: rgba(217, 119, 6, 0.25);
}
.deposit-tier-btn--custom {
  border-style: dashed;
  border-color: rgba(240, 237, 230, 0.18);
}
.tier-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.tier-amount {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.tier-desc {
  font-size: 0.7rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ─── QUOTE DEPOSIT CONFIRMED page ──────────────────────── */
.deposit-confirmed-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 0 64px;
  text-align: center;
}
.deposit-next-steps {
  background: rgba(240, 237, 230, 0.03);
  border: 1px solid rgba(240, 237, 230, 0.08);
  border-radius: 8px;
  padding: 24px;
  margin: 32px 0;
  text-align: left;
}
.next-steps-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.next-steps-list { display: flex; flex-direction: column; gap: 16px; }
.next-step-item { display: flex; gap: 14px; align-items: flex-start; }
.next-step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.next-step-text { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.next-step-text strong { color: var(--fg); }
.deposit-contact-block {
  margin: 24px 0 0;
  text-align: center;
}

@media (max-width: 480px) {
  .deposit-tier-grid { grid-template-columns: 1fr; }
}
