/* ============================================================
   OUTDRIVE CAR SERVICE — Main Stylesheet
   Brand: Black (#0A0A0A) + Lime Green (#8DC63F) + White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;1,700;1,800&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;1,700;1,800&display=swap');

:root {
  --lime:        #8DC63F;
  --lime-bright: #A8E050;
  --lime-dim:    #6FA030;
  --black:       #0A0A0A;
  --near-black:  #111213;
  --dark1:       #161718;
  --dark2:       #1C1D1E;
  --dark3:       #242526;
  --border:      rgba(141,198,63,0.18);
  --border-dim:  rgba(255,255,255,0.08);
  --text-main:   #F0F0F0;
  --text-muted:  rgba(255,255,255,0.55);
  --text-dim:    rgba(255,255,255,0.30);
  --nav-h:       70px;
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --radius:      5px;
  --shadow:      0 2px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.7);
  --glow:        0 0 20px rgba(141,198,63,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background: var(--black);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,1);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}

.navbar-logo {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  height: var(--nav-h);
  padding: 0;
}
.navbar-logo img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  filter: brightness(1.35);
}
/* Fallback text logo if image fails */
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin-left: auto;
}

.navbar-links a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--lime);
  background: rgba(141,198,63,0.08);
}

.navbar-cta {
  background: var(--lime) !important;
  color: var(--black) !important;
  border-radius: var(--radius) !important;
  padding: 0.5rem 1.25rem !important;
  font-weight: 700 !important;
  color: #0A0A0A !important;
}
.navbar-cta:hover {
  background: var(--lime-bright) !important;
  color: var(--black) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 270px;
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  color: var(--text-muted) !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  padding: 0.6rem 1.25rem !important;
  text-transform: none !important;
  background: none !important;
  border-radius: 0 !important;
  letter-spacing: 0 !important;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(141,198,63,0.08) !important;
  color: var(--lime) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO (HOME) ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-placeholder {
  width: 100%; height: 100%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.1);
}
.hero-placeholder i { font-size: 80px; }
.hero-placeholder span { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }

/* Subtle grid overlay on hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141,198,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141,198,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 2rem 4rem 6%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(141,198,63,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 40px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  font-style: italic;
  line-height: 1.02;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-headline em {
  color: var(--lime);
  font-style: italic;
}

.hero-sub {
  font-size: 16.5px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  background: rgba(141,198,63,0.07);
  border: 1px solid rgba(141,198,63,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge i { color: var(--lime); font-size: 18px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--lime-bright);
  transform: translateY(-1px);
  box-shadow: var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 1.5px solid rgba(141,198,63,0.5);
}
.btn-outline:hover {
  border-color: var(--lime);
  background: rgba(141,198,63,0.08);
}

.btn-wa {
  background: #25D366;
  color: #0A0A0A;
  font-weight: 700;
}
.btn-wa:hover { background: #2de070; }

.btn-dark {
  background: var(--dark2);
  color: var(--text-main);
  border: 1px solid var(--border-dim);
}
.btn-dark:hover { background: var(--dark3); }

/* ---- SERVICES GRID (HOME) ---- */
.services-section {
  padding: 5rem 5%;
  background: var(--near-black);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--dark1);
  border: none;
  border-right: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  background: var(--dark2);
  border-color: transparent;
  box-shadow: inset 0 0 0 1.5px var(--lime);
  z-index: 1;
  position: relative;
}

.service-card-icon {
  width: 40px; height: 40px;
  background: rgba(141,198,63,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 20px;
}

.service-card-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: 0.3px;
}

.service-card:hover .service-card-name { color: var(--lime); }

.service-card-arrow {
  margin-top: auto;
  color: var(--lime-dim);
  font-size: 16px;
  transition: transform 0.2s;
}
.service-card:hover .service-card-arrow { transform: translateX(4px); color: var(--lime); }

/* ---- GOOGLE REVIEWS SECTION ---- */
.reviews-section {
  padding: 4rem 5%;
  background: #fff;
  text-align: center;
}
.reviews-section .section-label,
.reviews-section .section-title {
  text-align: center;
}
.reviews-section .section-title {
  margin-bottom: 2rem;
}

