/* ==========================================================================
   location.css — Location (service-area) page stylesheet
   Las Vegas Official Bail Bonds

   PART A below is the homepage premium black + gold theme, copied verbatim
   from index.php's inline <style> blocks in the same cascade order, so a
   location page renders in exactly the homepage's design language. Re-run
   the sync whenever the homepage theme changes.
   PART B at the end holds the location-page-only rules (image-less hero with
   the quote form, checklist grid, service cards with CTAs, area chips,
   review attribution and the map/weather band).
   ========================================================================== */

/* ==========================================================================
   PART A — SHARED HOMEPAGE THEME (verbatim from index.php, 6 blocks)
   ========================================================================== */


/* ---------- homepage style block 1 of 6 ---------- */

/* Reset */
* {
  box-sizing: border-box;
}

/* Hero Section - Premium Professional Design */
.hero-section {
  padding: 100px 5%;
  background: #000000;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(20,20,20,1) 100%);
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(139,116,70,0.08) 0%, transparent 70%);
  z-index: 0;
}

/* Heading on Top */
.hero-title-h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 50px;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  z-index: 2;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 1400px;
}

/* Flex Container for Image (Left) and Content (Right) - CENTERED */
.hero-flex-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  z-index: 2;
  position: relative;
  width: 100%;
  max-width: 1400px;
}

/* Hero Image - Left Side */
.hero-image {
  flex: 0 0 auto;
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.image-container {
  position: relative;
  width: 100%;
  /*height: 600px;*/
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(139,116,70,0.2);
  margin-bottom: 30px;
  border: 1px solid rgba(139,116,70,0.2);
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139,116,70,0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.image-container img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.95) contrast(1.1);
  margin-top: -15%;
}

.image-container:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}

.quality-badge {
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.85) 100%);
  padding: 15px 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139,116,70,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
  letter-spacing: 2px;
}

.stars {
  color: #8B7446;
  font-size: 16px;
  letter-spacing: 2px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.85) 100%);
  color: #fff;
  padding: 18px 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139,116,70,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.location-icon {
  font-size: 24px;
  color: #8B7446;
}

.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

.location-subtitle {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 1px;
  color: #8B7446;
}

/* Hero Content - Right Side */
.hero-content {
  flex: 1;
  max-width: 700px;
  min-width: 320px;
  z-index: 2;
  position: relative;
}

.hero-description-box {
  background: linear-gradient(135deg, rgba(139,116,70,0.05) 0%, rgba(255,255,255,0.02) 100%);
  padding: 35px;
  border-left: 3px solid #8B7446;
  border-right: 1px solid rgba(139,116,70,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  position: relative;
}

.hero-description-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.3), transparent);
}

.hero-description {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.hero-description:last-child {
  margin-bottom: 0;
}

.hero-description a {
  color: #8B7446;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  border-bottom: 1px solid rgba(139,116,70,0.3);
}

.hero-description a:hover {
  color: #A89968;
  border-bottom-color: #A89968;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
  .hero-flex-container {
    gap: 40px;
  }
  
  .hero-image {
    max-width: 400px;
  }
  
  .hero-content {
    max-width: 600px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 80px 5%;
  }
  
  .hero-flex-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .hero-image {
    max-width: 600px;
  }
  
  .image-container {
    height: 500px;
  }
  
  .hero-content {
    width: 100%;
    max-width: 100%;
  }
  
  .hero-description-box {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 5%;
    min-height: auto;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .hero-image {
    max-width: 450px;
  }
  
  .image-container {
    height: 450px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 5%;
  }
  
  .hero-description-box {
    padding: 20px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .image-container {
    height: 400px;
  }
  
  .image-overlay {
    bottom: 15px;
    right: 15px;
  }
  
  .quality-badge {
    padding: 12px 16px;
  }
  
  .location-badge {
    padding: 15px 20px;
    gap: 12px;
  }
}


/* ---------- homepage style block 2 of 6 ---------- */

/* Service Areas Section */
.service-areas-section-premium {
  padding: 100px 5%;
  background: #000000;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.service-areas-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(20,20,20,1) 100%);
  z-index: 0;
}

.service-areas-section-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(139,116,70,0.08) 0%, transparent 70%);
  z-index: 0;
}

.service-areas-section-premium .container-premium {
  position: relative;
  z-index: 2;
}

/* Service Locations Grid */
.service-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 60px;
}

/* Location Card */
.location-card-premium {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(139,116,70,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(139,116,70,0.2);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.location-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.1), transparent);
  transition: left 0.6s ease;
}

.location-card-premium:hover::before {
  left: 100%;
}

.location-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #8B7446;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.location-card-premium:hover::after {
  transform: scaleY(1);
}

.location-card-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(139,116,70,0.4);
  box-shadow: 0 12px 40px rgba(139,116,70,0.2);
  background: linear-gradient(135deg, rgba(139,116,70,0.1) 0%, rgba(255,255,255,0.04) 100%);
}

/* Location Icon */
.location-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.05) 100%);
  border: 1px solid rgba(139,116,70,0.2);
  transition: all 0.4s ease;
}

.location-card-premium:hover .location-icon-wrapper {
  background: linear-gradient(135deg, rgba(139,116,70,0.25) 0%, rgba(139,116,70,0.15) 100%);
  border-color: rgba(139,116,70,0.4);
  transform: rotate(360deg);
}

.location-pin {
  font-size: 24px;
  line-height: 1;
}

/* Location Content */
.location-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.location-name {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.location-card-premium:hover .location-name {
  color: #8B7446;
}

.location-arrow {
  font-size: 20px;
  color: #8B7446;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.location-card-premium:hover .location-arrow {
  transform: translateX(5px);
}

/* Coverage Info Box */
.coverage-info-box {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 35px;
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-left: 3px solid #8B7446;
  border-right: 1px solid rgba(139,116,70,0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.coverage-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}

.coverage-content {
  flex: 1;
}

.coverage-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}

.coverage-text {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}

.coverage-text a {
  color: #8B7446;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(139,116,70,0.3);
  transition: all 0.3s ease;
}

.coverage-text a:hover {
  color: #A89968;
  border-bottom-color: #A89968;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .service-areas-section-premium {
    padding: 80px 5%;
  }

  .service-locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .service-areas-section-premium {
    padding: 60px 5%;
  }

  .service-locations-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-card-premium {
    padding: 20px 25px;
  }

  .location-icon-wrapper {
    width: 45px;
    height: 45px;
  }

  .location-pin {
    font-size: 22px;
  }

  .location-name {
    font-size: 15px;
  }

  .coverage-info-box {
    flex-direction: column;
    padding: 25px;
    gap: 15px;
  }

  .coverage-icon {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .service-areas-section-premium {
    padding: 50px 5%;
  }

  .location-card-premium {
    padding: 18px 20px;
    gap: 15px;
  }

  .location-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .location-pin {
    font-size: 20px;
  }

  .location-name {
    font-size: 14px;
  }

  .location-arrow {
    font-size: 18px;
  }

  .coverage-info-box {
    padding: 20px;
  }

  .coverage-title {
    font-size: 16px;
  }

  .coverage-text {
    font-size: 14px;
  }
}


/* ---------- homepage style block 3 of 6 ---------- */

/* Trust Badge Section */
.trust-section-premium {
  padding: 100px 5%;
  background: #000000;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}

.trust-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(20,20,20,1) 100%);
  z-index: 0;
}

.trust-section-premium .container-premium {
  position: relative;
  z-index: 2;
}

/* Trust Badges Wrapper - Forces Single Row */
.trust-badges-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  align-items: stretch;
  justify-content: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badge-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, rgba(139,116,70,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(139,116,70,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.trust-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.1), transparent);
  transition: left 0.6s ease;
}

.trust-badge-card:hover::before {
  left: 100%;
}

.trust-badge-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139,116,70,0.4);
  box-shadow: 0 12px 40px rgba(139,116,70,0.25);
  background: linear-gradient(135deg, rgba(139,116,70,0.1) 0%, rgba(255,255,255,0.04) 100%);
}

.trust-badge-img {
  width: 100%;
  height: auto;
  max-width: 140px;
  max-height: 110px;
  object-fit: contain;
  filter: brightness(0.95) contrast(1.05);
  transition: all 0.4s ease;
}

