/* ─── Reset & Variables ─────────────────────────── */

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

:root {
  --bg-primary: #0c0c0a;
  --bg-secondary: #141412;
  --bg-elevated: #1c1c19;
  --bg-card: #1c1c19;
  --bg-card-hover: #242420;

  --text-primary: #f0ece4;
  --text-secondary: #7a7670;
  --text-muted: #4a4845;

  --accent: #8B1A0A;
  --accent-hover: #7a160a;
  --accent-dim: rgba(139, 26, 10, 0.15);

  --border: rgba(240,236,228,0.09);
  --border-light: rgba(240,236,228,0.15);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --container: 1200px;
  --container-narrow: 800px;
  --gap: 2rem;
  --section-pad: 5rem;

  --header-height: 72px;

  --radius: 3px;
  --radius-lg: 6px;

  --transition: 0.2s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

/* ─── Utilities ──────────────────────────────────── */

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

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section {
  padding: var(--section-pad) 0;
}

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

.section-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 0.5em;
}

.section-heading-lg {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 0.6em;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-primary);
}
.btn-outline:hover {
  border-color: var(--text-secondary);
  color: #fff;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

/* ─── Header ─────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent);
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-cta .btn-cta {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
}
.nav-cta .btn-cta:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.15s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.dropdown-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

/* Header phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.header-phone:hover { color: var(--accent); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.2s;
}

/* ─── Page Hero (inner pages) ────────────────────── */

.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero-sm {
  padding-bottom: 2.5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}
.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* ─── Card Grids ─────────────────────────────────── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Service cards (homepage) */
.service-card {
  display: block;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.service-card-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Equipment cards (homepage) */
.equip-card {
  display: block;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.25s ease;
}
.equip-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.equip-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* Equipment detail cards (equipment overview) */
.equip-detail-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}
.equip-detail-card:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.equip-detail-card-image {
  height: 200px;
}

.equip-detail-card-body {
  padding: 1.5rem;
}

.equip-detail-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.equip-detail-card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.equip-preview-list {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.equip-preview-list li {
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.equip-preview-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

/* ─── Content Layout (detail pages) ──────────────── */

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.content-intro {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.equipment-list {
  margin-top: 0.5rem;
}

.equipment-list li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  color: var(--text-secondary);
  position: relative;
  border-bottom: 1px solid var(--border);
}

.equipment-list li:last-child { border-bottom: none; }

.equipment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.content-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.content-cta h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.content-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.related-links li {
  margin-bottom: 0.5rem;
}

.text-link {
  color: var(--accent);
  font-weight: 500;
}
.text-link:hover { color: var(--accent-hover); }

/* ─── Sidebar ────────────────────────────────────── */

.content-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card-highlight {
  border-color: var(--accent);
  border-width: 1px;
}

.sidebar-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.sidebar-phone {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent) !important;
}

.sidebar-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.sidebar-links li {
  border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.sidebar-links a:hover { color: var(--text-primary); }

.sidebar-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent) !important;
}

.sidebar-stats dt {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 0.75rem;
}

.sidebar-stats dt:first-child { margin-top: 0; }

.sidebar-stats dd {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.sidebar-checklist li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}

.sidebar-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ─── Services List (services overview) ──────────── */

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

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

.service-row-alt {
  direction: rtl;
}
.service-row-alt > * {
  direction: ltr;
}

.service-row-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.service-row-title a:hover { color: var(--accent); }

.service-row-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── Two Column ─────────────────────────────────── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.two-col h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.two-col p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── FAQ ─────────────────────────────────────────── */

.faq-list {
  margin-top: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  gap: 1rem;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── Reviews ─────────────────────────────────────── */


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
}

.review-card:nth-child(3n+2),
.review-card:nth-child(3n+3) {
  padding-left: 2rem;
}

.review-card:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.review-card:nth-child(n+4) {
  border-bottom: none;
}

.review-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CTA Section ────────────────────────────────── */

.cta-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

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

.cta-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.cta-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-divider {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--accent) !important;
}

/* ─── Form Messages ──────────────────────────────── */

.form-message {
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.form-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.form-success h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-success a {
  color: var(--accent);
}

.form-error {
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.25);
}

.form-error p {
  color: var(--text-secondary);
}

