/* ── Reset & Base ────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body { overflow-x: hidden; }
    body {
      font-family: 'Open Sans', sans-serif;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
    }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { text-decoration: none; color: inherit; }

    /* ── Color Tokens ────────────────────────────── */
    :root {
      --yellow: #F5B800;
      --yellow-dark: #D9A200;
      --yellow-light: #FFF8E1;
      --black: #1A1A1A;
      --gray: #555;
      --light-gray: #f4f4f4;
      --white: #ffffff;
    }

    /* ── Utility ─────────────────────────────────── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 800;
      line-height: 1.2;
      color: var(--black);
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--gray);
      max-width: 580px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--yellow);
      color: var(--black);
      border-color: var(--yellow);
    }
    .btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
    .btn-outline {
      background: transparent;
      color: var(--black);
      border-color: var(--black);
    }
    .btn-outline:hover { background: var(--black); color: var(--white); }

    /* ── Social / Review Bar ─────────────────────── */
    #social-bar {
      background: #0f0f0f;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 8px 0;
    }
    .social-inner {
      display: flex;
      align-items: center;
      padding: 0 16px;
      line-height: 1;
    }
    .social-list {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
      flex-shrink: 0;
    }
    .social-btn:hover {
      transform: translateY(-2px) scale(1.06);
      filter: brightness(1.1);
      box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    .social-btn svg { width: 18px; height: 18px; display: block; }
    .social-letter {
      font-family: 'Arial Black', 'Montserrat', sans-serif;
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
      color: #fff;
      display: block;
      transform: translateY(-1px);
    }
    .social-angi { background: #FF6153; }
    .social-fb { background: #1877F2; }
    .social-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
    .social-yelp { background: #D32323; }
    @media (max-width: 520px) {
      .social-inner { padding: 0 10px; }
      .social-list { gap: 6px; }
    }

    /* ── Sticky Header ───────────────────────────── */
    #header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--black);
      border-bottom: 3px solid var(--yellow);
      transition: box-shadow 0.2s;
    }
    #header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 16px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .logo-img {
      height: 52px;
      width: auto;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo-text { color: var(--white); }
    .logo-text strong {
      display: block;
      font-family: 'Lato', sans-serif;
      font-size: 1.05rem;
      font-weight: 900;
      line-height: 1.1;
      color: var(--white);
    }
    .logo-text span {
      font-size: 0.7rem;
      color: #aaa;
      letter-spacing: 0.05em;
    }
    .header-ctas {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .call-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--yellow);
      color: var(--black);
      padding: 10px 20px;
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      transition: background 0.2s;
    }
    .call-btn:hover { background: var(--yellow-dark); }
    .call-btn svg { flex-shrink: 0; }
    .email-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--yellow);
      padding: 10px 18px;
      border: 2px solid var(--yellow);
      border-radius: 4px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      transition: all 0.2s;
    }
    .email-btn:hover { background: var(--yellow); color: var(--black); }
    .email-btn svg { flex-shrink: 0; }
    .quote-link {
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.03em;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 4px;
      transition: all 0.2s;
    }
    .quote-link:hover { background: rgba(255,255,255,0.1); border-color: var(--yellow); color: var(--yellow); }

    /* ── Hero ────────────────────────────────────── */
    #hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 620px;
    }
    .hero-text {
      background: var(--yellow-light);
      display: flex;
      align-items: center;
      padding: 80px 60px;
    }
    .hero-content {
      width: 100%;
    }
    .hero-image {
      overflow: hidden;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .hero-logo {
      display: block;
      width: 100%;
      max-width: 440px;
      height: auto;
      margin-bottom: 20px;
    }
    .hero-headline {
      font-family: 'Anton', 'Montserrat', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      font-size: clamp(1.6rem, 4.6vw, 3.2rem);
      line-height: 1.02;
      color: var(--black);
      margin-bottom: 18px;
    }
    .hero-headline-year {
      display: inline-block;
      color: var(--yellow-dark);
      font-size: 0.78em;
      letter-spacing: 0.06em;
      margin-top: 4px;
    }
    .hero-sub {
      font-size: 1.25rem;
      color: var(--black);
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    /* ── Trust Bar (static, fitted) ──────────────── */
    #trust {
      background: var(--yellow);
      padding: 18px 0;
    }
    .trust-static {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      padding: 0 20px;
      max-width: 1320px;
      margin: 0 auto;
    }
    .trust-bee {
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      line-height: 1;
      flex-shrink: 0;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
    }
    .trust-bee.right { transform: scaleX(-1); }
    .trust-text {
      font-family: 'Anton', 'Montserrat', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--black);
      font-size: clamp(1rem, 2.8vw, 2rem);
      line-height: 1.1;
      margin: 0;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    @media (max-width: 520px) {
      .trust-static { gap: 10px; padding: 0 10px; }
      .trust-text { font-size: 0.78rem; letter-spacing: 0.02em; white-space: normal; }
    }

    /* ── About ───────────────────────────────────── */
    #about {
      padding: 90px 0;
      background: var(--white);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-text .services-title { margin-bottom: 22px; }
    .about-text p {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #2d2d2d;
      margin-bottom: 18px;
    }
    .about-text p:last-child { margin-bottom: 0; }
    .about-text strong { color: var(--black); font-weight: 700; }
    .about-image {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-image img {
      max-width: 100%;
      width: auto;
      height: auto;
      max-height: 460px;
      display: block;
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 32px; }
      .about-image img { max-height: 320px; }
    }

    /* ── Services ────────────────────────────────── */
    #services {
      padding: 90px 0;
      background: var(--white);
    }
    .services-header { margin-bottom: 50px; }
    .services-title {
      font-family: 'Anton', 'Montserrat', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.01em;
      font-size: clamp(2.6rem, 6vw, 4rem);
      line-height: 1.05;
    }
    .services-sub {
      font-size: 1.25rem;
      line-height: 1.6;
      max-width: 760px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }
    @media (max-width: 680px) {
      .services-grid { grid-template-columns: 1fr; }
    }
    .service-card {
      border: 1px solid #e8e8e8;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .service-img {
      height: 220px;
      background: #e0e0e0;
      overflow: hidden;
    }
    .service-body { padding: 28px; }
    .service-icon {
      width: 46px;
      height: 46px;
      background: var(--yellow-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--yellow-dark);
      margin-bottom: 14px;
    }
    .service-icon svg { width: 22px; height: 22px; }
    .service-body h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .service-question {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--yellow-dark);
      margin-bottom: 10px;
    }
    .service-body p {
      color: var(--gray);
      font-size: 0.93rem;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    .service-link {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--yellow-dark);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 10px; }

    /* Full Service List (accordion) */
    .services-all {
      margin-top: 70px;
    }
    .services-all-title {
      font-family: 'Anton', 'Montserrat', sans-serif;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      color: var(--black);
      margin-bottom: 8px;
      line-height: 1.1;
    }
    .services-all-sub {
      font-size: 0.95rem;
      color: var(--gray);
      margin-bottom: 28px;
    }
    .service-accordion {
      border-top: 2px solid var(--yellow);
    }
    .service-item {
      border-bottom: 1px solid #e5e5e5;
    }
    .service-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 4px;
      cursor: pointer;
      list-style: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      color: var(--black);
      transition: color 0.2s ease;
    }
    .service-summary::-webkit-details-marker { display: none; }
    .service-summary:hover { color: var(--yellow-dark); }
    .service-name { letter-spacing: 0.01em; flex: 1; }
    .service-toggle {
      position: relative;
      width: 32px;
      height: 32px;
      border: 2px solid var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
      transition: background 0.25s ease, transform 0.3s ease, border-color 0.25s ease;
    }
    .service-toggle::before,
    .service-toggle::after {
      content: '';
      position: absolute;
      background: var(--yellow-dark);
      top: 50%;
      left: 50%;
      transition: background 0.25s ease;
    }
    .service-toggle::before {
      width: 13px;
      height: 2.5px;
      transform: translate(-50%, -50%);
    }
    .service-toggle::after {
      width: 2.5px;
      height: 13px;
      transform: translate(-50%, -50%);
    }
    .service-item[open] .service-toggle {
      background: var(--yellow);
      transform: rotate(45deg);
    }
    .service-item[open] .service-toggle::before,
    .service-item[open] .service-toggle::after {
      background: var(--black);
    }
    .service-content {
      padding: 0 4px 22px;
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--gray);
      max-width: 780px;
      animation: serviceFadeIn 0.3s ease;
    }
    @keyframes serviceFadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── FAQ ─────────────────────────────────────── */
    #faq {
      padding: 90px 0;
      background: var(--light-gray);
    }
    .faq-header { margin-bottom: 40px; }
    .faq-accordion {
      border-top: 2px solid var(--yellow);
      max-width: 860px;
    }
    .faq-item {
      border-bottom: 1px solid #e5e5e5;
      background: var(--white);
    }
    .faq-summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 20px;
      cursor: pointer;
      list-style: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: clamp(1rem, 1.6vw, 1.1rem);
      color: var(--black);
      transition: color 0.2s ease;
    }
    .faq-summary::-webkit-details-marker { display: none; }
    .faq-summary:hover { color: var(--yellow-dark); }
    .faq-question { letter-spacing: 0.01em; flex: 1; }
    .faq-toggle {
      position: relative;
      width: 32px;
      height: 32px;
      border: 2px solid var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
      transition: background 0.25s ease, transform 0.3s ease, border-color 0.25s ease;
    }
    .faq-toggle::before,
    .faq-toggle::after {
      content: '';
      position: absolute;
      background: var(--yellow-dark);
      top: 50%;
      left: 50%;
      transition: background 0.25s ease;
    }
    .faq-toggle::before {
      width: 13px;
      height: 2.5px;
      transform: translate(-50%, -50%);
    }
    .faq-toggle::after {
      width: 2.5px;
      height: 13px;
      transform: translate(-50%, -50%);
    }
    .faq-item[open] .faq-toggle {
      background: var(--yellow);
      transform: rotate(45deg);
    }
    .faq-item[open] .faq-toggle::before,
    .faq-item[open] .faq-toggle::after {
      background: var(--black);
    }
    .faq-content {
      padding: 0 20px 24px;
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--gray);
      max-width: 780px;
      animation: serviceFadeIn 0.3s ease;
    }

    /* ── Why 3-B'z ───────────────────────────────── */
    #why {
      padding: 90px 0;
      background: var(--yellow-light);
    }
    #why .ref-card {
      background: var(--yellow);
      border: 1px solid var(--yellow-dark);
      border-left: 4px solid var(--yellow-dark);
    }
    #why .ref-card h4 { color: var(--black); }
    #why .ref-card span { color: var(--black); opacity: 0.78; }
    #why .ref-group-title {
      color: var(--black);
      border-bottom-color: var(--yellow-dark);
    }
    .why-header { margin-bottom: 44px; }
    .why-mission {
      font-family: 'Lato', sans-serif;
      font-style: italic;
      font-weight: 700;
      font-size: clamp(1.05rem, 1.7vw, 1.3rem);
      color: var(--black);
      margin: 14px 0 22px;
      padding: 4px 0 4px 18px;
      border-left: 4px solid var(--yellow-dark);
      max-width: 720px;
      line-height: 1.55;
    }
    .why-main { width: 100%; }

    /* Bottom row: smaller ref groups on left, stamped badges on right */
    .ref-bottom {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 48px;
      align-items: start;
      margin-top: 8px;
    }
    .ref-bottom-groups { min-width: 0; }

    /* Badge grid (lower-right) */
    .why-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      width: 100%;
      max-width: 360px;
      align-self: end;
      justify-self: end;
      margin-left: auto;
    }
    .why-badge {
      width: 100%;
      height: 120px;
      object-fit: contain;
      background: var(--white);
      border: 2px solid var(--yellow);
      border-radius: 10px;
      padding: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .why-badge:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.14);
    }

    @media (max-width: 900px) {
      .ref-bottom { grid-template-columns: 1fr; gap: 36px; }
      .why-badges {
        max-width: 100%;
        justify-self: stretch;
      }
    }

    /* ── Reference Groups (used in Why section) ──── */
    .ref-group { margin-bottom: 44px; }
    .ref-group-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--yellow);
      display: inline-block;
    }
    .ref-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
    }
    .ref-card {
      padding: 18px 20px;
      border: 1px solid #eee;
      border-radius: 6px;
      border-left: 4px solid var(--yellow);
      background: var(--yellow-light);
    }
    .ref-card h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .ref-card span {
      font-size: 0.82rem;
      color: var(--gray);
    }

    /* ── Our Work Gallery (lightbox) ─────────────── */
    #gallery {
      padding: 90px 0;
      background: var(--white);
    }
    .gallery-header { margin-bottom: 36px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 14px;
    }
    .gallery-thumb {
      border: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
      background: #f0f0f0;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4 / 3;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      font: inherit;
    }
    .gallery-thumb:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    }
    .gallery-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease, opacity 0.2s ease;
    }
    .gallery-thumb:hover img {
      transform: scale(1.05);
      opacity: 0.9;
    }
    .gallery-thumb::after {
      content: '';
      position: absolute;
      bottom: 10px;
      right: 10px;
      width: 34px;
      height: 34px;
      background: rgba(0,0,0,0.65) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/><line x1='20' y1='20' x2='16.5' y2='16.5'/></svg>") center/18px no-repeat;
      border-radius: 50%;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .gallery-thumb:hover::after {
      opacity: 1;
      transform: scale(1);
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.93);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 60px 20px 80px;
      animation: lbFade 0.2s ease;
    }
    .lightbox[hidden] { display: none; }
    @keyframes lbFade {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .lightbox-figure {
      max-width: 100%;
      max-height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .lightbox-img {
      max-width: 100%;
      max-height: calc(100vh - 180px);
      height: auto;
      width: auto;
      object-fit: contain;
      border-radius: 6px;
      box-shadow: 0 16px 50px rgba(0,0,0,0.7);
    }
    .lightbox-caption {
      color: rgba(255,255,255,0.9);
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.92rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-align: center;
      max-width: 720px;
      min-height: 1.2em;
    }
    .lightbox-counter {
      position: absolute;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.55);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
    }
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
      position: absolute;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.22);
      color: #fff;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: Arial, sans-serif;
      line-height: 1;
    }
    .lightbox-close:hover,
    .lightbox-prev:hover,
    .lightbox-next:hover {
      background: rgba(255,255,255,0.18);
      border-color: var(--yellow);
    }
    .lightbox-prev:active,
    .lightbox-next:active { transform: translateY(-50%) scale(0.95); }
    .lightbox-close {
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.6rem;
    }
    .lightbox-prev, .lightbox-next {
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.4rem;
    }
    .lightbox-prev { left: 22px; }
    .lightbox-next { right: 22px; }
    @media (max-width: 600px) {
      .lightbox { padding: 50px 8px 70px; }
      .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.05rem; }
      .lightbox-prev { left: 6px; }
      .lightbox-next { right: 6px; }
      .lightbox-close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 1.3rem; }
      .lightbox-counter { top: 16px; font-size: 0.7rem; }
    }

    /* ── Yelp Reviews ────────────────────────────── */
    #reviews {
      padding: 90px 0;
      background: var(--light-gray);
    }
    .reviews-header { margin-bottom: 28px; }
    .reviews-source {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .yelp-mark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #D32323;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      letter-spacing: -0.02em;
      padding: 8px 14px;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(211,35,35,0.25);
    }
    .yelp-mark::before {
      content: '★';
      font-size: 1rem;
    }
    .reviews-source-stars {
      color: #D32323;
      font-size: 1.3rem;
      letter-spacing: 3px;
    }
    .reviews-source-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-bottom: 36px;
      align-items: start;
    }
    .review-card {
      background: var(--white);
      border-radius: 10px;
      padding: 26px 28px;
      border: 1px solid #e8e8e8;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .review-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(0,0,0,0.1);
    }
    .review-stars {
      color: #D32323;
      font-size: 1.15rem;
      letter-spacing: 2px;
      margin-bottom: 14px;
      line-height: 1;
    }
    .review-body {
      color: #2d2d2d;
      font-size: 0.95rem;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 20px;
    }
    .review-meta {
      border-top: 1px solid #eee;
      padding-top: 14px;
    }
    .reviewer-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      color: var(--black);
    }
    .reviewer-name a {
      color: inherit;
      transition: color 0.2s;
    }
    .reviewer-name a:hover { color: #D32323; }
    .reviewer-detail {
      font-size: 0.82rem;
      color: var(--gray);
      margin-top: 3px;
    }
    .review-badge {
      display: inline-block;
      margin-left: 10px;
      padding: 2px 8px;
      background: #D32323;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.65rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 3px;
      vertical-align: middle;
    }
    .reviews-cta {
      text-align: center;
    }
    .yelp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #D32323;
      color: #fff;
      padding: 14px 26px;
      border-radius: 6px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 6px 18px rgba(211,35,35,0.25);
    }
    .yelp-btn:hover {
      background: #AF0606;
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(211,35,35,0.35);
    }


    /* ── Quote Form ──────────────────────────────── */
    #quote {
      padding: 90px 0;
      background: var(--black);
    }
    .quote-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .quote-info .section-title { color: var(--white); }
    .quote-info .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 28px; }

    /* Hero Call CTA */
    .call-cta {
      display: block;
      background: var(--yellow);
      color: var(--black);
      padding: 24px 28px;
      border-radius: 12px;
      text-align: center;
      margin-bottom: 18px;
      box-shadow: 0 10px 32px rgba(245,184,0,0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }
    .call-cta:hover {
      transform: translateY(-2px);
      background: var(--yellow-dark);
      box-shadow: 0 14px 40px rgba(245,184,0,0.4);
    }
    .call-cta-top {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .call-cta-icon { width: 20px; height: 20px; }
    .call-cta-number {
      font-family: 'Anton', 'Montserrat', sans-serif;
      font-weight: 400;
      font-size: clamp(2.4rem, 5.4vw, 3.4rem);
      line-height: 1;
      letter-spacing: 0.015em;
      margin-bottom: 8px;
    }
    .call-cta-trust {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.72;
    }

    /* Supporting contact row */
    .quote-support {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 26px;
      padding: 18px 4px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .quote-support-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.86rem;
      color: rgba(255,255,255,0.7);
    }
    .qsi-icon { width: 16px; height: 16px; opacity: 0.85; flex-shrink: 0; }
    .quote-support-item a {
      color: rgba(255,255,255,0.92);
      transition: color 0.2s;
    }
    .quote-support-item a:hover { color: var(--yellow); }
    .form-card {
      background: var(--white);
      border-radius: 10px;
      padding: 36px;
    }
    .form-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.2rem;
      font-weight: 800;
      margin-bottom: 24px;
    }
    .form-row { margin-bottom: 16px; }
    .form-row label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 6px;
    }
    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid #ddd;
      border-radius: 4px;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.93rem;
      color: var(--black);
      background: var(--white);
      transition: border-color 0.2s;
      outline: none;
    }
    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus { border-color: var(--yellow); }
    .form-row textarea { resize: vertical; min-height: 100px; }
    .form-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-submit { width: 100%; padding: 16px; font-size: 1rem; }
    .form-disclaimer {
      text-align: center;
      font-size: 0.8rem;
      color: #888;
      margin-top: 12px;
    }
    .form-disclaimer a { color: var(--yellow-dark); }
    @media (max-width: 680px) {
      .call-cta { padding: 20px 18px; }
      .quote-support { gap: 10px 18px; }
    }

    /* ── Footer ──────────────────────────────────── */
    #footer {
      background: #111;
      border-top: 3px solid var(--yellow);
      padding: 48px 0 28px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .logo-text strong { font-size: 1.2rem; }
    .footer-brand .tagline {
      font-style: italic;
      color: var(--yellow);
      font-size: 0.88rem;
      margin: 8px 0 16px;
    }
    .footer-brand p {
      font-size: 0.85rem;
      color: #999;
      line-height: 1.7;
    }
    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li {
      font-size: 0.87rem;
      color: #999;
      margin-bottom: 8px;
    }
    .footer-col ul li a { color: #999; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--yellow); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
    }
    .footer-contact-item > svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 3px;
      color: var(--yellow);
    }
    .footer-contact-item a, .footer-contact-item > span {
      font-size: 0.87rem;
      color: #999;
      line-height: 1.5;
    }
    .footer-contact-item a { transition: color 0.2s; }
    .footer-contact-item a:hover { color: var(--yellow); }
    .footer-cta { margin-top: 16px; }
    .btn-sm { font-size: 0.85rem; padding: 10px 18px; }
    .btn-sm svg { width: 14px; height: 14px; }
    .footer-bottom {
      border-top: 1px solid #222;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-bottom p { font-size: 0.8rem; color: #555; }
    .footer-bottom a { color: #555; }
    .footer-bottom a:hover { color: var(--yellow); }

    /* ── Floating Call Button (mobile) ───────────── */
    .float-call {
      display: none;
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      background: var(--yellow);
      color: var(--black);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(0,0,0,0.3);
      animation: pulse 2s infinite;
    }
    .float-call svg { width: 26px; height: 26px; }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(245,184,0,0.4); }
      50% { box-shadow: 0 6px 32px rgba(245,184,0,0.7); }
    }

    /* ── Responsive ──────────────────────────────── */
    @media (max-width: 900px) {
      #hero { grid-template-columns: 1fr; }
      .hero-text { padding: 60px 24px; }
      .hero-image { height: 320px; }
      .quote-wrapper { grid-template-columns: 1fr; gap: 40px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }
    @media (max-width: 680px) {
      .header-inner { height: 62px; gap: 8px; }
      .container { padding: 0 18px; }
      .logo { flex-shrink: 1; min-width: 0; }
      .logo-text { min-width: 0; }
      .logo-text strong {
        font-size: 0.88rem;
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
      }
      .logo-text span { display: none; }
      .quote-link { display: none; }
      .email-btn { padding: 8px 10px; font-size: 0; gap: 0; flex-shrink: 0; }
      .email-btn svg { width: 18px; height: 18px; }
      .call-btn { font-size: 0.82rem; padding: 8px 12px; flex-shrink: 0; }
      .call-btn svg { width: 14px; height: 14px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .form-2col { grid-template-columns: 1fr; }
      .float-call { display: flex; }
    }
    @media (max-width: 400px) {
      .logo-text strong { font-size: 0.78rem; }
      .call-btn { font-size: 0; padding: 8px; gap: 0; }
      .call-btn svg { width: 18px; height: 18px; }
    }

/* ── Sub-page intro / breadcrumb (About, Why, Testimonials pages) ── */
.page-intro {
  padding: 60px 0 20px;
  background: var(--white);
}
.breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--yellow-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.section-more-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: 6px;
}
.section-more-link:hover { gap: 10px; }

/* ── City / Service-Area Page Bodies ──────────── */
.city-lede {
  max-width: 780px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--gray);
  margin-top: 2px;
}
.city-copy p {
  font-size: 1.02rem;
  line-height: 1.78;
  color: #2d2d2d;
  margin-bottom: 17px;
}
.city-copy strong { color: var(--black); font-weight: 700; }
.city-copy a { color: var(--yellow-dark); font-weight: 700; }
.city-copy a:hover { text-decoration: underline; }
.city-quote {
  border-left: 4px solid var(--yellow);
  background: var(--light-gray);
  padding: 22px 26px;
  margin: 26px 0 30px;
}
.city-quote p {
  font-style: italic;
  margin-bottom: 14px;
}
.city-quote p:last-of-type { margin-bottom: 14px; }
.city-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--black);
}
.city-quote cite span {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.city-copy .faq-accordion { margin: 8px 0 4px; }
.city-copy .faq-content p { font-size: 0.95rem; color: var(--gray); }
.city-copy .faq-content p:last-child { margin-bottom: 0; }
.city-next {
  border-top: 2px solid var(--yellow);
  margin-top: 48px;
  padding-top: 22px;
  font-size: 0.95rem;
  color: var(--gray);
}

/* ── Deep-link targets: keep anchored service items clear of the sticky header ── */
.service-card[id],
.service-item[id] { scroll-margin-top: 110px; }