.trust-badge-card:hover .trust-badge-img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.1);
}

/* Hashtags Container */
.hashtags-container {
  text-align: center;
  margin-top: 50px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(139,116,70,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border-top: 1px solid rgba(139,116,70,0.2);
  border-bottom: 1px solid rgba(139,116,70,0.2);
  backdrop-filter: blur(10px);
}

.hashtags-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 1400px) {
  .trust-badges-wrapper {
    gap: 20px;
  }
  
  .trust-badge-card {
    padding: 22px 18px;
    min-height: 145px;
  }
  
  .trust-badge-img {
    max-width: 120px;
    max-height: 95px;
  }
}

@media (max-width: 1200px) {
  .trust-section-premium {
    padding: 80px 5%;
  }
  
  .trust-badges-wrapper {
    gap: 18px;
  }
  
  .trust-badge-card {
    padding: 20px 15px;
    min-height: 135px;
  }
  
  .trust-badge-img {
    max-width: 110px;
    max-height: 90px;
  }
}

@media (max-width: 992px) {
  .trust-badges-wrapper {
    flex-wrap: wrap;
  }
  
  .trust-badge-card {
    flex: 0 0 calc(33.333% - 16px);
    min-height: 140px;
  }
}

@media (max-width: 768px) {
  .trust-section-premium {
    padding: 60px 5%;
  }
  
  .trust-badges-wrapper {
    gap: 15px;
  }
  
  .trust-badge-card {
    flex: 0 0 calc(50% - 12px);
    padding: 18px;
    min-height: 130px;
  }
  
  .trust-badge-img {
    max-width: 100px;
    max-height: 80px;
  }
  
  .hashtags-container {
    padding: 25px 30px;
  }
  
  .hashtags-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .trust-section-premium {
    padding: 50px 5%;
  }
  
  .trust-badges-wrapper {
    gap: 12px;
  }
  
  .trust-badge-card {
    flex: 0 0 100%;
    padding: 20px;
    min-height: 120px;
  }
  
  .trust-badge-img {
    max-width: 90px;
    max-height: 75px;
  }
  
  .hashtags-container {
    padding: 20px;
  }
  
  .hashtags-text {
    font-size: 12px;
  }
}


/* ---------- homepage style block 4 of 6 ---------- */

/* Premium Global Styles */
.container-premium {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Divider */
.section-divider {
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(139,116,70,0.05) 50%, transparent 100%);
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.3), transparent);
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #8B7446;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139,116,70,0.4);
}

.section-header-premium {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-premium {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
}

.accent-text {
  color: #8B7446;
}

.title-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8B7446, transparent);
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(139,116,70,0.3);
}

/* Content Sections */
.content-section {
  padding: 80px 0;
  position: relative;
}

.content-section-dark {
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 50%, #000000 100%);
}

.content-section-light {
  background: linear-gradient(180deg, #0A0A0A 0%, #050505 50%, #0A0A0A 100%);
}

.content-text-premium {
  max-width: 900px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.content-text-premium p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  font-weight: 300;
}

/* Content Wrappers */
.content-wrapper-premium {
  max-width: 1000px;
  margin: 0 auto;
}

.content-card-large {
  background: linear-gradient(135deg, rgba(139,116,70,0.05) 0%, rgba(255,255,255,0.02) 100%);
  padding: 50px;
  border-left: 3px solid #8B7446;
  border-right: 1px solid rgba(139,116,70,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  position: relative;
}

.content-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.4), transparent);
}

.content-paragraph {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 25px;
  font-weight: 300;
}

.content-paragraph:last-child {
  margin-bottom: 0;
}

/* Technical Details Grid */
.technical-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.detail-card {
  background: linear-gradient(135deg, rgba(139,116,70,0.03) 0%, rgba(255,255,255,0.01) 100%);
  padding: 45px 35px;
  border: 1px solid rgba(139,116,70,0.2);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.detail-card:hover::before {
  opacity: 1;
}

.detail-card:hover {
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(139,116,70,0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139,116,70,0.15);
}

.detail-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(139,116,70,0.1) 0%, rgba(139,116,70,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(139,116,70,0.2);
  transition: all 0.4s ease;
}

.detail-card:hover .detail-icon-wrapper {
  background: linear-gradient(135deg, rgba(139,116,70,0.2) 0%, rgba(139,116,70,0.1) 100%);
  border-color: rgba(139,116,70,0.4);
  transform: scale(1.1);
}

.detail-icon {
  font-size: 45px;
}

.detail-title {
  font-size: 14px;
  font-weight: 600;
  color: #8B7446;
  margin-bottom: 18px;
  letter-spacing: 1.3px;
}

.detail-text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 300;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-card {
  background: linear-gradient(135deg, rgba(139,116,70,0.04) 0%, rgba(0,0,0,0.3) 100%);
  padding: 40px 30px;
  border: 1px solid rgba(139,116,70,0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.process-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8B7446, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover::after {
  opacity: 1;
}

.process-card:hover {
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(0,0,0,0.4) 100%);
  border-color: rgba(139,116,70,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.process-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(139,116,70,0.15);
  line-height: 1;
}

.process-icon-wrapper {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(139,116,70,0.3);
  transition: all 0.4s ease;
}

.process-card:hover .process-icon-wrapper {
  background: linear-gradient(135deg, rgba(139,116,70,0.25) 0%, rgba(139,116,70,0.1) 100%);
  transform: scale(1.15);
  box-shadow: 0 10px 30px rgba(139,116,70,0.2);
}

.process-icon {
  font-size: 40px;
}

.process-title {
  font-size: 15px;
  font-weight: 600;
  color: #8B7446;
  margin-bottom: 15px;
  letter-spacing: 1.2px;
}

.process-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 300;
}

/* Table Styles */
.table-responsive-premium {
  overflow-x: auto;
  max-width: 1100px;
  margin: 0 auto;
}

.detention-table-premium {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(139,116,70,0.03) 0%, rgba(0,0,0,0.3) 100%);
  border: 1px solid rgba(139,116,70,0.2);
}

.detention-table-premium thead {
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.05) 100%);
}

.detention-table-premium th {
  padding: 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #8B7446;
  letter-spacing: 1.2px;
  border-bottom: 2px solid rgba(139,116,70,0.3);
  text-transform: uppercase;
}

.detention-table-premium td {
  padding: 18px 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(139,116,70,0.15);
}

.detention-table-premium tr:hover {
  background: rgba(139,116,70,0.05);
}

.detention-table-premium a {
  color: #8B7446;
  text-decoration: none;
  transition: color 0.3s ease;
}

.detention-table-premium a:hover {
  color: #A89968;
}

