.location-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.location-hero-copy,
.location-info-card {
  border-radius: 24px;
}

.location-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);

}

.location-hero-text {
  margin: 0 0 24px;
  max-width: 720px;
  color: #111; /* clean black */

}

.location-hero-points {
  display: grid;
  gap: 16px;
}

.location-point {
  display: grid;
  gap: 6px;
}

.location-point strong {
  color: var(--red);
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);

}

.location-point span {
  color: #111; /* clean black */
}

.location-info-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.location-info-card.card-solid-gold h2 {
  color: var(--red);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

.location-info-card.card-solid-gold p {
  color: #111;
}

/* Center text helper (if not already defined) */
.text-center {
  text-align: center;
}

/* Gold heading inside dark sections */
.section-dark .section-heading h2 {
  color: var(--red);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* Center the paragraph nicely */
.section-dark .section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
}

.gold-text {
  color: var(--gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

/* =========================
   WHO WE SERVICE SECTION
========================= */

.section-red {
  background: var(--red);
}

.location-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-types-card {
  padding: 32px;
  border-radius: 24px;
}


.location-types-heading {
  margin-top: -10px;
}

.location-types-heading h2 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  margin: 0 0 16px;
  color: var(--gold);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.location-types-heading p {
  max-width: 540px;
  color: #fff;
}

.location-types-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 260px));
  justify-content: center;
  gap: 18px 36px;
}

.location-types-list li {
  display: grid;
  grid-template-columns: 34px auto;
  align-items: center;
  justify-content: start;
  gap: 14px;

  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
}

.tick-circle {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  line-height: 1;
}

/* LOCAL SERVICE AREA STYLING */
.section-muted .section-heading span {
  color: #111; /* eyebrow black */
}

.section-muted .section-heading h2 {
  color: var(--gold); /* heading red */
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.section-muted .section-heading p {
  color: #111; /* body text black */
}

.section-muted .section-heading p {
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   MOANA HEADER
========================= */

.page-moama .brand-hero {
  position: relative;
  background: url("../images/moama_bg.png") center/cover no-repeat;
}

.page-moama .brand-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-moama .brand-hero-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .location-hero-inner {
    grid-template-columns: 1fr;
  }
}

/* =========================
   RESPONSIVE - LOCATION TYPES
========================= */

/* TABLET (≤ 980px) */
@media (max-width: 980px) {
  .location-types-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .location-types-heading {
    max-width: 600px;
    margin: 0 auto;
  }

  .location-types-heading p {
    margin: 0 auto;
  }

  .location-types-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .location-types-list {
    justify-content: center;
  }
}

/* MOBILE (≤ 640px) */
@media (max-width: 640px) {
  .location-types-grid {
    gap: 32px;
  }

  .location-types-card {
    padding: 24px;
  }

  .location-types-list {
    grid-template-columns: 1fr;
    max-width: 260px;
    gap: 14px;
  }

  .location-types-list li {
    grid-template-columns: 30px auto;
    justify-content: start;
    text-align: left;
  }

  .tick-circle {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 0.9rem;
  }
}