/* =============================================
   LOCAL LANDING PAGES
   ============================================= */

/* --- Hero --- */
.local-hero {
  padding: 80px 24px 64px;
  background: var(--hh-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.local-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.local-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.local-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.local-hero__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.local-hero__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 8vw, 56px);
  text-transform: uppercase;
  color: var(--hh-white);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.local-hero__sub {
  font-size: 17px;
  color: rgba(250,250,248,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.local-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Content --- */
.local-content {
  padding: 64px 24px;
  background: var(--hh-white);
}
.local-content__inner {
  max-width: 680px;
  margin: 0 auto;
}
.local-content__inner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hh-black);
  margin-bottom: 20px;
}
.local-content__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 4vw, 30px);
  text-transform: uppercase;
  color: var(--hh-black);
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 16px;
}

/* --- Perks Grid --- */
.local-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.local-perk {
  padding: 24px 20px;
  background: var(--hh-off-white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.local-perk strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--hh-red);
  margin-bottom: 6px;
}
.local-perk span {
  font-size: 14px;
  color: var(--hh-gray);
  line-height: 1.5;
}

/* --- List --- */
.local-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}
.local-list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--hh-black);
  padding: 4px 0;
}

/* --- Info Block --- */
.local-info {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--hh-off-white);
  border-radius: 12px;
  text-align: center;
}
.local-info p {
  margin-bottom: 6px !important;
  font-size: 15px;
}
.local-info__address {
  font-size: 17px !important;
}
.local-info__phone {
  color: var(--hh-red);
  font-weight: 700;
}
.local-info__phone:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 520px) {
  .local-perks {
    grid-template-columns: 1fr;
  }
}