/* Features Grid */
.features-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-premium-item {
  background: linear-gradient(135deg, rgba(139,116,70,0.03) 0%, rgba(0,0,0,0.3) 100%);
  padding: 40px 25px;
  text-align: center;
  border: 1px solid rgba(139,116,70,0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-premium-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-premium-item:hover::before {
  opacity: 1;
}

.feature-premium-item:hover {
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(0,0,0,0.4) 100%);
  border-color: rgba(139,116,70,0.4);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.feature-premium-highlight {
  background: linear-gradient(135deg, rgba(139,116,70,0.12) 0%, rgba(139,116,70,0.05) 100%);
  border-color: rgba(139,116,70,0.4);
}

.feature-icon-bg {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(139,116,70,0.12) 0%, rgba(139,116,70,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(139,116,70,0.25);
  transition: all 0.4s ease;
}

.feature-premium-item:hover .feature-icon-bg {
  background: linear-gradient(135deg, rgba(139,116,70,0.2) 0%, rgba(139,116,70,0.1) 100%);
  border-color: rgba(139,116,70,0.5);
  transform: scale(1.1);
}

.feature-icon-bg-highlight {
  background: linear-gradient(135deg, rgba(139,116,70,0.25) 0%, rgba(139,116,70,0.15) 100%);
  border-color: rgba(139,116,70,0.4);
}

.feature-icon-premium {
  font-size: 40px;
}

.feature-title-premium {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0 0 15px 0;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.feature-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 300;
}

.feature-premium-highlight .feature-title-premium {
  color: #8B7446;
}

/* CTA Section */
.cta-section-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0,0,0,1) 0%, rgba(20,20,20,1) 50%, rgba(0,0,0,1) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section-premium::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(139,116,70,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content-premium {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title-premium {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  line-height: 1.3;
}

.cta-text-premium {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 45px;
  font-weight: 300;
}

.cta-button-premium {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 22px 55px;
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.08) 100%);
  color: #8B7446;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid #8B7446;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
}

.cta-button-premium:hover::before {
  left: 100%;
}

.cta-button-premium:hover {
  background: linear-gradient(135deg, #8B7446 0%, #A89968 100%);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139,116,70,0.4);
}

.button-arrow {
  font-size: 20px;
  transition: transform 0.4s ease;
}

.cta-button-premium:hover .button-arrow {
  transform: translateX(5px);
}

/* Services Section Premium */
.services-section-premium {
  padding: 80px 0;
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 50%, #000000 100%);
  position: relative;
}

.services-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-premium {
  background: linear-gradient(135deg, rgba(139,116,70,0.03) 0%, rgba(0,0,0,0.3) 100%);
  padding: 45px;
  border: 1px solid rgba(139,116,70,0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 25px;
}

.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8B7446, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-premium:hover::before {
  opacity: 1;
}

.service-card-premium:hover {
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(0,0,0,0.4) 100%);
  border-color: rgba(139,116,70,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.service-badge {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.05) 100%);
  border: 2px solid rgba(139,116,70,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #8B7446;
  transition: all 0.4s ease;
}

.service-card-premium:hover .service-badge {
  background: linear-gradient(135deg, rgba(139,116,70,0.3) 0%, rgba(139,116,70,0.15) 100%);
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(139,116,70,0.3);
}

.service-content {
  flex: 1;
}

.service-title-h2 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 18px 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.service-title-h2 a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-title-h2 a:hover {
  color: #8B7446;
}

.service-text-premium {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 300;
}

/* Testimonials Section */
.testimonials-section-premium {
  padding: 80px 0;
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 50%, #000000 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(139,116,70,0.04) 0%, rgba(0,0,0,0.3) 100%);
  padding: 40px;
  border: 1px solid rgba(139,116,70,0.2);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  color: rgba(139,116,70,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(139,116,70,0.4);
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(0,0,0,0.4) 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.testimonial-stars {
  color: #8B7446;
  font-size: 20px;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 25px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(139,116,70,0.2);
}

.author-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 2px solid rgba(139,116,70,0.3);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 5px 0;
  letter-spacing: -0.3px;
}

.author-link {
  font-size: 12px;
  color: #8B7446;
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-link:hover {
  color: #A89968;
}

/* Location Widget Wrapper */
.location-widget-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.map-container-premium {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(139,116,70,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.weather-container-premium {
  text-align: center;
}

/* Trust Section */
.trust-section-premium {
  padding: 80px 0;
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 50%, #000000 100%);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px auto;
}

.trust-badge-item {
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(0,0,0,0.3) 100%);
  padding: 40px 30px;
  text-align: center;
  border: 2px solid rgba(139,116,70,0.3);
  transition: all 0.4s ease;
}

.trust-badge-item:hover {
  background: linear-gradient(135deg, rgba(139,116,70,0.15) 0%, rgba(139,116,70,0.05) 100%);
  border-color: rgba(139,116,70,0.5);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139,116,70,0.2);
}

.trust-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.trust-title {
  font-size: 14px;
  font-weight: 600;
  color: #8B7446;
  margin: 0;
  letter-spacing: 1.5px;
}

.hashtags-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(139,116,70,0.04) 0%, rgba(0,0,0,0.3) 100%);
  border: 1px solid rgba(139,116,70,0.2);
  text-align: center;
}

.hashtags-text {
  font-size: 13px;
  line-height: 2;
  color: rgba(139,116,70,0.8);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* FAQ Section Premium */
.faq-section-premium {
  padding: 80px 0;
  background: linear-gradient(180deg, #0A0A0A 0%, #000000 50%, #0A0A0A 100%);
}

.faq-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-premium-item {
  background: linear-gradient(135deg, rgba(139,116,70,0.03) 0%, rgba(0,0,0,0.3) 100%);
  border: 1px solid rgba(139,116,70,0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-premium-item.active {
  border-color: rgba(139,116,70,0.4);
  background: linear-gradient(135deg, rgba(139,116,70,0.08) 0%, rgba(0,0,0,0.4) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.faq-premium-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.faq-premium-question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.2), transparent);
}

.faq-premium-item.active .faq-premium-question::after {
  background: linear-gradient(90deg, transparent, rgba(139,116,70,0.4), transparent);
}

.faq-premium-question h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0;
  line-height: 1.5;
  flex: 1;
  padding-right: 20px;
  letter-spacing: -0.3px;
}

.faq-premium-item.active .faq-premium-question h3 {
  color: #8B7446;
}

.faq-premium-toggle {
  font-size: 28px;
  color: #8B7446;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 300;
  background: rgba(139,116,70,0.1);
  border-radius: 50%;
}

.faq-premium-item.active .faq-premium-toggle {
  transform: rotate(45deg);
  background: rgba(139,116,70,0.2);
}

.faq-premium-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.faq-premium-item.active .faq-premium-answer {
  max-height: 500px;
  padding: 0 30px 30px 30px;
}

.faq-premium-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 300;
  padding-left: 20px;
  border-left: 2px solid rgba(139,116,70,0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .container-premium {
    padding: 0 25px;
  }
  
  .services-premium-grid,
  .faq-premium-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .features-premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .technical-details-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .content-section,
  .services-section-premium,
  .cta-section-premium,
  .faq-section-premium,
  .testimonials-section-premium,
  .trust-section-premium {
    padding: 60px 0;
  }
  
  .section-divider {
    height: 60px;
  }
  
  .section-header-premium {
    margin-bottom: 50px;
  }
  
  .section-title-premium {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
  }
  
  .service-card-premium,
  .feature-premium-item,
  .detail-card,
  .process-card,
  .testimonial-card {
    padding: 30px;
  }
  
  .content-card-large {
    padding: 35px;
  }
  
  .faq-premium-question {
    padding: 25px;
  }
  
  .faq-premium-item.active .faq-premium-answer {
    padding: 0 25px 25px 25px;
  }
  
  .service-card-premium {
    flex-direction: column;
    gap: 20px;
  }
  
  .service-badge {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
  
  .detention-table-premium th,
  .detention-table-premium td {
    padding: 15px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container-premium {
    padding: 0 20px;
  }
  
  .section-title-premium {
    font-size: clamp(1.5rem, 3.5vw, 1.8rem);
  }
  
  .cta-title-premium {
    font-size: clamp(1.6rem, 3.5vw, 2rem);
  }
  
  .service-card-premium,
  .detail-card,
  .process-card,
  .testimonial-card {
    padding: 25px;
  }
  
  .content-card-large {
    padding: 30px 25px;
  }
  
  .faq-premium-question h3 {
    font-size: 14px;
  }
}


/* ---------- homepage style block 5 of 6 ---------- */

:root {
  /* Metallic gold ramp (brand #8B7446 stays the anchor) */
  --lx-gold-deep: #6E5A33;
  --lx-gold: #8B7446;
  --lx-gold-mid: #A8905A;
  --lx-gold-light: #C9AE74;
  --lx-gold-champagne: #E7D3A8;

  --lx-metal: linear-gradient(135deg, #8B7446 0%, #C9AE74 34%, #E7D3A8 50%, #A8905A 68%, #8B7446 100%);
  --lx-metal-line: linear-gradient(90deg, transparent 0%, rgba(139,116,70,.35) 20%, rgba(231,211,168,.9) 50%, rgba(139,116,70,.35) 80%, transparent 100%);
  --lx-edge: linear-gradient(180deg, var(--lx-gold-champagne) 0%, var(--lx-gold) 45%, transparent 100%);

  /* Surfaces */
  --lx-surface: linear-gradient(158deg, rgba(255,255,255,.045) 0%, rgba(255,255,255,.012) 42%, rgba(0,0,0,.28) 100%);
  --lx-surface-hover: linear-gradient(158deg, rgba(201,174,116,.10) 0%, rgba(255,255,255,.03) 42%, rgba(0,0,0,.30) 100%);
  --lx-hairline: rgba(201,174,116,.20);
  --lx-hairline-strong: rgba(201,174,116,.42);

  /* Depth */
  --lx-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 30px -14px rgba(0,0,0,.9);
  --lx-shadow-hover: inset 0 1px 0 rgba(255,255,255,.07), 0 30px 60px -24px rgba(0,0,0,.95), 0 0 0 1px rgba(201,174,116,.14);
  --lx-glow: 0 0 34px -10px rgba(201,174,116,.45);

  --lx-ease: cubic-bezier(.22,.61,.36,1);
  --lx-font: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  /* Fine film grain — gives flat black a tactile, printed depth */
  --lx-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* ---------- Typography foundation ---------- */
.hero-section,
.content-section,
.services-section-premium,
.cta-section-premium,
.faq-section-premium,
.testimonials-section-premium,
.trust-section-premium,
.service-areas-section-premium {
  font-family: var(--lx-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-section h1, .hero-section h2, .hero-section h3,
.content-section h2, .content-section h3,
.services-section-premium h2, .services-section-premium h3,
.cta-section-premium h2,
.faq-section-premium h2, .faq-section-premium h3,
.testimonials-section-premium h2, .testimonials-section-premium h3, .testimonials-section-premium h4,
.trust-section-premium h2,
.service-areas-section-premium h2, .service-areas-section-premium h3, .service-areas-section-premium h4 {
  font-family: var(--lx-font);
  text-wrap: balance;
}

/* Display headings keep the site's Playfair signature; everything else is Inter.
   Typed selectors so these outrank the section-scoped rule above. */
h1.hero-headline,
h2.hero-headline,
h2.hero-box-title,
h2.section-title-premium,
h2.cta-title-premium {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

/* ---------- Grain + a warmer ground on the dark sections ---------- */
.content-section-dark,
.services-section-premium,
.testimonials-section-premium {
  background-image: var(--lx-grain), radial-gradient(120% 80% at 50% 0%, rgba(139,116,70,.055) 0%, transparent 60%), linear-gradient(180deg, #000 0%, #0A0908 50%, #000 100%);
  background-size: 160px 160px, auto, auto;
}

.content-section-light,
.faq-section-premium {
  background-image: var(--lx-grain), radial-gradient(120% 80% at 50% 100%, rgba(139,116,70,.05) 0%, transparent 60%), linear-gradient(180deg, #0A0908 0%, #030303 50%, #0A0908 100%);
  background-size: 160px 160px, auto, auto;
}

.cta-section-premium {
  background-image: var(--lx-grain), linear-gradient(135deg, #000 0%, #131110 50%, #000 100%);
  background-size: 160px 160px, auto;
}

.cta-section-premium::before {
  background: radial-gradient(ellipse at center, rgba(201,174,116,.13) 0%, transparent 70%);
}

/* These three paint an opaque ::before over the section, so the grain rides on that layer */
.hero-section::before {
  background-image:
    var(--lx-grain),
    radial-gradient(80% 55% at 50% -10%, rgba(201,174,116,.10) 0%, transparent 62%),
    radial-gradient(70% 50% at 50% 118%, rgba(0,0,0,.92) 0%, transparent 62%),
    linear-gradient(135deg, #000 0%, #0C0B09 60%, #000 100%);
  background-size: 160px 160px, auto, auto, auto;
}

.hero-section::after {
  background: radial-gradient(ellipse at center, rgba(201,174,116,.11) 0%, transparent 70%);
}

.trust-section-premium::before,
.service-areas-section-premium::before {
  background-image: var(--lx-grain), linear-gradient(135deg, #000 0%, #0F0D0B 55%, #000 100%);
  background-size: 160px 160px, auto;
}

.service-areas-section-premium::after {
  background: radial-gradient(ellipse at center, rgba(201,174,116,.10) 0%, transparent 70%);
}

/* ---------- Eyebrow: small-caps label above each title ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--lx-gold-light);
  background: linear-gradient(135deg, rgba(201,174,116,.10) 0%, rgba(201,174,116,.02) 100%);
  border: 1px solid rgba(201,174,116,.22);
  backdrop-filter: blur(6px);
  line-height: 1;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 14px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, rgba(201,174,116,.65));
}

.eyebrow::after {
  background: linear-gradient(90deg, rgba(201,174,116,.65), transparent);
}

.eyebrow-live::before,
.eyebrow-live::after { display: none; }

.eyebrow-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #4ADE80;
  animation: lxPulse 2.6s var(--lx-ease) infinite;
}

@keyframes lxPulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------- Metallic accent text ---------- */
.accent-text {
  color: var(--lx-gold-light);
  background: var(--lx-metal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Section headers ---------- */
.section-header-premium { margin-bottom: 64px; }

.section-title-premium {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.25;
  margin: 0 auto 22px;
  max-width: 940px;
}

.title-line {
  width: 120px;
  height: 1px;
  background: var(--lx-metal-line);
  box-shadow: 0 0 14px rgba(201,174,116,.35);
  position: relative;
}

.title-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--lx-gold-champagne);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(231,211,168,.6);
}

/* ---------- Section divider ----------
   It lives between sections, so without an explicit ground the white page
   background shows through and breaks the dark theme. */
.section-divider {
  background-color: #000;
  background-image: var(--lx-grain), linear-gradient(180deg, rgba(139,116,70,.06) 0%, rgba(139,116,70,.02) 50%, rgba(139,116,70,.06) 100%);
  background-size: 160px 160px, auto;
}

.section-divider::before {
  background: var(--lx-metal-line);
  opacity: .7;
}

.section-divider::after {
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: var(--lx-gold-champagne);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 18px rgba(231,211,168,.55);
}

/* ---------- Hero ---------- */
.hero-intro {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin-bottom: 56px;
  text-align: center;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.06;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,.62);
  font-weight: 400;
  letter-spacing: .4px;
  margin: 0;
}

.hero-box-title {
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 26px;
  text-transform: uppercase;
  letter-spacing: -0.1px;
  line-height: 1.3;
}

/* Left metallic edge drawn as a background layer — no border-image quirks */
.hero-description-box,
.content-card-large,
.coverage-info-box {
  border-left: none;
  border-right: none;
  background-image: var(--lx-edge), var(--lx-surface);
  background-size: 2px 100%, auto;
  background-repeat: no-repeat, no-repeat;
  background-position: left top, left top;
  box-shadow: var(--lx-shadow);
}

/* style-new.css centres the whole hero below 992px, which strands long body copy
   as ragged centred text. Keep the reading column left-aligned at every width. */
.hero-description-box {
  padding: 40px;
  text-align: left;
}

.hero-description-box::before { display: none; }
.content-card-large::before { display: none; }

.hero-description {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  font-weight: 400;
}

.hero-description a {
  color: var(--lx-gold-light);
  border-bottom-color: rgba(201,174,116,.35);
}

.hero-description a:hover { color: var(--lx-gold-champagne); }

/* Image frame with a thin metallic edge.
   style-new.css puts margin:25px and border-radius:20px on every .image-container,
   which overflows the hero column on mobile and fights the page's sharp geometry. */
.image-container {
  margin: 0 0 30px;
  border-radius: 0;
  border: 1px solid var(--lx-hairline);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.95), 0 0 0 1px rgba(201,174,116,.10);
}

.image-container::before {
  background: linear-gradient(180deg, rgba(201,174,116,.10) 0%, transparent 40%, rgba(0,0,0,.55) 100%);
}

.image-container img {
  transition: transform 1.1s var(--lx-ease), filter .6s var(--lx-ease);
}

.image-container:hover img {
  transform: scale(1.045);
  filter: brightness(1.02) contrast(1.12);
}

.quality-badge,
.location-badge {
  background: linear-gradient(135deg, rgba(10,9,8,.92) 0%, rgba(24,21,16,.86) 100%);
  border: 1px solid var(--lx-hairline);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.9);
}

.location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 15px;
  color: var(--lx-gold-light);
  background: linear-gradient(135deg, rgba(201,174,116,.16), rgba(201,174,116,.04));
  border: 1px solid rgba(201,174,116,.24);
}

.stars { color: var(--lx-gold-light); letter-spacing: 3px; }
.location-subtitle { color: var(--lx-gold-light); }

/* Hero trust chips */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .6px;
  color: rgba(255,255,255,.82);
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(201,174,116,.18);
  transition: border-color .35s var(--lx-ease), color .35s var(--lx-ease), transform .35s var(--lx-ease);
}

.hero-chip i { color: var(--lx-gold-light); font-size: 13px; }

.hero-chip:hover {
  border-color: var(--lx-hairline-strong);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero buttons */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--lx-ease), box-shadow .4s var(--lx-ease), background .4s var(--lx-ease), color .4s var(--lx-ease), border-color .4s var(--lx-ease);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--lx-ease);
}

.btn-premium:hover::before { left: 160%; }

.btn-premium-solid {
  color: #14110C;
  background: var(--lx-metal);
  border: 1px solid rgba(231,211,168,.65);
  box-shadow: 0 14px 34px -14px rgba(201,174,116,.85);
}

.btn-premium-solid:hover {
  color: #14110C;
  transform: translateY(-3px);
  box-shadow: 0 22px 46px -16px rgba(201,174,116,.95), var(--lx-glow);
}

.btn-premium-ghost {
  color: var(--lx-gold-light);
  background: transparent;
  border: 1px solid rgba(201,174,116,.35);
}

.btn-premium-ghost:hover {
  color: var(--lx-gold-champagne);
  border-color: var(--lx-hairline-strong);
  background: rgba(201,174,116,.07);
  transform: translateY(-3px);
}

.btn-premium-arrow { transition: transform .4s var(--lx-ease); }
.btn-premium:hover .btn-premium-arrow { transform: translateX(5px); }

/* ---------- Shared card polish ---------- */
.feature-premium-item,
.detail-card,
.process-card,
.service-card-premium,
.testimonial-card,
.faq-premium-item,
.location-card-premium,
.trust-badge-card {
  background: var(--lx-surface);
  border: 1px solid var(--lx-hairline);
  box-shadow: var(--lx-shadow);
  transition: transform .45s var(--lx-ease), box-shadow .45s var(--lx-ease), border-color .45s var(--lx-ease), background .45s var(--lx-ease);
}

.feature-premium-item:hover,
.detail-card:hover,
.process-card:hover,
.service-card-premium:hover,
.testimonial-card:hover,
.location-card-premium:hover,
.trust-badge-card:hover {
  background: var(--lx-surface-hover);
  border-color: var(--lx-hairline-strong);
  transform: translateY(-6px);
  box-shadow: var(--lx-shadow-hover);
}

/* Always-on hairline at the top edge, brightening on hover */
.feature-premium-item::before,
.detail-card::before,
.service-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 1px;
  background: var(--lx-metal-line);
  opacity: .35;
  transition: opacity .45s var(--lx-ease);
}

.feature-premium-item:hover::before,
.detail-card:hover::before,
.service-card-premium:hover::before { opacity: 1; }

.process-card::after {
  height: 1px;
  background: var(--lx-metal-line);
  opacity: .3;
}

.process-card:hover::after { opacity: 1; }

/* ---------- Icon system ---------- */
.feature-icon-premium,
.detail-icon,
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--lx-gold-light);
  text-shadow: 0 0 22px rgba(201,174,116,.35);
}

.feature-icon-premium { font-size: 28px; }
.detail-icon { font-size: 30px; }
.process-icon { font-size: 27px; }

.feature-icon-bg,
.detail-icon-wrapper,
.process-icon-wrapper {
  background: radial-gradient(circle at 30% 25%, rgba(201,174,116,.18) 0%, rgba(201,174,116,.04) 60%, transparent 100%);
  border: 1px solid rgba(201,174,116,.26);
  box-shadow: 0 0 0 6px rgba(201,174,116,.03);
  transition: transform .45s var(--lx-ease), border-color .45s var(--lx-ease), box-shadow .45s var(--lx-ease);
}

.feature-icon-bg { width: 68px; height: 68px; margin: 0 auto 26px; }
.detail-icon-wrapper { width: 74px; height: 74px; margin: 0 auto 26px; }
.process-icon-wrapper { width: 70px; height: 70px; margin: 0 auto 26px; }

.feature-premium-item:hover .feature-icon-bg,
.detail-card:hover .detail-icon-wrapper,
.process-card:hover .process-icon-wrapper {
  transform: scale(1.06);
  border-color: var(--lx-hairline-strong);
  box-shadow: 0 0 0 8px rgba(201,174,116,.05), var(--lx-glow);
}

/* ---------- Feature / detail / process copy ---------- */
.feature-title-premium,
.detail-title,
.process-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.55;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.detail-title,
.process-title { color: var(--lx-gold-light); }

.feature-description,
.detail-text,
.process-text {
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(255,255,255,.62);
  font-weight: 400;
}

.feature-premium-highlight {
  background: linear-gradient(158deg, rgba(201,174,116,.14) 0%, rgba(201,174,116,.04) 45%, rgba(0,0,0,.3) 100%);
  border-color: var(--lx-hairline-strong);
}

.feature-premium-highlight .feature-title-premium { color: var(--lx-gold-champagne); }

/* Outlined numerals read more editorial than solid fills */
.process-number {
  top: 16px;
  right: 22px;
  font-size: 62px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,174,116,.28);
  font-variant-numeric: tabular-nums;
  transition: -webkit-text-stroke-color .45s var(--lx-ease);
}

.process-card:hover .process-number { -webkit-text-stroke-color: rgba(231,211,168,.55); }

/* ---------- Long-form copy ---------- */
.content-text-premium p,
.content-paragraph {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.66);
  font-weight: 400;
}

.content-card-large { padding: 54px; }

.content-card-large .content-paragraph:first-child {
  font-size: 18.5px;
  color: rgba(255,255,255,.82);
}

/* ---------- Services ---------- */
.service-badge {
  width: 54px;
  height: 54px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  color: var(--lx-gold-light);
  background: linear-gradient(135deg, rgba(201,174,116,.16), rgba(201,174,116,.03));
  border: 1px solid rgba(201,174,116,.28);
}

.service-card-premium:hover .service-badge {
  transform: none;
  color: #14110C;
  background: var(--lx-metal);
  border-color: rgba(231,211,168,.6);
  box-shadow: var(--lx-glow);
}

.service-title-h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.4;
}

.service-title-h2 a {
  background-image: linear-gradient(90deg, var(--lx-gold-light), var(--lx-gold-light));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  padding-bottom: 3px;
  transition: color .35s var(--lx-ease), background-size .45s var(--lx-ease);
}

.service-card-premium:hover .service-title-h2 a {
  color: var(--lx-gold-light);
  background-size: 100% 1px;
}

.service-text-premium {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.62);
  font-weight: 400;
}

/* ---------- Testimonials ---------- */
.testimonial-card { padding: 44px 40px; }

.testimonial-card::before {
  top: 14px;
  left: 32px;
  font-size: 96px;
  color: rgba(201,174,116,.13);
  font-family: Georgia, 'Times New Roman', serif;
}

.testimonial-stars {
  font-size: 15px;
  letter-spacing: 5px;
  color: var(--lx-gold-light);
  text-shadow: 0 0 18px rgba(201,174,116,.3);
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255,255,255,.7);
  font-weight: 400;
}

.author-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--lx-gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(201,174,116,.2), rgba(201,174,116,.04));
  border: 1px solid rgba(201,174,116,.32);
}

.testimonial-author { border-top-color: var(--lx-hairline); }
.author-name { font-size: 14.5px; letter-spacing: .2px; }
.author-link { color: var(--lx-gold-light); letter-spacing: .4px; }

/* ---------- Detention table ---------- */
.detention-table-premium {
  background: var(--lx-surface);
  border: 1px solid var(--lx-hairline);
}

.detention-table-premium thead {
  background: linear-gradient(135deg, rgba(201,174,116,.14) 0%, rgba(201,174,116,.03) 100%);
}

.detention-table-premium th {
  font-size: 11.5px;
  letter-spacing: 2px;
  color: var(--lx-gold-light);
  border-bottom: 1px solid var(--lx-hairline-strong);
}

.detention-table-premium td {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(201,174,116,.10);
}

.detention-table-premium tbody tr { transition: background .3s var(--lx-ease); }
.detention-table-premium tbody tr:nth-child(even) { background: rgba(255,255,255,.014); }
.detention-table-premium tbody tr:hover { background: rgba(201,174,116,.07); }
.detention-table-premium a { color: var(--lx-gold-light); }
.detention-table-premium a:hover { color: var(--lx-gold-champagne); }

/* ---------- CTA ---------- */
.cta-title-premium {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.cta-text-premium {
  font-size: 17.5px;
  color: rgba(255,255,255,.68);
  font-weight: 400;
  margin-bottom: 40px;
}

.cta-button-premium {
  padding: 22px 52px;
  color: #14110C;
  background: var(--lx-metal);
  border: 1px solid rgba(231,211,168,.6);
  letter-spacing: 2px;
  box-shadow: 0 18px 44px -18px rgba(201,174,116,.9);
  transition: transform .45s var(--lx-ease), box-shadow .45s var(--lx-ease);
}

.cta-button-premium::before {
  left: -120%;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--lx-ease);
}

.cta-button-premium:hover::before { left: 160%; }

.cta-button-premium:hover {
  background: var(--lx-metal);
  color: #14110C;
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -20px rgba(201,174,116,1), var(--lx-glow);
}

.cta-reassurance {
  margin: 26px 0 0;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ---------- Service-area cards ---------- */
.location-card-premium { padding: 24px 28px; }

.location-icon-wrapper {
  width: 44px;
  height: 44px;
  background: radial-gradient(circle at 30% 25%, rgba(201,174,116,.18), rgba(201,174,116,.03));
  border: 1px solid rgba(201,174,116,.24);
}

.location-card-premium:hover .location-icon-wrapper {
  transform: none;
  border-color: var(--lx-hairline-strong);
  box-shadow: var(--lx-glow);
}

.location-pin {
  display: inline-flex;
  font-size: 16px;
  color: var(--lx-gold-light);
}

.location-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .8px;
  color: rgba(255,255,255,.88);
}

.location-card-premium:hover .location-name { color: var(--lx-gold-champagne); }
.location-arrow { font-size: 16px; color: var(--lx-gold-light); }
.location-card-premium::after { background: var(--lx-gold-light); }

.coverage-info-box {
  padding: 34px 38px;
  align-items: center;
}

.coverage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 21px;
  color: var(--lx-gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(201,174,116,.18), rgba(201,174,116,.03));
  border: 1px solid rgba(201,174,116,.24);
}

