  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Inter', Arial, sans-serif; background: #F6F1E7; color: #23303F; }
  :root {
    --orange: #EA580C;
    --orange-dark: #C2410C;
    --orange-light: #FDBA74;
    --black: #1A2430;
    --dark: #2C3B4E;
    --card: #FFFDF9;
    --border: #E4D9C4;
    --text: #23303F;
    --muted: #5B6B7D;
    --slate-900: #1E2A38;
    --slate-800: #2C3B4E;
    --slate-700: #3F5164;
    --slate-300: #B9C3CC;
    --beige: #F6F1E7;
    --beige-dark: #ECE3CE;
  }

  a { color: inherit; text-decoration: none; }

  /* NAV — scoped to .site-nav, not the bare <nav> tag, so breadcrumb/footer
     <nav> landmarks elsewhere on the site don't inherit sticky-header styles */
  nav.site-nav {
    background: var(--slate-900);
    border-bottom: 2px solid var(--orange);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-icon {
    width: 42px;
    height: 42px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: var(--slate-900);
    letter-spacing: -1px;
  }
  .logo-text {
    line-height: 1.1;
  }
  .logo-text .main { font-size: 18px; font-weight: 700; color: #fff; }
  .logo-text .sub { font-size: 11px; color: var(--orange-light); letter-spacing: 1px; text-transform: uppercase; }

  /* ═══════════════════════════════════════════════
     INTERACTIVE 3D LOGO
     The flat <img> (.logo3d-fallback-img) is always present underneath
     and is what shows by default — fast, works with JS off, correct for
     screen readers. The WebGL <canvas> only fades in on top of it once
     Three.js has actually loaded the model and rendered a first frame
     (see /assets/logo3d.js), so there's never a blank gap or layout
     shift, and nothing breaks if 3D can't load for any reason.
  ═══════════════════════════════════════════════ */
  .logo3d-mount {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  .logo3d-fallback-img {
    display: block;
    width: 100%;
    height: 100%;
  }
  .logo3d-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: grab;
    transition: opacity 0.4s ease;
    touch-action: none; /* let pointer drag rotate instead of scrolling the page */
  }
  .logo3d-canvas.grabbing { cursor: grabbing; }
  .logo3d-mount.logo3d-ready .logo3d-canvas { opacity: 1; }
  .logo3d-mount.logo3d-ready .logo3d-fallback-img { opacity: 0; }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
  }
  .nav-links a { color: var(--slate-300); transition: color 0.2s; }
  .nav-links a:hover { color: var(--orange-light); }

  .nav-cta {
    background: var(--orange);
    color: var(--slate-900);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
  }

  /* HERO */
  .hero {
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 55%, var(--slate-900) 100%);
    border-bottom: 1px solid var(--slate-700);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(234,88,12,0.16) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(234,88,12,0.18);
    border: 1px solid rgba(234,88,12,0.45);
    color: var(--orange-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
  }
  .hero h1 span { color: var(--orange-light); }
  .hero-sub {
    font-size: 18px;
    color: var(--slate-300);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--slate-900);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--slate-700);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange-light); }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0 0;
    border-top: 1px solid var(--slate-700);
  }
  .stat { text-align: center; }
  .stat .num { font-size: 32px; font-weight: 900; color: var(--orange-light); }
  .stat .label { font-size: 12px; color: var(--slate-300); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  /* SECTIONS */
  section { padding: 4rem 2rem; }
  .section-inner { max-width: 1080px; margin: 0 auto; }
  .section-label {
    font-size: 12px;
    color: var(--orange-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  .section-title span { color: var(--orange); }
  .section-desc {
    font-size: 16px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  /* SERVICES */
  .services-bg { background: var(--beige); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: default;
    box-shadow: 0 1px 3px rgba(30,42,56,0.05);
  }
  .service-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30,42,56,0.08);
  }
  .service-icon {
    width: 52px; height: 52px;
    background: rgba(234,88,12,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 26px;
  }
  .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
  }
  .service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .tag {
    background: rgba(234,88,12,0.1);
    border: 1px solid rgba(234,88,12,0.3);
    color: var(--orange-dark);
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 600;
  }

  /* WHY US */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    border-radius: 10px;
    padding: 1.25rem;
  }
  .why-card .icon { font-size: 24px; margin-bottom: 0.75rem; }
  .why-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
  .why-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

  /* COMPLIANCE STRIP */
  .compliance {
    background: var(--orange);
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .compliance-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
  }
  .compliance-item span { font-size: 18px; }

  /* PROCESS */
  .process-bg { background: #FFFFFF; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
    position: relative;
  }
  .step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
  }
  .step-num {
    width: 48px; height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: var(--slate-900);
    margin: 0 auto 1rem;
  }
  .step h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
  .step p { font-size: 12px; color: var(--muted); line-height: 1.5; }

  /* PPE / SAFETY */
  .ppe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
  }
  .ppe-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--slate-700);
  }
  .ppe-item .dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* CERTIFICATIONS */
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  .cert-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
  }
  .cert-badge {
    display: inline-block;
    background: rgba(234,88,12,0.12);
    border: 2px solid var(--orange);
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
  }
  .cert-card h4 { font-size: 14px; color: var(--text); font-weight: 700; margin-bottom: 0.25rem; }
  .cert-card p { font-size: 12px; color: var(--muted); }

  /* PHOTOS GRID */
  .photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .photo-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--card);
    border: 1px solid var(--border);
    position: relative;
  }
  .photo-item img,
  .photo-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .photo-item .play-badge {
    position: absolute;
    top: 10px; right: 10px;
    background: rgba(30,42,56,0.78);
    color: #fff;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    pointer-events: none;
  }
  .photo-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(30,42,56,0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
  }

  /* ═══════════════════════════════════════════════════════════════
     3D PHOTO DRUM — progressive enhancement of .photos-grid
     ═══════════════════════════════════════════════════════════════
     assets/gallery3d.js clones the .photo-item cards above into a
     draggable 3D ring and hides the flat grid. If JS fails, is
     disabled, or the gallery has fewer than 3 photos, the plain
     grid above is exactly what displays — this block only styles
     the enhanced version. */
  .photo-drum-wrap { margin-top: 0.5rem; }
  .photo-drum-stage {
    position: relative;
    height: 420px;
    perspective: 1500px;
    cursor: grab;
    touch-action: pan-y;
    border-radius: 20px;
    background: linear-gradient(180deg, var(--beige-dark), var(--beige));
    border: 1px solid var(--border);
  }
  .photo-drum-stage.dragging { cursor: grabbing; }
  .photo-drum-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 1px; height: 1px;
    transform-style: preserve-3d;
    will-change: transform;
  }
  .photo-drum-panel {
    position: absolute;
    top: 50%; left: 50%;
    width: 220px;
    height: 165px;
    margin: -82px 0 0 -110px;
    backface-visibility: hidden;
    box-shadow: 0 18px 34px -14px rgba(30,42,56,0.35);
    transition: box-shadow 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  }
  .photo-drum-panel.is-focus {
    box-shadow: 0 0 0 3px var(--orange), 0 22px 40px -12px rgba(30,42,56,0.45);
  }
  .photo-drum-panel.is-dim { opacity: 0.45; filter: saturate(0.75); }
  .photo-drum-hint {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.75rem;
  }

  /* TESTIMONIALS */
  .test-bg { background: #FFFFFF; }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  .test-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
  }
  .stars { color: var(--orange); font-size: 16px; margin-bottom: 0.75rem; }
  .test-card p { font-size: 14px; color: var(--slate-700); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 10px; }
  .rev-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-900);
  }
  .rev-name { font-size: 14px; font-weight: 700; color: var(--text); }
  .rev-loc { font-size: 12px; color: var(--muted); }

  /* CONTACT */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .contact-info h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
  .contact-info p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
  .contact-methods { display: flex; flex-direction: column; gap: 0.875rem; }
  .contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    transition: border-color 0.2s;
  }
  .contact-method:hover { border-color: var(--orange); }
  .contact-method-icon {
    width: 42px; height: 42px;
    background: rgba(234,88,12,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .contact-method-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
  .contact-method-value { font-size: 15px; font-weight: 700; color: var(--text); }

  .contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
  }
  .contact-form h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 1.25rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 0.75rem; }
  .form-group { margin-bottom: 0.75rem; }
  .form-group label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--beige);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    font-family: 'Inter', Arial, sans-serif;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--orange); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-group select option { background: var(--card); }
  .submit-btn {
    width: 100%;
    background: var(--orange);
    color: var(--slate-900);
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-top: 0.25rem;
  }
  .form-note { font-size: 12px; color: var(--muted); margin-top: 0.75rem; text-align: center; }

  /* FOOTER */
  footer {
    background: var(--slate-900);
    border-top: 2px solid var(--orange);
    padding: 2.5rem 2rem 1.5rem;
  }
  .footer-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-brand p { font-size: 13px; color: var(--slate-300); line-height: 1.7; margin-top: 0.75rem; }
  .footer-col-heading { font-size: 13px; font-weight: 700; color: var(--orange-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.875rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-col ul li { font-size: 13px; color: var(--slate-300); }
  .footer-col ul li a { color: var(--slate-300); }
  .footer-col ul li a:hover { color: var(--orange-light); }
  .footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    border-top: 1px solid var(--slate-700);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--slate-300);
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .footer-bottom strong { color: var(--orange-light); }

  @media (max-width: 700px) {
    .hero h1 { font-size: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .photos-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .photo-drum-stage { height: 320px; perspective: 900px; }
    .photo-drum-panel { width: 160px; height: 120px; margin: -60px 0 0 -80px; }
  }

/* ═══════════════════════════════════════════════
   ACCESSIBILITY — skip link
═══════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--slate-900);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   NAV — services dropdown (multi-page site)
═══════════════════════════════════════════════ */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--slate-900);
  border: 1px solid var(--slate-700);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 10px 10px;
  min-width: 260px;
  padding: 0.5rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  z-index: 200;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--slate-300);
}
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: rgba(234,88,12,0.12); color: var(--orange-light); }
.nav-dropdown a .dd-desc { display:block; font-size: 11px; color: var(--slate-300); opacity: 0.75; font-weight: 400; margin-top: 2px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; padding: 4px 8px; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--slate-900);
    border-bottom: 2px solid var(--orange);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 2rem; }
  .nav-dropdown { position: static; transform: none; display: block; box-shadow: none; border: none; background: rgba(0,0,0,0.15); margin: 0 1rem 0.5rem; }
  .nav-item-dropdown .nav-dropdown { display: none; }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
}

