/*
  RoyalCare Signature, Inc. — Main Stylesheet
  ------------------------------------------------------------
  Update brand colors in :root.
  Replace section photos in assets/images/sections/ while keeping
  the same filenames to avoid changing this file.
*/

:root {
      --black: #070707;
      --black-soft: #111111;
      --charcoal: #1a1a1a;
      --gold: #b8942e;
      --gold-bright: #d7b957;
      --gold-dark: #82670f;
      --cream: #f6f2e8;
      --white: #ffffff;
      --gray: #b9b9b9;
      --text: #252525;
      --line: rgba(255,255,255,.12);
      --shadow: 0 20px 55px rgba(0,0,0,.22);
      --radius: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background: var(--white);
      font-family: Inter, Arial, Helvetica, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, select, textarea { font: inherit; }
    section { scroll-margin-top: 92px; }

    .container {
      width: min(calc(100% - 36px), var(--max));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 14px;
      color: var(--gold);
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: currentColor;
    }

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { line-height: 1.08; }
    h2 {
      margin-bottom: 18px;
      color: var(--black);
      font-size: clamp(2.05rem, 5vw, 4rem);
      letter-spacing: -.04em;
    }
    .lead {
      max-width: 740px;
      color: #555;
      font-size: clamp(1rem, 1.7vw, 1.16rem);
    }

    .topbar {
      background: #000;
      color: #fff;
      font-size: .9rem;
    }
    .topbar-inner {
      min-height: 38px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }
    .topbar a { text-decoration: none; font-weight: 800; }
    .topbar a:hover { color: var(--gold-bright); }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid rgba(0,0,0,.08);
      backdrop-filter: blur(14px);
    }
    .nav-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      min-width: 250px;
    }
    .brand img { width: 58px; height: 58px; object-fit: contain; }
    .brand-name { display: grid; line-height: 1; }
    .brand-name strong {
      color: var(--black);
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.52rem;
      letter-spacing: -.03em;
    }
    .brand-name span {
      margin-top: 5px;
      color: var(--gold-dark);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .nav-links > a {
      color: #222;
      font-size: .92rem;
      font-weight: 800;
      text-decoration: none;
    }
    .nav-links > a:hover { color: var(--gold-dark); }
    .nav-cta {
      padding: 11px 16px;
      border-radius: 999px;
      background: var(--black);
      color: #fff !important;
    }
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 0;
      border-radius: 12px;
      background: var(--black);
      color: #fff;
      cursor: pointer;
    }

    .hero {
      min-height: 680px;
      display: grid;
      align-items: center;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.72) 47%, rgba(0,0,0,.24) 78%, rgba(0,0,0,.15) 100%),
        url('../images/sections/hero-property-care.webp') center 36% / cover no-repeat;
    }
    .hero-content {
      max-width: 770px;
      padding: 110px 0 104px;
    }
    .hero .eyebrow { color: var(--gold-bright); }
    .hero h1 {
      margin-bottom: 22px;
      font-size: clamp(3rem, 7.7vw, 6.7rem);
      letter-spacing: -.055em;
      text-transform: uppercase;
    }
    .hero h1 span { display: block; color: var(--gold-bright); }
    .hero p {
      max-width: 690px;
      margin-bottom: 30px;
      color: rgba(255,255,255,.86);
      font-size: clamp(1.03rem, 2vw, 1.28rem);
    }
    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .btn {
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 22px;
      border: 2px solid transparent;
      border-radius: 9px;
      font-weight: 900;
      text-decoration: none;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
    }
    .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }
    .btn-gold { background: var(--gold); color: #fff; }
    .btn-gold:hover { background: var(--gold-bright); color: #111; }
    .btn-light { background: #fff; color: #111; }
    .btn-outline { border-color: rgba(255,255,255,.8); color: #fff; }
    .btn-outline:hover { background: #fff; color: #111; }

    .trust-strip {
      position: relative;
      z-index: 3;
      margin-top: -42px;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      border-radius: 16px;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .trust-item {
      min-height: 110px;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px;
      border-right: 1px solid #e7e7e7;
    }
    .trust-item:last-child { border-right: 0; }
    .trust-icon {
      flex: 0 0 46px;
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: #111;
      color: var(--gold-bright);
      font-size: 1.25rem;
    }
    .trust-item strong { display: block; line-height: 1.2; }
    .trust-item span { color: #666; font-size: .84rem; }

    .section { padding: 100px 0; }
    .section-dark { background: var(--black); color: #fff; }
    .section-dark h2 { color: #fff; }
    .section-dark .lead { color: #bdbdbd; }

    .about-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      align-items: center;
      gap: 70px;
    }
    .about-photo {
      position: relative;
      min-height: 570px;
      border-radius: 22px;
      background: url('../images/sections/handyman-service.webp') center 34% / cover no-repeat;
      box-shadow: var(--shadow);
    }
    .about-photo::after {
      content: "One call. One company. Complete property care.";
      position: absolute;
      right: -24px;
      bottom: 28px;
      width: min(310px, 80%);
      padding: 24px;
      border-radius: 14px;
      background: var(--gold);
      color: #fff;
      font-size: 1.18rem;
      font-weight: 900;
      line-height: 1.3;
      box-shadow: 0 14px 32px rgba(0,0,0,.22);
    }
    .check-list {
      display: grid;
      gap: 13px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }
    .check-list li { display: flex; gap: 12px; align-items: flex-start; }
    .check-list li::before {
      content: "✓";
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      margin-top: 1px;
      border-radius: 50%;
      background: var(--gold);
      color: #fff;
      font-size: .8rem;
      font-weight: 900;
    }

    .services-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 30px;
      margin-bottom: 40px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      min-height: 310px;
      display: flex;
      flex-direction: column;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, #171717, #0e0e0e);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(215,185,87,.7);
      box-shadow: 0 18px 45px rgba(0,0,0,.28);
    }
    .service-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      margin-bottom: 32px;
      border-radius: 15px;
      background: var(--gold);
      color: #fff;
      font-size: 1.55rem;
    }
    .service-card h3 { margin-bottom: 12px; color: #fff; font-size: 1.35rem; }
    .service-card p { margin-bottom: 0; color: #bcbcbc; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 38px;
    }
    .why-card {
      padding: 26px 23px;
      border: 1px solid #e4e4e4;
      border-radius: 15px;
      background: #fff;
      box-shadow: 0 10px 35px rgba(0,0,0,.07);
    }
    .why-card .num {
      display: block;
      margin-bottom: 25px;
      color: var(--gold);
      font-size: 2.3rem;
      font-weight: 900;
      line-height: 1;
    }
    .why-card h3 { margin-bottom: 11px; font-size: 1.2rem; }
    .why-card p { margin: 0; color: #656565; font-size: .95rem; }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 20px;
      min-height: 560px;
      margin-top: 40px;
    }
    .gallery-main,
    .gallery-side {
      overflow: hidden;
      border-radius: 20px;
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
    }
    .gallery-main { background-image: url('../images/sections/carpet-cleaning.webp'); background-position: center 30%; }
    .gallery-side { background-image: url('../images/sections/handyman-service-1.webp'); background-position: center 36%; }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 42px;
    }
    .process-card {
      position: relative;
      padding: 34px;
      border-radius: 18px;
      background: #fff;
      color: #111;
    }
    .process-card b {
      display: block;
      margin-bottom: 22px;
      color: var(--gold);
      font-size: 3.3rem;
      line-height: 1;
    }
    .process-card h3 { font-size: 1.35rem; }
    .process-card p { margin-bottom: 0; color: #666; }

    .areas {
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }
    .areas::before {
      content: "LOS ANGELES";
      position: absolute;
      right: -20px;
      bottom: -25px;
      color: rgba(184,148,46,.08);
      font-size: clamp(4rem, 12vw, 10rem);
      font-weight: 1000;
      letter-spacing: -.07em;
      white-space: nowrap;
    }
    .areas-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
    .area-pills span {
      padding: 10px 14px;
      border: 1px solid rgba(0,0,0,.13);
      border-radius: 999px;
      background: #fff;
      font-weight: 800;
    }

    .faq-list {
      max-width: 900px;
      margin: 38px auto 0;
      border-top: 1px solid #ddd;
    }
    details { border-bottom: 1px solid #ddd; }
    summary {
      position: relative;
      padding: 22px 52px 22px 0;
      list-style: none;
      cursor: pointer;
      font-weight: 900;
      font-size: 1.08rem;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      position: absolute;
      right: 8px;
      top: 50%;
      translate: 0 -50%;
      color: var(--gold);
      font-size: 1.7rem;
    }
    details[open] summary::after { content: "−"; }
    details p { padding: 0 52px 22px 0; color: #606060; }

    .estimate-section {
      background:
        radial-gradient(circle at top right, rgba(215,185,87,.20), transparent 36%),
        #080808;
      color: #fff;
    }
    .estimate-grid {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 64px;
      align-items: start;
    }
    .estimate-section h2 { color: #fff; }
    .contact-links { display: grid; gap: 14px; margin-top: 30px; }
    .contact-links a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 900;
      text-decoration: none;
    }
    .contact-links a:hover { color: var(--gold-bright); }
    .estimate-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,255,255,.06);
      box-shadow: 0 20px 55px rgba(0,0,0,.22);
    }
    .field { display: grid; gap: 7px; }
    .field.full { grid-column: 1 / -1; }
    .field label { color: #ddd; font-size: .83rem; font-weight: 800; }
    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 50px;
      padding: 12px 13px;
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 9px;
      outline: none;
      background: #fff;
      color: #111;
    }
    .field textarea { min-height: 120px; resize: vertical; }
    .field input:focus,
    .field select:focus,
    .field textarea:focus { border-color: var(--gold-bright); box-shadow: 0 0 0 3px rgba(215,185,87,.18); }
    .form-note { grid-column: 1 / -1; margin: 0; color: #a8a8a8; font-size: .78rem; }
    .form-submit { grid-column: 1 / -1; border: 0; cursor: pointer; }

    .site-footer {
      padding: 54px 0 90px;
      background: #000;
      color: #cfcfcf;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 50px;
    }
    .footer-brand { display: flex; gap: 15px; align-items: center; margin-bottom: 16px; }
    .footer-brand img { width: 62px; height: 62px; }
    .footer-brand strong { color: #fff; font-family: Georgia, serif; font-size: 1.55rem; }
    .footer-title { color: #fff; font-weight: 900; }
    .footer-links { display: grid; gap: 9px; }
    .footer-links a { text-decoration: none; }
    .footer-links a:hover { color: var(--gold-bright); }
    .copyright {
      margin-top: 42px;
      padding-top: 23px;
      border-top: 1px solid rgba(255,255,255,.11);
      color: #858585;
      font-size: .85rem;
    }

    .mobile-actions {
      display: none;
      position: fixed;
      z-index: 1200;
      left: 0;
      right: 0;
      bottom: 0;
      gap: 8px;
      padding: 9px;
      background: rgba(0,0,0,.95);
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .mobile-actions .btn { flex: 1; min-height: 48px; padding: 10px 8px; font-size: .78rem; }

    @media (max-width: 980px) {
      .nav-links {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 8px);
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }
      .nav-links > a { padding: 13px; border-radius: 8px; }
      .menu-toggle { display: grid; place-items: center; }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid #e7e7e7; }
      .about-grid, .estimate-grid, .areas-grid { grid-template-columns: 1fr; }
      .about-grid { gap: 42px; }
      .about-photo { min-height: 530px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { min-height: 480px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 680px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .topbar-inner { justify-content: center; min-height: 34px; }
      .topbar-location { display: none; }
      .brand { min-width: 0; }
      .brand img { width: 48px; height: 48px; }
      .brand-name strong { font-size: 1.2rem; }
      .brand-name span { font-size: .62rem; }
      .nav-wrap { min-height: 68px; }
      .hero {
        min-height: 700px;
        align-items: end;
        background:
          linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.45) 36%, rgba(0,0,0,.94) 76%, #000 100%),
          url('../images/sections/hero-property-care.webp') 64% center / cover no-repeat;
      }
      .hero-content { padding: 260px 0 88px; }
      .hero h1 { font-size: clamp(2.7rem, 14vw, 4.6rem); }
      .hero-actions .btn { width: 100%; }
      .trust-strip { margin-top: 0; }
      .trust-grid { grid-template-columns: 1fr; border-radius: 0; box-shadow: none; }
      .trust-item { min-height: 92px; border-right: 0; border-bottom: 1px solid #e7e7e7 !important; }
      .section { padding: 74px 0; }
      .about-photo { min-height: 470px; }
      .about-photo::after { right: 14px; bottom: 14px; }
      .services-head { align-items: start; flex-direction: column; }
      .services-grid, .why-grid, .process-grid, .gallery-grid { grid-template-columns: 1fr; }
      .service-card { min-height: auto; }
      .gallery-grid { min-height: 920px; grid-template-rows: 1fr 1fr; }
      .estimate-form { grid-template-columns: 1fr; padding: 20px; }
      .field.full, .form-note, .form-submit { grid-column: auto; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      .mobile-actions { display: flex; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; }
    }


/* ============================================================
   SERVICE-AREA & LOCATION PAGES
   These styles support service-areas/index.html and each city page.
   ============================================================ */
.inline-link {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.inline-link:hover { color: var(--black); }

.subpage-hero {
  padding: 92px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(215,185,87,.22), transparent 28%),
    linear-gradient(135deg, #050505 0%, #151515 58%, #050505 100%);
}
.subpage-hero h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.subpage-hero h1 span { color: var(--gold-bright); }
.subpage-hero .lead { color: rgba(255,255,255,.82); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #d5d5d5;
  font-size: .86rem;
}
.breadcrumb a { color: #fff; font-weight: 800; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }

.location-grid,
.local-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.location-card,
.local-service-card {
  padding: 28px;
  border: 1px solid #e3e3e3;
  border-radius: var(--radius);
  background: #fff;
  color: #111;
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
}
.location-card.featured { border-color: rgba(184,148,46,.55); }
.location-card .location-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 1000;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.location-card h2,
.location-card h3,
.local-service-card h3 { color: #111; font-size: 1.35rem; }
.location-card p,
.local-service-card p { color: #626262; }
.location-card .btn { margin-top: 8px; }

.service-area-note {
  margin-top: 34px;
  padding: 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: var(--cream);
}

.location-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 54px;
  align-items: start;
}
.location-sidebar {
  position: sticky;
  top: 112px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
}
.location-sidebar h2 { color: #fff; font-size: 1.65rem; }
.location-sidebar p { color: #cfcfcf; }
.location-sidebar .btn { width: 100%; margin-top: 10px; }

.service-list-columns {
  columns: 2 260px;
  column-gap: 34px;
  padding-left: 20px;
}
.service-list-columns li { break-inside: avoid; margin-bottom: 9px; }

.location-cta {
  padding: 38px;
  border-radius: 22px;
  background: var(--cream);
  text-align: center;
}
.location-cta h2 { font-size: clamp(2rem, 5vw, 3.7rem); }

@media (max-width: 900px) {
  .location-grid,
  .local-services-grid { grid-template-columns: 1fr 1fr; }
  .location-content { grid-template-columns: 1fr; }
  .location-sidebar { position: static; }
}

@media (max-width: 620px) {
  .subpage-hero { padding: 70px 0 58px; }
  .location-grid,
  .local-services-grid { grid-template-columns: 1fr; }
  .location-card,
  .local-service-card { padding: 22px; }
  .location-cta { padding: 28px 20px; }
}


/* ============================================================
   LOCAL MAPS, REVIEWS, AND GALLERY
   ============================================================ */
.btn-dark { background:#111; color:#fff; }
.btn-dark:hover { background:var(--gold); }
.section-soft { background:#f5f3ed; }
.center-actions { justify-content:center; }
.location-home-grid,.local-map-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:54px; align-items:center; }
.location-pointer-card { display:flex; align-items:center; gap:16px; max-width:430px; margin:28px 0 22px; padding:20px; border:1px solid #e3e3e3; border-radius:16px; box-shadow:0 12px 30px rgba(0,0,0,.08); }
.location-pointer-icon { display:grid; place-items:center; flex:0 0 52px; width:52px; height:52px; border-radius:50%; background:var(--gold); font-size:1.45rem; }
.location-pointer-card strong,.location-pointer-card span { display:block; }
.location-pointer-card span { color:#666; }
.map-frame-wrap { overflow:hidden; min-height:390px; border:1px solid rgba(0,0,0,.1); border-radius:22px; box-shadow:var(--shadow); background:#ddd; }
.map-frame-wrap iframe { width:100%; height:100%; min-height:390px; border:0; display:block; }
.service-area-map { height:520px; margin-top:30px; border-radius:22px; box-shadow:var(--shadow); z-index:1; }
.location-grid.expanded { grid-template-columns:repeat(3,minmax(0,1fr)); }
.location-card-top { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.map-pin { display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:#111; }
.location-card-actions { display:flex; align-items:center; flex-wrap:wrap; gap:14px; margin-top:18px; }
.map-text-link { color:var(--gold-dark); font-weight:900; text-decoration:none; }
.map-text-link:hover { text-decoration:underline; }
.sidebar-pin { display:grid; place-items:center; width:54px; height:54px; margin-bottom:18px; border-radius:50%; background:var(--gold); font-size:1.45rem; }
.location-sidebar .btn-light { color:#111; }
.check-list.compact { margin-bottom:32px; }
.content-subhead { margin-top:34px; }

.reviews-section { background:#faf9f5; }
.reviews-heading-row { display:flex; justify-content:space-between; align-items:end; gap:30px; }
.reviews-platform-links { display:flex; flex-wrap:wrap; gap:10px; }
.review-platform-btn { padding:11px 15px; border-radius:999px; color:#fff; font-weight:900; text-decoration:none; transition:transform .2s ease,box-shadow .2s ease; }
.review-platform-btn:hover { transform:translateY(-2px); box-shadow:0 10px 20px rgba(0,0,0,.15); }
.review-platform-btn.google { background:#1a73e8; }
.review-platform-btn.yelp { background:#d32323; }
.review-status { margin:30px 0 20px; padding:15px 18px; border-radius:12px; background:#fff; border:1px solid #e4e4e4; color:#666; }
.review-status.ready { border-left:5px solid var(--gold); }
.review-status.notice { background:var(--cream); }
.review-status a { color:var(--gold-dark); font-weight:900; }
.review-summary-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-bottom:18px; }
.review-summary-card { display:grid; grid-template-columns:auto auto 1fr auto; align-items:center; gap:14px; padding:20px; border-radius:16px; background:#111; color:#fff; }
.review-summary-card strong { font-size:2rem; }
.review-summary-card > span:last-child { color:#ccc; text-align:right; }
.review-platform { font-weight:900; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.review-card { display:flex; flex-direction:column; min-height:260px; padding:24px; border:1px solid #e3e3e3; border-radius:18px; background:#fff; box-shadow:0 12px 32px rgba(0,0,0,.07); }
.review-card-head { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; }
.review-card h3 { margin:7px 0 0; font-size:1.05rem; }
.review-card p { flex:1; margin:20px 0; color:#555; }
.review-source { display:inline-block; padding:4px 9px; border-radius:999px; color:#fff; font-size:.7rem; font-weight:900; text-transform:uppercase; }
.review-source.google { background:#1a73e8; }
.review-source.yelp { background:#d32323; }
.review-stars { color:#d39b00; letter-spacing:.04em; white-space:nowrap; }
.review-meta { display:flex; justify-content:space-between; gap:10px; font-size:.8rem; color:#777; }
.review-meta a { color:var(--gold-dark); font-weight:900; text-decoration:none; }

.gallery-controls { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.gallery-filter { padding:11px 16px; border:1px solid #d7d7d7; border-radius:999px; background:#fff; cursor:pointer; font-weight:900; }
.gallery-filter.active,.gallery-filter:hover { background:#111; color:#fff; border-color:#111; }
.project-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.project-card { overflow:hidden; border:1px solid #e3e3e3; border-radius:18px; background:#fff; box-shadow:0 14px 36px rgba(0,0,0,.08); }
.project-image-button { position:relative; width:100%; aspect-ratio:4/3; padding:0; border:0; overflow:hidden; background:#ddd; cursor:zoom-in; }
.project-image-button img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.project-image-button:hover img { transform:scale(1.035); }
.project-badge { position:absolute; left:14px; top:14px; padding:6px 10px; border-radius:999px; background:rgba(0,0,0,.78); color:#fff; font-size:.7rem; font-weight:900; }
.project-card-body { padding:22px; }
.project-card-body h2 { margin:8px 0 12px; font-size:1.45rem; letter-spacing:-.02em; }
.project-location { color:var(--gold-dark); font-size:.8rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.gallery-empty { padding:60px 24px; border:2px dashed #d8d8d8; border-radius:20px; text-align:center; }
.gallery-empty > span { font-size:3rem; }
.gallery-lightbox { width:min(1000px,92vw); max-height:90vh; padding:0; border:0; border-radius:16px; background:#000; }
.gallery-lightbox::backdrop { background:rgba(0,0,0,.82); }
.gallery-lightbox img { width:100%; max-height:86vh; object-fit:contain; }
.gallery-lightbox button { position:absolute; right:12px; top:12px; width:42px; height:42px; border:0; border-radius:50%; background:#fff; cursor:pointer; font-size:1.1rem; }
.dark-cta { background:#151515; color:#fff; }
.dark-cta h2 { color:#fff; }
.dark-cta p { color:#ccc; }

@media(max-width:980px){.location-grid.expanded,.reviews-grid,.project-gallery{grid-template-columns:repeat(2,minmax(0,1fr));}.location-home-grid,.local-map-grid{grid-template-columns:1fr}.reviews-heading-row{align-items:flex-start;flex-direction:column}.service-area-map{height:460px}}
@media(max-width:680px){.location-grid.expanded,.reviews-grid,.project-gallery,.review-summary-grid{grid-template-columns:1fr}.review-summary-card{grid-template-columns:auto auto 1fr}.review-summary-card>span:last-child{grid-column:1/-1;text-align:left}.service-area-map{height:420px}.map-frame-wrap,.map-frame-wrap iframe{min-height:330px}.reviews-platform-links{width:100%}.review-platform-btn{flex:1;text-align:center}.location-card-actions .btn{width:100%}}