.coverage-title { font-size: 17px; letter-spacing: .3px; }
.coverage-text { color: rgba(255,255,255,.66); }
.coverage-text a { color: var(--lx-gold-light); }

/* ---------- Trust badges ---------- */
.trust-badge-card { padding: 28px 22px; }

.trust-badge-img {
  filter: saturate(.85) brightness(.98);
  transition: transform .5s var(--lx-ease), filter .5s var(--lx-ease);
}

.trust-badge-card:hover .trust-badge-img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(1.06);
}

.hashtags-container {
  background: linear-gradient(135deg, rgba(201,174,116,.05) 0%, rgba(255,255,255,.015) 100%);
  border-top: 1px solid var(--lx-hairline);
  border-bottom: 1px solid var(--lx-hairline);
}

.hashtags-text {
  font-size: 12.5px;
  letter-spacing: 1.2px;
  color: rgba(201,174,116,.72);
}

/* ---------- FAQ ---------- */
.faq-premium-item.active {
  border-color: var(--lx-hairline-strong);
  background: var(--lx-surface-hover);
  box-shadow: var(--lx-shadow-hover);
}

.faq-premium-question { padding: 28px 32px; }

.faq-premium-question h3 {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}

.faq-premium-item.active .faq-premium-question h3 { color: var(--lx-gold-champagne); }