.form-error a {
  color: var(--accent);
}

/* ─── Contact Form ───────────────────────────────── */

.contact-form {
  margin-top: 2rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.required { color: var(--accent); }

.form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--text-muted);
}

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

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.contact-method {
  margin-bottom: 1.25rem;
}

.contact-method:last-child { margin-bottom: 0; }

.contact-method h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

/* ─── Portfolio ───────────────────────────────────── */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.portfolio-note {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-secondary);
}

.portfolio-note a { color: var(--accent); }

/* ─── Placeholder Images ─────────────────────────── */

.placeholder-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: var(--radius);
}

.placeholder-image-tall {
  min-height: 300px;
}

.service-row-photo {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ─── Footer ─────────────────────────────────────── */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
}

.footer-brand-full {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  opacity: 0.7;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand-full {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.footer-contact a {
  color: var(--text-muted);
}
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem var(--gap);
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ─── Flier Area (homepage) ─────────────────────── */

.flier-area {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.flier-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: none;
  pointer-events: none;
  z-index: 0;
}

.flier-glow {
  position: absolute;
  top: -278px;
  left: 44%;
  right: auto;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, oklch(72% 0.17 52 / 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.flier-area > section,
.flier-area > div:not(.flier-glow) {
  position: relative;
  z-index: 1;
}

.flier-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 52px;
}

/* ── Hero ── */
.fhero {
  padding-top: var(--header-height);
}

.fhero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 64px 0 40px;
}

.fhero-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fhero-kicker::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.fhero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 100px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.fhero-headline em {
  font-style: normal;
  color: var(--accent);
}

.fhero-right {
  text-align: right;
  padding-bottom: 6px;
}

.fhero-tagline {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
  text-align: right;
}

.fhero-tagline strong {
  color: var(--text-primary);
  font-weight: 500;
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

/* ── Services ── */
.fsvc-section { padding: 48px 0 0; }

.fsvc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 0 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fsvc-header span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

.fsvc-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.fsvc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fsvc-card {
  display: block;
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  transition: background var(--transition);
}

.fsvc-card:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.fsvc-card:nth-child(3n+2),
.fsvc-card:nth-child(3n+3) {
  padding-left: 24px;
}

.fsvc-card:nth-child(4),
.fsvc-card:nth-child(5),
.fsvc-card:nth-child(6) {
  border-bottom: none;
}

.fsvc-card:hover { color: var(--text-primary); }

.fsvc-num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 14px;
}

.fsvc-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1;
  transition: color var(--transition);
}

.fsvc-card:hover .fsvc-title { color: var(--accent); }

.fsvc-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── Value Strip ── */
.fvalue-strip {
  margin-top: 52px;
}

.fvalue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
}

.fvalue-item {
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--border);
}

.fvalue-item:last-child { border-right: none; }
.fvalue-item:nth-child(n+2) { padding-left: 20px; }

.fvalue-label {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 3px;
}

.fvalue-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Copy Band ── */
.fcopy-band {
  padding: 52px 0 28px;
}

.fcopy-inner {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg-elevated);
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 20px;
  align-items: stretch;
}

.fcopy-accent-bar {
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}

.fcopy-inner p {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.75;
}


.fcopy-inner p strong {
  font-style: normal;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Flier Responsive ── */
@media (max-width: 900px) {
  .flier-container { padding: 0 2rem; }

  .fhero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 36px;
  }

  .fhero-right { text-align: left; }
  .fhero-tagline { text-align: left; max-width: 100%; }

  .fsvc-grid { grid-template-columns: repeat(2, 1fr); }
  .fsvc-card {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px;
  }
  .fsvc-card:nth-child(even) { border-right: none; }
  .fsvc-card:nth-child(5),
  .fsvc-card:nth-child(6) { border-bottom: none; }

  .fvalue-grid { grid-template-columns: repeat(2, 1fr); }
  .fvalue-item { padding: 18px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .fvalue-item:nth-child(even) { border-right: none; }
  .fvalue-item:nth-child(3),
  .fvalue-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 600px) {
  .flier-container { padding: 0 1.25rem; }
  .fhero-headline { font-size: clamp(48px, 14vw, 64px); }
  .fhero-content { padding-bottom: 16px; }
  .fsvc-section { padding-top: 20px; }


  .fsvc-grid { grid-template-columns: 1fr; }
  .fsvc-card {
    border-right: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }
  .fsvc-card:last-child { border-bottom: none; }
  .fsvc-card:nth-child(3n+2),
  .fsvc-card:nth-child(3n+3) { padding-left: 0; }

  .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
  .review-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-left: none;
    border-top: none;
    border-radius: 0;
    padding: 20px 0;
    background: transparent;
  }
  .review-card:nth-child(3n+2),
  .review-card:nth-child(3n+3) { padding-left: 0; }
  .review-card:nth-child(3n) { border-right: none; }
  .review-card:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .review-card:last-child { border-bottom: none; }

  .fvalue-grid { grid-template-columns: repeat(2, 1fr); }
  .fvalue-item { padding: 16px 12px; }
  .fvalue-item:nth-child(even) { border-right: none; }
  .fvalue-item:nth-child(odd) { padding-left: 0; }
}