/* ---- NOT SURE CTA BAND ---- */
.cta-band {
  background: var(--lime);
  padding: 3rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  font-style: italic;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.cta-band-text p { color: rgba(0,0,0,0.6); font-size: 15px; margin-top: 0.25rem; }

.cta-band .btn-wa {
  background: var(--black);
  color: var(--lime);
}
.cta-band .btn-wa:hover { background: #111; }

/* ---- SERVICE PAGE LAYOUT ---- */
.page-hero {
  background: var(--black);
  padding: 3.5rem 5% 3rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.page-hero-content { flex: 1 1 360px; }

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(141,198,63,0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 40px;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.02;
  margin-bottom: 1.75rem;
  letter-spacing: -0.5px;
}

.page-hero-image {
  flex: 1 1 320px;
  max-width: 520px;
}

@media (max-width: 860px) {
  .page-hero-image .image-placeholder {
    display: none;
  }
  .page-hero-image img {
    display: block;
  }
}

.image-placeholder {
  background: var(--dark2);
  border: 2px dashed rgba(141,198,63,0.2);
  border-radius: var(--radius);
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.image-placeholder i { font-size: 40px; color: rgba(141,198,63,0.2); }

/* ---- SERVICE BODY ---- */
.service-body {
  padding: 4rem 5%;
  max-width: 900px;
  background: var(--near-black);
}

.service-intro p {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.35rem;
}

.service-packages {
  margin: 2.5rem 0;
}

.service-packages h3,
.service-list-section h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: 0.3px;
}

.packages-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.package-card {
  background: var(--dark1);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex: 1;
  min-width: 180px;
  transition: border-color 0.2s;
}
.package-card:hover { border-color: var(--lime); }
.package-card-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}
.package-card-time {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.package-card-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
  margin-top: 0.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 2rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 15.5px;
  line-height: 1.65;
  padding: 0.85rem 1.1rem;
  background: var(--dark1);
  border-radius: var(--radius);
  border-left: 3px solid var(--lime);
  color: rgba(255,255,255,0.82);
}
.service-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 7px;
  flex-shrink: 0;
}

/* ---- WA CONTACT BLOCK ---- */
.wa-block {
  background: var(--dark1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}
.wa-block p { color: var(--text-muted); font-size: 15px; }
.wa-block .wa-number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  font-style: italic;
  color: var(--lime);
  letter-spacing: 1px;
}

/* ---- SERVICE NAVIGATION STRIP ---- */
.services-strip {
  background: var(--dark1);
  border-bottom: 1px solid var(--border-dim);
  padding: 0.85rem 5%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.services-strip::-webkit-scrollbar { height: 2px; }
.services-strip::-webkit-scrollbar-thumb { background: rgba(141,198,63,0.3); }
.services-strip-inner {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.strip-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.strip-link {
  display: inline-block;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 40px;
  border: 1px solid var(--border-dim);
  transition: all 0.18s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.strip-link:hover { color: var(--lime); border-color: rgba(141,198,63,0.3); }
.strip-link.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--black);
  font-weight: 700;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dim);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  font-size: 13px;
}
.footer a { color: var(--text-muted); transition: color 0.2s; }
.footer a:hover { color: var(--lime); }

/* ---- CONTROL PANEL ---- */
.cp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.cp-overlay.open { display: flex; }

.cp-modal {
  background: var(--dark1);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: min(740px, 95vw);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.cp-header {
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1;
}
.cp-header h2 {
  color: var(--lime);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cp-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}
.cp-close:hover { color: var(--lime); }

.cp-body { padding: 1.5rem; }

.cp-tabs {
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.cp-tab {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.18s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cp-tab:hover { color: var(--text-main); }
.cp-tab.active { color: var(--lime); border-bottom-color: var(--lime); }

.cp-section { display: none; }
.cp-section.active { display: block; }

.cp-field { margin-bottom: 1.25rem; }
.cp-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.45rem;
}
.cp-field input,
.cp-field textarea,
.cp-field select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-main);
  background: var(--dark2);
  transition: border-color 0.2s;
  outline: none;
}
.cp-field input:focus,
.cp-field textarea:focus { border-color: var(--lime); }
.cp-field textarea { min-height: 100px; resize: vertical; line-height: 1.6; }

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

.cp-save-bar {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  background: var(--black);
  position: sticky;
  bottom: 0;
}
.cp-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-right: auto;
  line-height: 1.5;
}

.cp-trigger {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: var(--lime);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(141,198,63,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 8000;
  transition: transform 0.2s, background 0.2s;
}
.cp-trigger:hover { background: var(--lime-bright); transform: scale(1.1); }

.cp-service-select {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cp-service-btn {
  background: var(--dark2);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cp-service-btn:hover { border-color: rgba(141,198,63,0.4); color: var(--lime); }
.cp-service-btn.active { background: var(--lime); border-color: var(--lime); color: var(--black); }

.cp-service-editor { display: none; }
.cp-service-editor.active { display: block; }

.cp-list-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cp-list-item input { flex: 1; }
.cp-list-del {
  background: none;
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  font-size: 15px;
  flex-shrink: 0;
}
.cp-list-del:hover { border-color: rgba(141,198,63,0.4); color: var(--lime); }

.cp-add-btn {
  background: none;
  border: 1.5px dashed var(--border-dim);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cp-add-btn:hover { border-color: rgba(141,198,63,0.4); color: var(--lime); }

.saved-toast {
  position: fixed;
  bottom: 5rem;
  right: 1.75rem;
  background: var(--lime);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  box-shadow: var(--glow);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
  pointer-events: none;
}
.saved-toast.show { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-hamburger { display: flex; }
  .page-hero {
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 5% 2rem;
  }
  .page-hero-image {
    width: 100%;
    max-width: 100%;
  }
  .page-hero-image .image-placeholder { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .cp-row, .cp-row-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 560px) {
  .cta-band { flex-direction: column; text-align: center; }
  .services-section, .service-body { padding: 3rem 1.25rem; }
  .page-hero { padding: 1.5rem 1.25rem; gap: 1rem; }
  .page-hero-image .image-placeholder { display: none; }
}