.faq-premium-question::after {
  left: 32px;
  right: 32px;
  background: var(--lx-metal-line);
  opacity: .35;
}

.faq-premium-item.active .faq-premium-question::after { opacity: .9; }

.faq-premium-toggle {
  width: 34px;
  height: 34px;
  font-size: 22px;
  border-radius: 0;
  color: var(--lx-gold-light);
  background: transparent;
  border: 1px solid rgba(201,174,116,.28);
  transition: transform .35s var(--lx-ease), background .35s var(--lx-ease), border-color .35s var(--lx-ease);
}

.faq-premium-item.active .faq-premium-toggle {
  background: rgba(201,174,116,.14);
  border-color: var(--lx-hairline-strong);
}

.faq-premium-answer p {
  font-size: 15px;
  color: rgba(255,255,255,.66);
  border-left: 1px solid rgba(201,174,116,.35);
  padding-left: 22px;
}

/* ---------- Map frame ---------- */
.map-container-premium {
  border: 1px solid var(--lx-hairline);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.95);
}

.map-container-premium iframe {
  display: block;
  filter: grayscale(.25) contrast(1.05);
}

/* ---------- Focus visibility ---------- */
.hero-section a:focus-visible,
.content-section a:focus-visible,
.services-section-premium a:focus-visible,
.cta-section-premium a:focus-visible,
.testimonials-section-premium a:focus-visible,
.service-areas-section-premium a:focus-visible,
.faq-premium-question:focus-visible {
  outline: 2px solid var(--lx-gold-champagne);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-intro { margin-bottom: 42px; }
  .content-card-large { padding: 40px; }
  .testimonial-card { padding: 36px 32px; }
}