/* ─── Reviews grid texture ───────────────────────── */
.reviews-section {
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(240,236,228,0.025) 59px, rgba(240,236,228,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(240,236,228,0.025) 59px, rgba(240,236,228,0.025) 60px);
  pointer-events: none;
  z-index: 0;
}

.reviews-section > * {
  position: relative;
  z-index: 1;
}


/* ─── Equipment grid texture ─────────────────────── */
.equipment-highlight {
  position: relative;
}

.equipment-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(240,236,228,0.025) 59px, rgba(240,236,228,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(240,236,228,0.025) 59px, rgba(240,236,228,0.025) 60px);
  pointer-events: none;
  z-index: 0;
}

.equipment-highlight > * {
  position: relative;
  z-index: 1;
}


/* ─── Equipment homepage grid (matches services) ─── */
.equip-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.equip-home-card {
  display: block;
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--border);
  color: var(--text-primary);
  transition: color var(--transition);
}

.equip-home-card:nth-child(4n+2),
.equip-home-card:nth-child(4n+3),
.equip-home-card:nth-child(4n+4) {
  padding-left: 24px;
}

.equip-home-card:last-child {
  border-right: none;
  padding-right: 0;
}

.equip-home-card:hover { color: var(--text-primary); }
.equip-home-card:hover .fsvc-title { color: var(--accent); }


/* ── Venues list (matches Trusted By) ── */
.venue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 4;
  column-gap: 2rem;
}

.venue-item {
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  break-inside: avoid;
  line-height: 1.4;
}

.venue-item a {
  color: var(--text-secondary);
}

.venue-item a:hover {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .venue-list { columns: 3; }
}

@media (max-width: 600px) {
  .venue-list { columns: 2; }
}

/* ─── Mobile Responsive ──────────────────────────── */

@media (max-width: 900px) {
  :root {
    --section-pad: 3.5rem;
  }

  /* Remove backdrop-filter so position:fixed nav escapes the header containing block */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    display: none;
    z-index: 10000;
    overflow-y: auto;
    justify-content: flex-start;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
  }

  .nav-list {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    padding: 1rem;
    font-size: 1rem;
  }

  .nav-cta .btn-cta {
    margin: 1rem 0 0;
    display: block;
    text-align: center;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .header-phone {
    display: none;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-row-alt {
    direction: ltr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 30px;
  }

  .mobile-toggle {
    flex-shrink: 0;
    overflow: visible;
  }

  .hamburger-line {
    width: 30px;
  }

  :root {
    --section-pad: 2.5rem;
    --gap: 1.25rem;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Venue Grid ─────────────────────────────────── */

.venue-grid {
  columns: 4;
  column-gap: 2rem;
  margin-top: 2.5rem;
}

.venue-card {
  display: block;
  padding: 0.35rem 0;
  break-inside: avoid;
}

.venue-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
}

.venue-card-logo img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.venue-card-logo svg {
  color: var(--text-muted);
  transition: color var(--transition);
}

.venue-card:hover .venue-card-logo svg {
  color: var(--text-secondary);
}

.venue-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  line-height: 1.2;
  transition: color var(--transition);
}

.venue-card:hover .venue-card-name {
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .venue-grid { columns: 3; }
}
@media (max-width: 600px) {
  .venue-grid { columns: 2; }
}

/* ── Clients / Trusted By ── */
.client-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 4;
  column-gap: 2rem;
}

