    :root {
      --jmr-green: #24B040;
      --jmr-green-dark: #1E8F36;
      --jmr-charcoal: #222222;
      --jmr-light: #F2F4F6;
      --jmr-mid-gray: #A7AEB5;
      --jmr-blue: #1F5F8B;
      --bg-body: #ffffff;
      --radius-lg: 14px;
      --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.10);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg-body);
      color: var(--jmr-charcoal);
      line-height: 1.6;
    }

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

    img, video {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* News / announcement bar */

    .jmr-news-bar {
      background: #022c22;
      color: #ecfdf3;
      font-size: 0.9rem;
      border-bottom: 1px solid rgba(16, 185, 129, 0.35);
    }

    .jmr-news-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .jmr-news-ticker {
      overflow: hidden;
      flex: 1;
    }

    .jmr-news-track {
      display: inline-block;
      white-space: nowrap;
      animation: jmrTicker 30s linear infinite;
    }

    .jmr-news-bar:hover .jmr-news-track {
      animation-play-state: paused;
    }

    @keyframes jmrTicker {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* Header & nav */

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid #e5e7eb;
    }

    .nav {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      color: #4b5563;
      font-weight: 500;
    }

    .nav-links a.nav-cta {
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      background: #ecfdf3;
      color: var(--jmr-green-dark);
      border: 1px solid #bbf7d0;
      font-weight: 600;
    }

    .nav-links a.is-active {
      color: var(--jmr-green-dark);
    }

    .nav-toggle {
      display: none; /* shown on mobile via media query */
    }

    main {
      flex: 1;
    }

    .section {
      padding: 3.5rem 1.5rem;
    }

    .section-alt {
      background: var(--jmr-light);
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    /* HERO with background video */

    .hero-media {
      position: relative;
      padding-top: 4.5rem;
      padding-bottom: 4.5rem;
      overflow: hidden;
      color: #f9fafb;
    }

    .hero-media-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-video,
    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05);
      transform: scale(1.02);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.45));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
      gap: 2.75rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #a5b4fc;
      margin-bottom: 0.6rem;
    }

    .hero-title {
      font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
      font-size: clamp(2.2rem, 5vw, 2.9rem);
      line-height: 1.1;
      margin: 0 0 0.8rem;
      color: #f9fafb;
    }

    .hero-subtitle {
      font-size: 1rem;
      max-width: 32rem;
      margin-bottom: 1.4rem;
      color: #e5e7eb;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .badge {
      font-size: 0.8rem;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.12);
      color: #bbf7d0;
      border: 1px solid rgba(74, 222, 128, 0.5);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
      border-width: medium;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .hero-meta {
      font-size: 0.85rem;
      color: #cbd5f5;
    }

    .hero-meta strong {
      font-weight: 600;
    }


    /* Shared HERO card (used on every page) */

    .hero-card {
      background: rgba(17, 24, 39, 0.9);
      border-radius: 18px;
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.5rem 1.5rem;
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
      position: relative;
      z-index: 1;
    }

    .hero-card-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .hero-card p {
      font-size: 0.88rem;
      margin: 0.25rem 0 0;
      color: #e5e7eb;
    }

    .hero-card a {
      color: #e5e7eb;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .hero-card a:hover {
      color: #ffffff;
    }

    .chip {
      font-size: 0.75rem;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      background: #eff6ff;
      color: #1d4ed8;
      border: 1px solid #bfdbfe;
      white-space: nowrap;
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 1.2rem;
    }

    .hero-metrics {
      display: grid;
      gap: 0.7rem;
      font-size: 0.8rem;
    }

    .metric-label {
      color: #9ca3af;
      margin-bottom: 0.15rem;
    }

    .metric-value {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .hero-hours {
      font-size: 0.8rem;
      border-radius: 12px;
      background: rgba(15, 118, 110, 0.14);
      padding: 0.85rem 0.9rem;
      border: 1px dashed rgba(110, 231, 183, 0.7);
    }

    .hero-hours strong {
      font-weight: 600;
    }

    .hero-hours p {
      margin: 0.5rem 0 0;
    }
    /* Section headings */

    .section-heading {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.7rem;
      margin-bottom: 0.5rem;
    }

    .section-intro {
      max-width: 40rem;
      color: #4b5563;
      font-size: 0.98rem;
      margin-bottom: 1.5rem;
    }

    /* Two-column cards */

    .two-col {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2rem;
    }

    .card {
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid #e5e7eb;
      padding: 1.3rem 1.4rem;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.04);
      font-size: 0.9rem;
    }

    .card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      margin-top: 0;
      margin-bottom: 0.5rem;
    }

    .card p {
      margin: 0.25rem 0 0;
    }

    .card-with-media {
      padding-top: 0;
      overflow: hidden;
    }

    .card-media {
      margin: 0 -1.4rem 0.9rem;
      height: 170px;
      overflow: hidden;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      position: relative;
      background: #000;
    }

    .card-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Buttons */

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.75rem 1.3rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--jmr-green), var(--jmr-green-dark));
      color: white;
      box-shadow: 0 12px 25px rgba(34, 197, 94, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 35px rgba(34, 197, 94, 0.45);
    }

    .btn-secondary {
      background: #f9fafb;
      color: #111827;
      border: 1px solid #d1d5db;
    }

    .btn-secondary:hover {
      background: #f3f4f6;
      transform: translateY(-1px);
    }

    /* Why JMR - reason grid */

    .reason-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .reason-card {
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 16px rgba(15, 23, 42, 0.03);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      font-size: 0.88rem;
    }

    .reason-photo {
      height: 140px;
      overflow: hidden;
    }

    .reason-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .reason-body {
      padding: 0.9rem 1.1rem 1.1rem;
    }

    .reason-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
    }

    /* Reviews / social proof */

    .reviews-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
      gap: 2rem;
      align-items: flex-start;
    }

    .reviews-summary {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid #e5e7eb;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
      padding: 1.3rem 1.4rem;
      font-size: 0.9rem;
    }

    .reviews-stars {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      margin-bottom: 0.35rem;
    }

    .reviews-stars span {
      font-size: 1.05rem;
    }

    .reviews-score {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.3rem;
    }

    .reviews-label {
      font-size: 0.8rem;
      color: #6b7280;
    }

    .reviews-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      margin-top: 0.6rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      font-size: 0.78rem;
      color: #1d4ed8;
    }

    .reviews-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    .reviews-note {
      margin-top: 0.7rem;
      font-size: 0.85rem;
      color: #4b5563;
    }

    .reviews-link {
      margin-top: 0.9rem;
      font-size: 0.85rem;
    }

    .reviews-link a {
      font-weight: 600;
      color: var(--jmr-blue);
      text-decoration: underline;
    }

    .review-photos {
      margin-top: 1.1rem;
      display: flex;
      gap: 0.65rem;
    }

    .review-photo {
      flex: 1 1 0;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }

    .review-photo img {
      width: 100%;
      height: 80px;
      object-fit: cover;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .review-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid #e5e7eb;
      padding: 0.95rem 1rem 1rem;
      box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
      font-size: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .review-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
    }

    .review-name {
      font-weight: 600;
    }

    .review-stars {
      font-size: 0.8rem;
      color: #f59e0b;
    }

    .review-text {
      color: #4b5563;
    }

    .review-meta {
      font-size: 0.75rem;
      color: #9ca3af;
    }

    /* Map embed */

    .map-embed {
      padding: 0 1.5rem 0;
      margin-top: -1rem;
    }

    .map-embed .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .map-frame {
      width: 100%;
      border: 0;
      border-radius: 14px;
      height: 260px;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    }

    /* Contact & form */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 2fr);
      gap: 1.8rem;
      align-items: flex-start;
    }

    .contact-block h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      margin-top: 0;
      margin-bottom: 0.4rem;
    }

    .contact-text {
      font-size: 0.9rem;
      color: #4b5563;
    }

    .contact-detail {
      font-size: 0.9rem;
      margin-bottom: 0.18rem;
    }

    .contact-detail strong {
      font-weight: 600;
    }

    .contact-form {
      margin-top: 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .form-field {
      flex: 1 1 50px;
    }

    .form-field label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
      color: #374151;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      padding: 0.5rem 0.65rem;
      font-size: 0.9rem;
      font-family: inherit;
      outline: none;
      background: #ffffff;
      color: #111827;
    }

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

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--jmr-green);
      box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
    }

    .form-error {
      margin-top: 0.25rem;
      font-size: 0.75rem;
      color: #b91c1c;
      min-height: 0.9em;
    }

    .form-note {
      margin: 0.3rem 0 0;
      font-size: 0.75rem;
      color: #6b7280;
    }

    /* Yard photo strip */

    .yard-strip {
      margin-top: 1.75rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      font-size: 0.8rem;
      color: #4b5563;
    }

    .yard-strip-item img {
      border-radius: 12px;
      box-shadow: 0 10px 18px rgba(15, 23, 42, 0.20);
    }

    .yard-strip-item p {
      margin-top: 0.35rem;
    }

    /* Mobile sticky call bar */

    .mobile-call-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 60;
      display: none; /* shown only on small screens */
      background: #0f172a;
      box-shadow: 0 -8px 16px rgba(15, 23, 42, 0.35);
      padding: 0.45rem 1.1rem;
    }

    .mobile-call-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      color: #e5e7eb;
      font-size: 0.85rem;
    }

    .mobile-call-label {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }

    .mobile-call-label strong {
      font-size: 0.9rem;
    }

    .mobile-call-number {
      font-weight: 600;
    }

    .mobile-call-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--jmr-green), var(--jmr-green-dark));
      color: #ffffff;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      white-space: nowrap;
    }

    /* Footer */

    footer {
      border-top: 1px solid #e5e7eb;
      padding: 1.2rem 1.5rem 1.5rem;
      font-size: 0.8rem;
      color: #6b7280;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: space-between;
      align-items: center;
    }

    /* Responsive */

    @media (max-width: 900px) {
      .hero-grid,
      .two-col,
      .reason-grid,
      .contact-grid,
      .reviews-layout {
        grid-template-columns: minmax(0, 1fr);
      }

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

      .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-media {
        padding-top: 3.3rem;
        padding-bottom: 3.3rem;
      }

      .map-embed {
        padding: 0 1.1rem 0;
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none; /* hide by default on mobile */
      }

      .nav {
        position: relative;
      }

      .nav.is-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 1.5rem;
        left: 1.5rem;
        padding: 0.75rem 1rem 1rem;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: var(--shadow-soft);
        gap: 0.75rem;
        z-index: 40;
      }

      .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid #d1d5db;
        padding: 0.35rem 0.8rem;
        font-size: 0.8rem;
        background: #f9fafb;
        cursor: pointer;
      }

      .section {
        padding: 2.5rem 1.1rem;
      }

      .hero-card {
        margin-top: 1.8rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }

      .yard-strip {
        grid-template-columns: minmax(0, 1fr);
      }

      .form-row {
        flex-direction: column;
      }

      .social-strip {
        flex-direction: column;
        align-items: stretch;
      }

      .map-frame {
        height: 220px;
      }

      .mobile-call-bar {
        display: block;
      }

      body {
        padding-bottom: 3.2rem; /* space for call bar */
      }
    }

    @media (max-width: 480px) {
      .section-heading {
        font-size: 1.4rem;
      }
    }

    @media (min-width: 1024px) {
      .gallery-item {
        flex-basis: 230px;
      }
    }
  

/* --- Security refactor utilities (replaces removed inline styles) --- */
.nav-logo-img { max-height: 40px; width: auto; }
.mt-1 { margin-top: 1rem; }
.mt-075 { margin-top: 0.75rem; }
.mt-09 { margin-top: 0.9rem; }
.h3-tight { font-family: 'Montserrat', sans-serif; font-size: 1rem; margin-top: 0; margin-bottom: 0.6rem; }
.gallery-note { margin-top: 1rem; }

/* Prevent background scrolling when lightbox is open (CSP-safe: no inline styles) */
body.no-scroll {
  overflow: hidden;
}