@media (max-width: 768px) {
  .section-header-premium { margin-bottom: 48px; }
  .eyebrow { font-size: 10px; letter-spacing: 2px; padding: 6px 13px; }
  .hero-headline { letter-spacing: -0.2px; }
  .hero-description-box { padding: 28px; }
  .content-card-large { padding: 32px 26px; }
  .coverage-info-box { padding: 26px; align-items: flex-start; }
  .process-number { font-size: 50px; }
  .hero-actions { gap: 12px; }
  .btn-premium { width: 100%; padding: 17px 24px; font-size: 13px; }
  .cta-button-premium { padding: 19px 30px; font-size: 13.5px; letter-spacing: 1.2px; }
  .faq-premium-question { padding: 24px; }
  .faq-premium-question::after { left: 24px; right: 24px; }
}

@media (max-width: 480px) {
  .hero-chip { font-size: 11.5px; padding: 9px 13px; }
  .testimonial-card { padding: 30px 24px; }
  .cta-reassurance { font-size: 11px; letter-spacing: 1px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ---------- homepage style block 6 of 6 ---------- */

/* ---------- Hero: kicker + H1 ---------- */
.hero-kicker {
  margin: 0 0 18px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--lx-gold-light);
}

h1.hero-headline {
  font-size: clamp(2rem, 3.9vw, 3.1rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  text-transform: none;
  letter-spacing: -0.4px;
  line-height: 1.16;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero credential checklist ---------- */
.hero-checklist {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 16px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .3px;
  color: rgba(255,255,255,.84);
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(201,174,116,.18);
  transition: border-color .35s var(--lx-ease), color .35s var(--lx-ease), transform .35s var(--lx-ease);
}

.hero-checklist li:hover {
  border-color: var(--lx-hairline-strong);
  color: #fff;
  transform: translateY(-2px);
}

.hero-checklist i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 13px;
  color: var(--lx-gold-light);
}

/* ---------- "Before You Call" checklist ---------- */
.checklist-premium {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}

.checklist-premium li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: .3px;
  color: rgba(255,255,255,.86);
  background: var(--lx-surface);
  border: 1px solid var(--lx-hairline);
  box-shadow: var(--lx-shadow);
  transition: transform .45s var(--lx-ease), border-color .45s var(--lx-ease), box-shadow .45s var(--lx-ease), background .45s var(--lx-ease);
}

.checklist-premium li:hover {
  background: var(--lx-surface-hover);
  border-color: var(--lx-hairline-strong);
  transform: translateY(-4px);
  box-shadow: var(--lx-shadow-hover);
}

.checklist-marker {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--lx-gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(201,174,116,.2), rgba(201,174,116,.03));
  border: 1px solid rgba(201,174,116,.28);
}

.content-text-after {
  margin: 46px auto 0;
}

/* ---------- Lead paragraph under a section title ---------- */
.content-lead {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.66);
  font-weight: 400;
  margin: 0;
}

.content-lead a,
.section-note a {
  color: var(--lx-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,174,116,.35);
  transition: color .3s var(--lx-ease), border-color .3s var(--lx-ease);
}

.content-lead a:hover,
.section-note a:hover {
  color: var(--lx-gold-champagne);
  border-bottom-color: var(--lx-gold-champagne);
}