.client-item {
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  break-inside: avoid;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .client-list {
    columns: 3;
  }
}

@media (max-width: 600px) {
  .client-list {
    columns: 2;
  }
}

@media (max-width: 600px) {
  .equip-home-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-home-card { padding: 20px 12px 20px 0; }
  .equip-home-card:nth-child(4n+2),
  .equip-home-card:nth-child(4n+3),
  .equip-home-card:nth-child(4n+4) { padding-left: 12px; }
  .equip-home-card:nth-child(even) { border-right: none; padding-right: 0; }
  .equip-home-card:nth-child(odd) { border-right: 1px solid var(--border); }
  .equip-home-card:nth-child(3),
  .equip-home-card:nth-child(4) { border-bottom: none; }
}


/* =============================================================
   DESIGN SYSTEM 2.0 — Page Redesign (services, equipment,
   portfolio, about)
   ============================================================= */

:root {
  --accent-hm: #8B1A0A;
  --bg: #0c0c0a;
  --bg2: #141412;
  --fg: #f0ece4;
  --fg-dim: #7a7670;
  --rule: rgba(240,236,228,0.09);
}

body { background: var(--bg); }

/* --- Scoped hero -------------------------------------------- */

.page-hero--new {
  padding: 72px 80px 64px;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.page-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-hm);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-kicker::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent-hm);
  flex-shrink: 0;
}

.page-hero--new .page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: var(--fg);
}

.page-hero--new .page-title em {
  font-style: normal;
  color: var(--accent-hm);
}

.page-hero--new .page-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-dim);
  max-width: 520px;
  line-height: 1.7;
}

/* --- Services list ------------------------------------------ */

.services-list {
  display: flex;
  flex-direction: column;
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  min-height: 420px;
}

.svc-row.alt { direction: rtl; }
.svc-row.alt > * { direction: ltr; }

.svc-graphic {
  border-right: 1px solid var(--rule);
  background: #080808;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-row.alt .svc-graphic {
  border-right: none;
  border-left: 1px solid var(--rule);
}

.svc-graphic svg { width: 100%; height: 100%; display: block; }

.svc-content {
  padding: 52px 80px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.svc-row.alt .svc-content { padding: 52px 52px 52px 80px; }

.svc-num {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-hm);
  opacity: 0.7;
}

.svc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: 0.03em;
  color: var(--fg);
  line-height: 0.95;
}

.svc-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.svc-title a:hover { color: var(--accent-hm); }

.svc-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.75;
  max-width: 420px;
}

.svc-link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  margin-top: 4px;
}

.svc-link:hover { gap: 14px; color: var(--accent-hm); }
.svc-link::after { content: '→'; }

/* --- Equipment cards --------------------------------------- */

.equip-detail-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: background 0.25s;
  text-decoration: none;
  color: var(--fg);
  overflow: hidden;
}

.equip-detail-card:nth-child(2n) { border-right: none; }
.equip-detail-card:nth-child(3),
.equip-detail-card:nth-child(4) { border-bottom: none; }
a.equip-detail-card:hover { background: rgba(240,236,228,0.02); color: var(--fg); }

.equip-detail-card-image {
  height: auto;
  aspect-ratio: 16 / 7;
  background: #080808;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equip-detail-card-image svg { width: 100%; height: 100%; display: block; }

.equip-detail-card-body {
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.equip-detail-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0;
}

.equip-detail-card-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 0;
}

.equip-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.equip-preview-list li {
  font-size: 12px;
  font-weight: 300;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  position: static;
}

.equip-preview-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent-hm);
  border-radius: 50%;
  flex-shrink: 0;
  position: static;
  top: auto;
  left: auto;
}

.card-link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  font-weight: 400;
  margin-top: 8px;
}

.equip-detail-card:hover .card-link { gap: 14px; }

.card-grid-2 { grid-template-columns: 1fr 1fr; gap: 0; }

/* --- Equipment split section ------------------------------ */

.split-section {
  padding: 72px 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--rule);
}

.split-section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 40px;
  line-height: 1;
}

.split-section .two-col { grid-template-columns: 1fr 1fr; gap: 0; }

