: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;
}

/* ─── 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);
}

/* ─── 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;
}

/* ─── 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; }
}

@media (max-width: 600px) {
  .sub-hero-actions { flex-direction: column; }
  .sub-cta-actions { flex-direction: column; align-items: center; }
  .sub-crew-band { grid-template-columns: repeat(2, 1fr); }
}