/* ---------- Closing note under a grid ---------- */
.section-note {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 24px 30px;
  text-align: center;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: .6px;
  line-height: 1.7;
  color: var(--lx-gold-champagne);
  background: linear-gradient(135deg, rgba(201,174,116,.09) 0%, rgba(255,255,255,.02) 100%);
  border-top: 1px solid var(--lx-hairline);
  border-bottom: 1px solid var(--lx-hairline);
}

/* ---------- Service card link ---------- */
.service-title-premium {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.4px;
  line-height: 1.4;
  margin: 0 0 16px;
}

.service-card-premium:hover .service-title-premium { color: var(--lx-gold-champagne); }

.service-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lx-gold-light);
  border-bottom: 1px solid rgba(201,174,116,.3);
  padding-bottom: 3px;
  transition: color .35s var(--lx-ease), border-color .35s var(--lx-ease);
}

.service-link:hover {
  color: var(--lx-gold-champagne);
  border-bottom-color: var(--lx-gold-champagne);
}

.service-link-arrow {
  display: inline-block;
  margin-left: 4px;
  color: var(--lx-gold-light);
  transition: transform .35s var(--lx-ease);
}

.service-card-premium:hover .service-link-arrow { transform: translateX(4px); }

/* ---------- Process cards carry their number in the heading now ---------- */
.process-card { padding-top: 40px; }

/* ---------- CTA band ---------- */
.cta-text-final {
  margin-bottom: 38px;
  color: rgba(255,255,255,.8);
}

.cta-text-final a {
  color: var(--lx-gold-champagne);
  text-decoration: none;
  border-bottom: 1px solid rgba(231,211,168,.4);
}

.cta-text-final a:hover { border-bottom-color: var(--lx-gold-champagne); }

/* ---------- Accreditation strip (no heading) ---------- */
.trust-section-premium .trust-badges-wrapper { margin-top: 0; margin-bottom: 0; }

/* ---------- Inline links in location copy ----------
   The body copy hyperlinks the brand name once per page and the testimonial
   names point at their Google reviews; without this they render as default
   blue links on the dark ground. */
.content-text-premium a,
.content-paragraph a,
.author-name a,
.loc-note a,
.loc-check-item a,
.loc-areas-card a,
.feature-description a,
.detail-text a,
.process-text a,
.faq-premium-answer a,
.cta-text-premium a {
  color: var(--lx-gold-light);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 174, 116, .35);
  transition: color .3s var(--lx-ease), border-color .3s var(--lx-ease);
}

.content-text-premium a:hover,
.content-paragraph a:hover,
.author-name a:hover,
.loc-note a:hover,
.loc-check-item a:hover,
.loc-areas-card a:hover,
.feature-description a:hover,
.detail-text a:hover,
.process-text a:hover,
.faq-premium-answer a:hover,
.cta-text-premium a:hover {
  color: var(--lx-gold-champagne);
  border-bottom-color: var(--lx-gold-champagne);
}

/* The author heading already carries its own weight/colour; the link inside it
   only needs to stop being blue, not to shout. */
.author-name a {
  color: inherit;
  font-weight: inherit;
  border-bottom-color: rgba(201, 174, 116, .28);
}

.author-name a:hover { color: var(--lx-gold-champagne); }

/* ---------- Testimonial author heading ---------- */
.testimonials-section-premium h3.author-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: .2px;
  margin: 0 0 5px;
  text-transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1.hero-headline { line-height: 1.22; }
  .hero-kicker { letter-spacing: 2px; }
  .checklist-premium li { padding: 16px 18px; font-size: 14.5px; gap: 13px; }
  .section-note { padding: 20px 22px; font-size: 14.5px; }
  .content-text-after { margin-top: 36px; }
}


/* ==========================================================================
   PART B — LOCATION PAGE ONLY
   Everything below is specific to the service-area pages: the image-less hero
   paired with the quote form, the checklist grid, service cards that carry
   their own CTA, the area chips, review attribution and the map/weather band.
   Loaded after Part A so it wins on source order without !important.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Hero — no image, copy on the left, quote form on the right
   -------------------------------------------------------------------------- */
.hero-section.location-hero {
  min-height: 0;
  padding: 92px 5% 104px;
  align-items: center;
}

.location-hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 56px;
  align-items: center;
}

/* style-new.css centres the whole hero below 992px, which strands the lead
   paragraph as ragged centred text. Keep the reading column left-aligned at
   every width — the same fix the homepage applies to .hero-description-box. */
.location-hero-copy {
  padding-top: 6px;
  text-align: left;
}

.location-hero .location-eyebrow {
  margin-bottom: 22px;
}

.hero-section.location-hero h1.location-h1 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 5vw, 3.85rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 26px;
  text-wrap: balance;
}

.location-hero-lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
  margin: 0 0 34px;
  max-width: 62ch;
}

.location-hero .hero-actions {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   2. Quote form panel (top_form.php on a dark ground)

   style.css paints #quote_form as a white, blue-bordered, 50px-radius card —
   right for the old light template, wrong on this black hero. Strip it back to
   a plain block and let .location-form-panel supply the frame.
   -------------------------------------------------------------------------- */
.location-form-panel #quote_form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, .75);
}

.location-form-panel {
  position: relative;
  padding: 38px 34px 34px;
  background-image: var(--lx-edge), var(--lx-surface);
  background-size: 2px 100%, auto;
  background-repeat: no-repeat, no-repeat;
  background-position: left top, left top;
  border-top: 1px solid var(--lx-hairline);
  border-bottom: 1px solid var(--lx-hairline);
  border-right: 1px solid var(--lx-hairline);
  box-shadow: var(--lx-shadow);
}

.location-form-panel .php-email-form h2 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.location-form-panel .php-email-form h2::after {
  content: '';
  display: block;
  width: 90px;
  height: 1px;
  margin: 16px auto 22px;
  background: var(--lx-metal-line);
  box-shadow: 0 0 14px rgba(201, 174, 116, .35);
}

.location-form-panel .form-control {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--lx-hairline);
  border-radius: 0;
  color: #FFFFFF;
  font-size: 14.5px;
  transition: border-color .3s var(--lx-ease), background .3s var(--lx-ease);
}

.location-form-panel .form-control:focus {
  background: rgba(255, 255, 255, .06);
  border-color: var(--lx-gold-light);
  box-shadow: 0 0 0 1px rgba(201, 174, 116, .28);
  color: #FFFFFF;
}

.location-form-panel .form-control::placeholder {
  color: rgba(255, 255, 255, .38);
}

.location-form-panel .form-floating > label {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  padding-left: 14px;
  opacity: 1;
}

.location-form-panel .form-floating > label::after {
  background: transparent !important;
}

.location-form-panel .form-floating > .form-control:focus ~ label,
.location-form-panel .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--lx-gold-light);
  opacity: 1;
}

.location-form-panel #captcha {
  margin-top: 6px;
}

.location-form-panel #captcha_code {
  display: block;
  margin-bottom: 10px;
}

.location-form-panel #verificationimage {
  width: 108px;
  height: 42px;
  border: 1px solid var(--lx-hairline);
  background: #FFFFFF;
  padding: 2px;
}

.location-form-panel #response {
  color: var(--lx-gold-champagne);
  font-size: 14px;
  text-align: center;
}

.location-form-panel .btn-primary {
  width: 100%;
  border-radius: 0 !important;
  letter-spacing: 1.6px;
  color: #0A0908;
}

/* --------------------------------------------------------------------------
   3. Doc labels rendered as gold lead-ins (words kept exactly as authored)
   -------------------------------------------------------------------------- */
.loc-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .6px;
  line-height: 1.4;
  color: var(--lx-gold-champagne);
}

.loc-label::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--lx-gold-champagne);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(231, 211, 168, .55);
}

.loc-label-center {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 30px;
}

/* --------------------------------------------------------------------------
   4. "Why clients choose our agency" checklist grid
   -------------------------------------------------------------------------- */
.loc-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.loc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background-image: var(--lx-surface);
  border: 1px solid var(--lx-hairline);
  transition: background .45s var(--lx-ease), border-color .45s var(--lx-ease), transform .45s var(--lx-ease);
}

.loc-check-item:hover {
  background-image: var(--lx-surface-hover);
  border-color: var(--lx-hairline-strong);
  transform: translateY(-3px);
}