.split-section .two-col-item {
  padding-right: 48px;
  border-right: 1px solid var(--rule);
  border-bottom: none;
}

.split-section .two-col-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 48px;
}

.split-section .two-col-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1;
}

.split-section .two-col-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

.split-link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-hm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.split-link:hover { gap: 14px; color: var(--accent-hm); }
.split-link::after { content: '→'; }

/* --- Portfolio -------------------------------------------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.portfolio-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg2);
}

.portfolio-item img {
  width: 100%;
  display: block;
  opacity: 0.88;
  transition: opacity 0.3s;
}

.portfolio-item:hover img { opacity: 1; }

/* --- About content section -------------------------------- */

.content-section {
  padding: 72px 80px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.content-section .content-intro {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 620px;
}

.content-section .content-block {
  margin-bottom: 40px;
  padding: 0 0 40px 0;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: none;
}

.content-section .content-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-section .content-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1;
}

.content-section .content-block p {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 12px;
}

.content-section .content-block p:last-child { margin-bottom: 0; }

.content-section .content-cta {
  margin-top: 48px;
  padding: 48px 0 0 0;
  border: none;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  background: none;
}

.content-section .content-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1;
}

.content-section .content-cta p {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.content-section .content-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.content-section .btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  background: var(--accent-hm);
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: opacity 0.2s;
}

.content-section .btn-primary:hover { opacity: 0.85; color: var(--fg); }

.content-section .btn-outline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
  background: none;
  padding: 13px 28px;
  border: 1px solid var(--rule);
  cursor: pointer;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}

.content-section .btn-outline:hover {
  color: var(--fg);
  border-color: rgba(240,236,228,0.25);
}

/* --- About sidebar ---------------------------------------- */

.content-section .content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 88px;
}

.content-section .sidebar-card {
  background: var(--bg2);
  border: 1px solid var(--rule);
  padding: 28px 28px 32px;
  border-radius: 0;
  margin-bottom: 0;
}

.content-section .sidebar-card:first-child { border-bottom: none; }

.content-section .sidebar-heading {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-hm);
  opacity: 0.8;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section .sidebar-heading::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent-hm);
  opacity: 0.8;
  flex-shrink: 0;
}

.content-section .sidebar-stats { display: flex; flex-direction: column; gap: 0; }

.content-section .sidebar-stats dt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--accent-hm);
  line-height: 1;
  margin-top: 16px;
}

.content-section .sidebar-stats dt:first-child { margin-top: 0; }

.content-section .sidebar-stats dd {
  font-size: 11px;
  font-weight: 300;
  color: var(--fg-dim);
  margin-left: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.content-section .sidebar-stats dd:last-child { border-bottom: none; padding-bottom: 0; }

.content-section .sidebar-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.7;
}

.content-section .sidebar-card a { color: var(--fg); text-decoration: none; transition: color 0.2s; }
.content-section .sidebar-card a:hover { color: var(--accent-hm); }

.content-section .sidebar-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--fg);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}

/* --- Responsive: new components --------------------------- */

@media (max-width: 768px) {
  .page-hero--new { padding: 48px 24px 40px; }

  .svc-row { grid-template-columns: 1fr; min-height: auto; }
  .svc-row.alt { direction: ltr; }

  .svc-graphic {
    aspect-ratio: 4 / 3;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }

  .svc-row.alt .svc-graphic { border-left: none; border-bottom: 1px solid var(--rule); }
  .svc-content, .svc-row.alt .svc-content { padding: 36px 24px; }

  .card-grid-2 { grid-template-columns: 1fr; }

  .split-section { padding: 48px 24px; }
  .split-section .two-col { grid-template-columns: 1fr; }

  .split-section .two-col-item {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .split-section .two-col-item:last-child {
    padding-left: 0;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .content-section { padding: 48px 24px; grid-template-columns: 1fr; gap: 48px; }
  .content-section .content-sidebar { position: static; }

  .equip-detail-card-body { padding: 28px 24px 32px; }
}

/* --- Header clearance fix for redesigned hero --- */
.page-hero--new {
  padding: calc(var(--header-height) + 4rem) 80px 64px;
}

@media (max-width: 768px) {
  .page-hero--new {
    padding: calc(var(--header-height) + 2rem) 24px 40px;
  }
}

/* --- Sitewide background grid ----------------------------- */

html {
  background: var(--bg);
}

body {
  background: transparent;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: none;
  pointer-events: none;
  z-index: -1;
}


/* ─── Home page grid texture (below hero) ────────── */
.fsvc-section,
.fvalue-strip,
.fcopy-band {
  position: relative;
}

.fsvc-section::before,
.fvalue-strip::before,
.fcopy-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(240,236,228,0.025) 59px, rgba(240,236,228,0.025) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(240,236,228,0.025) 59px, rgba(240,236,228,0.025) 60px);
  pointer-events: none;
  z-index: 0;
}