/* ═══════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--beige-dark);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
}
.breadcrumb-list {
  max-width: 1080px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list a { color: var(--orange-dark); font-weight: 600; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--border); margin-left: 6px; }
.breadcrumb-list li[aria-current="page"] { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════
   SERVICE PAGE HERO (smaller than homepage hero)
═══════════════════════════════════════════════ */
.service-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 55%, var(--slate-900) 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(234,88,12,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.service-hero-inner { max-width: 1080px; margin: 0 auto; position: relative; }
.service-hero h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.75rem;
  max-width: 760px;
}
.service-hero h1 span { color: var(--orange-light); }
.service-hero .lede {
  font-size: 17px;
  color: var(--slate-300);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.service-hero .hero-btns { margin-bottom: 0; justify-content: flex-start; }
.service-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.service-badge {
  background: rgba(234,88,12,0.15);
  border: 1px solid rgba(234,88,12,0.4);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

@media (max-width: 700px) {
  .service-hero h1 { font-size: 30px; }
}

/* ═══════════════════════════════════════════════
   BENEFIT LIST (icon + text, used in service pages)
═══════════════════════════════════════════════ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.benefit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-card .b-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(234,88,12,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 800px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   RELATED SERVICES / INTERNAL LINKING STRIP
═══════════════════════════════════════════════ */
.related-bg { background: var(--beige-dark); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.related-card .r-icon { font-size: 24px; margin-bottom: 0.6rem; }
.related-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.related-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 0.6rem; }
.related-card .r-link { font-size: 13px; font-weight: 700; color: var(--orange-dark); }

/* ═══════════════════════════════════════════════
   MINI QUOTE CTA (service page bottom)
═══════════════════════════════════════════════ */
.mini-cta {
  background: var(--slate-900);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}
.mini-cta h2 { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 0.6rem; }
.mini-cta p { color: var(--slate-300); font-size: 15px; margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.mini-cta .hero-btns { justify-content: center; margin-bottom: 0; }

/* ═══════════════════════════════════════════════
   SERVICE AREAS LIST
═══════════════════════════════════════════════ */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.area-pill {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════
   MAP EMBED
═══════════════════════════════════════════════ */
.map-embed {
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Visually-hidden helper (for descriptive text kept for screen readers only) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Live customer review cards (homepage widget) ─── */
  .cust-review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.4rem 1.5rem;
    margin-bottom: 1rem;
    animation: fadeSlideIn 0.35s ease;
  }
  .cust-review-card .stars { color: var(--orange); font-size: 16px; margin-bottom: 0.6rem; }
  .cust-review-card .rv-text { font-size: 14px; color: var(--slate-700); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
  .cust-review-card .rv-meta { display:flex; align-items:center; gap:10px; }
  .cust-review-card .rv-avatar {
    width:36px; height:36px; border-radius:50%;
    background:var(--orange); display:flex; align-items:center;
    justify-content:center; font-size:13px; font-weight:700; color:var(--slate-900); flex-shrink:0;
  }
  .cust-review-card .rv-name { font-size:14px; font-weight:700; color:var(--text); }
  .cust-review-card .rv-sub { font-size:12px; color:var(--muted); }
  .cust-review-card .rv-badge {
    margin-left:auto; background:rgba(234,88,12,0.1);
    border:1px solid rgba(234,88,12,0.3); color:var(--orange);
    font-size:11px; padding:3px 10px; border-radius:12px; font-weight:600; white-space:nowrap;
  }
  .cust-review-card .rv-date { font-size:11px; color:var(--muted); margin-top:2px; }
  @keyframes fadeSlideIn {
    from { opacity:0; transform:translateY(12px); }
    to   { opacity:1; transform:translateY(0); }
  }
  #customer-reviews-feed h3 {
    font-size:18px; font-weight:700; color:var(--text); margin-bottom:1.25rem;
  }
  #no-reviews-msg { color:var(--muted); font-size:14px; text-align:center; padding:2rem; }
  @media(max-width:600px){
    #leave-review .section-inner > div > div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns:1fr !important;
    }
  }