.loc-check-item i {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 14px;
  color: var(--lx-gold-light);
}

.loc-check-item span {
  font-size: 14.8px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .74);
}

.loc-note {
  max-width: 940px;
  margin: 46px auto 0;
  text-align: center;
}

.loc-note p {
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .62);
  margin: 0;
}

/* --------------------------------------------------------------------------
   5. Service cards that carry their own CTA
   -------------------------------------------------------------------------- */
.loc-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card-premium .service-title-h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.1px;
  line-height: 1.35;
  margin: 0 0 14px;
}

.service-card-premium .service-title-h3 a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color .35s var(--lx-ease);
}

.service-card-premium:hover .service-title-h3 a {
  color: var(--lx-gold-champagne);
}

.loc-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-bottom: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lx-gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 174, 116, .32);
  transition: color .35s var(--lx-ease), border-color .35s var(--lx-ease);
}

.loc-service-cta:hover {
  color: var(--lx-gold-champagne);
  border-bottom-color: var(--lx-gold-champagne);
}

.loc-cta-arrow {
  display: inline-block;
  transition: transform .35s var(--lx-ease);
}

.loc-service-cta:hover .loc-cta-arrow {
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   6. Areas we serve — two panels of chips
   -------------------------------------------------------------------------- */
.loc-areas-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.loc-areas-card {
  padding: 36px 34px;
  background-image: var(--lx-edge), var(--lx-surface);
  background-size: 2px 100%, auto;
  background-repeat: no-repeat, no-repeat;
  background-position: left top, left top;
  border-top: 1px solid var(--lx-hairline);
  border-bottom: 1px solid var(--lx-hairline);
  border-right: 1px solid var(--lx-hairline);
  box-shadow: var(--lx-shadow);
}

.loc-areas-card .loc-label {
  margin-bottom: 24px;
}

.loc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .022);
  border: 1px solid var(--lx-hairline);
  transition: background .4s var(--lx-ease), border-color .4s var(--lx-ease), color .4s var(--lx-ease);
}

.loc-chip::before {
  content: '';
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  background: var(--lx-gold-light);
  transform: rotate(45deg);
}

.loc-chip:hover {
  background: rgba(201, 174, 116, .08);
  border-color: var(--lx-hairline-strong);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   7. Reviews — attribution line under the author name
   -------------------------------------------------------------------------- */
.author-role {
  display: block;
  margin-top: 3px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--lx-gold-light);
}

/* --------------------------------------------------------------------------
   8. Closing CTA band — two buttons under the copy
   -------------------------------------------------------------------------- */
.loc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 38px;
}

.cta-section-premium .loc-cta-actions .btn-premium {
  min-width: 260px;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   9. Map + weather band
   -------------------------------------------------------------------------- */
.location-widget-wrapper .map-container-premium iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 450px;
  border: 0;
}

/* weatherwidget.io injects an iframe and only sets a real height once its own
   script answers. Reserve the slot so the band never collapses to nothing
   while that round trip is in flight. */
/* Sized to the map frame above it, the way the homepage does it: full wrapper
   width, no inner padding, so both bands share one edge. The extra width also
   lets weatherwidget.io lay the forecast out in a single row instead of
   wrapping it into a much taller stack. */
.weather-container-premium {
  /* width:100% is load-bearing — auto side margins turn off a grid item's
     stretch, which would otherwise shrink-wrap this box to nothing. */
  width: 100%;
  margin: 0 auto;
  min-height: 120px;
  border: 1px solid var(--lx-hairline);
  background: rgba(255, 255, 255, .02);
  box-shadow: var(--lx-shadow);
}

.weather-container-premium a.weatherwidget-io {
  color: var(--lx-gold-light);
}

.weather-container-premium .weatherwidget-io-frame {
  display: block;
  width: 100%;
}

/* --------------------------------------------------------------------------
   10. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .location-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    max-width: 760px;
  }

  .loc-service-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (max-width: 992px) {
  .hero-section.location-hero {
    padding: 76px 5% 84px;
  }

  .location-hero-lead {
    max-width: none;
  }

  .loc-note {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .hero-section.location-hero {
    padding: 60px 20px 70px;
  }

  .hero-section.location-hero h1.location-h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    letter-spacing: -.6px;
  }

  .location-hero-lead {
    font-size: 15px;
  }

  .location-hero .hero-actions,
  .loc-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .location-hero .hero-actions .btn-premium,
  .cta-section-premium .loc-cta-actions .btn-premium {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .location-form-panel {
    padding: 30px 22px 26px;
  }

  .loc-check-grid,
  .loc-service-grid,
  .loc-areas-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .loc-areas-card {
    padding: 30px 24px;
  }

  .location-widget-wrapper .map-container-premium iframe {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .hero-section.location-hero h1.location-h1 {
    font-size: 1.85rem;
  }

  .loc-label {
    font-size: 13.5px;
  }

  .loc-check-item {
    padding: 16px 18px;
  }

  .service-card-premium .service-title-h3 {
    font-size: 18px;
  }

  .location-widget-wrapper .map-container-premium iframe {
    height: 280px;
  }
}

/* --------------------------------------------------------------------------
   11. Location photo — the hero's right-hand column

   The photo takes the hero slot the call card used to hold (section 2 above),
   and the call card moves down into the opening copy band, which is why
   .loc-intro-grid below sizes its first column for that panel.

   The location photos are 768x1344 (9:16), far taller than the hero copy beside
   them, so the figure is cropped to a set frame rather than being allowed to
   run to its natural height. Each page picks its own vertical crop with
   --loc-figure-focus (the object-position Y value) — the subject sits at a
   different height in every photo. Stacked, the frame turns landscape and crops
   far harder, so it reads its own --loc-figure-focus-wide; set both per page.
   Responsive rules live in this block rather than in section 10 above.
   -------------------------------------------------------------------------- */
.loc-intro-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
}

.loc-figure {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #0A0908;
  box-shadow: var(--lx-shadow);
}

/* In the hero the figure sets its own height instead of matching a text column,
   so it carries a frame ratio rather than a minimum. A square frame capped at
   470px keeps it close to the height of the copy beside it — a portrait frame
   filling the full column ran half again as tall as the headline and lead, and
   pushed the whole hero down the page. */
.location-hero-grid--figure {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
}

.location-hero-figure {
  min-height: 0;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  aspect-ratio: 1 / 1;
}

/* Metallic left edge, the same one .content-card-large carries, so the photo
   and the copy beside it read as two halves of one panel. */
.loc-figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 2px;
  background: var(--lx-edge);
}

.loc-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--lx-hairline);
}

.loc-figure-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--loc-figure-focus, 32%);
  filter: saturate(.9) contrast(1.05) brightness(.92);
  transition: transform 1s var(--lx-ease), filter 1s var(--lx-ease);
}

.loc-figure:hover .loc-figure-img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.06) brightness(1);
}

.loc-figure-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 62px 26px 22px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.92) 100%);
  font-family: var(--lx-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--lx-gold-champagne);
}

/* The copy already carries the left edge and shadow from .content-card-large;
   inside the grid it only needs to stop being a fixed-width centred block. */
.loc-intro-grid .content-card-large {
  padding: 46px 48px;
}

@media (max-width: 992px) {
  /* Section 10's stacking rule targets .location-hero-grid, which this block's
     modifier would otherwise outrank on source order alone. Restate it, and let
     the figure fill the stacked column rather than staying a capped square. */
  .location-hero-grid--figure {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-hero-figure {
    max-width: none;
    margin-left: 0;
    aspect-ratio: 4 / 3;
  }

  .loc-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-width: 720px;
  }

  /* Stacked, the photo becomes a banner above the copy: a landscape crop keeps
     it from pushing the text a screen and a half down the page. */
  .loc-figure {
    min-height: 0;
    aspect-ratio: 4 / 3;
    max-height: 58vh;
  }

  .loc-figure-img {
    object-position: center var(--loc-figure-focus-wide, 50%);
  }

  .loc-figure::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--lx-metal-line);
  }
}

@media (max-width: 576px) {
  .loc-figure {
    aspect-ratio: 5 / 4;
  }

  .loc-figure-caption {
    padding: 52px 22px 18px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .loc-intro-grid .content-card-large {
    padding: 32px 26px;
  }
}