.fsvc-section > *,
.fvalue-strip > *,
.fcopy-band > * {
  position: relative;
  z-index: 1;
}

/* --- Container-width alignment for all redesigned pages --- */
/*
  Formula: max(var(--gap), calc((100% - var(--container)) / 2 + var(--gap)))
  = same visual alignment as .container on every viewport width
*/

.page-hero--new {
  padding-left:  max(var(--gap), calc((100% - var(--container)) / 2 + var(--gap)));
  padding-right: max(var(--gap), calc((100% - var(--container)) / 2 + var(--gap)));
}

/* Service rows: full-width borders, container-aligned inner content */
.svc-content {
  padding-top: 52px;
  padding-bottom: 52px;
  padding-left:  max(var(--gap), calc((100vw - var(--container)) / 2 + var(--gap)));
  padding-right: 52px;
}

.svc-row.alt .svc-content {
  padding-left:  52px;
  padding-right: max(var(--gap), calc((100vw - var(--container)) / 2 + var(--gap)));
}

/* Equipment cards: constrain grid to container width */
.card-grid-2 {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* Split section: container-aligned padding */
.split-section {
  padding-left:  max(var(--gap), calc((100% - var(--container)) / 2 + var(--gap)));
  padding-right: max(var(--gap), calc((100% - var(--container)) / 2 + var(--gap)));
}

/* About content section: constrain width + container padding */
.content-section {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left:  var(--gap);
  padding-right: var(--gap);
}

/* Responsive */
@media (max-width: 768px) {
  .svc-content,
  .svc-row.alt .svc-content {
    padding-left:  var(--gap);
    padding-right: var(--gap);
  }

  .split-section {
    padding-left:  var(--gap);
    padding-right: var(--gap);
  }
}

/* --- Service row outer margin fix ------------------------- */
/* Mirror the container-aligned left margin on the outer edge
   of the graphic panel so both sides have equal spacing      */

.svc-graphic {
  padding-right: max(var(--gap), calc((100vw - var(--container)) / 2 + var(--gap)));
}

.svc-row.alt .svc-graphic {
  padding-right: 0;
  padding-left: max(var(--gap), calc((100vw - var(--container)) / 2 + var(--gap)));
}

@media (max-width: 768px) {
  .svc-graphic,
  .svc-row.alt .svc-graphic {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --- Services list: constrain to container (matches equipment grid) --- */

.services-list {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* Simplify svc-content padding now that list is container-constrained */
.svc-content {
  padding-top: 52px;
  padding-bottom: 52px;
  padding-left: var(--gap);
  padding-right: 52px;
}

.svc-row.alt .svc-content {
  padding-left: 52px;
  padding-right: var(--gap);
}

/* Remove the outer padding hack from graphic panels */
.svc-graphic {
  padding-right: 0;
}

.svc-row.alt .svc-graphic {
  padding-left: 0;
  padding-right: 0;
}

/* --- Equipment card title: match service row title size --- */
.equip-detail-card-title {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

/* --- Service title: match equipment card title size --- */
.equip-detail-card-title {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.svc-title {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
}

/* --- Service rows: unified dark background across both columns --- */
.svc-row {
  background: #080808;
}

/* --- Service rows: dark gray background (bg2) instead of black --- */
.svc-row {
  background: var(--bg2);
}

.svc-graphic {
  background: var(--bg2);
}

/* --- Service rows: transparent content side so grid shows through --- */
.svc-row {
  background: transparent;
}

/* --- Service rows: 25% shorter --- */
.svc-row {
  min-height: 315px;
}
