:root {
  --places-teal-900: #0f4f56;
  --places-teal-800: #13636b;
  --places-teal-700: #1b7b84;
  --places-teal-500: #38b7c2;

  --places-text: #18343a;
  --places-text-soft: #5b7277;
  --places-surface: rgba(255, 255, 255, 0.98);
  --places-surface-soft: #f7fbfb;
  --places-border: rgba(15, 79, 86, 0.10);

  --places-shadow-sm:
    0 8px 18px rgba(15, 79, 86, 0.08),
    0 3px 8px rgba(15, 79, 86, 0.04);

  --places-shadow-md:
    0 14px 36px rgba(15, 79, 86, 0.10),
    0 4px 10px rgba(15, 79, 86, 0.05);

  --places-shadow-lg:
    0 20px 44px rgba(15, 79, 86, 0.12),
    0 6px 14px rgba(15, 79, 86, 0.06);

  --places-radius-lg: 22px;
  --places-radius-md: 16px;
  --places-max-width: 1200px;
}

/* =========================
   Shared section layout
   ========================= */

.places-hero,
.places-featured,
.places-coverage,
.places-cta {
  padding-left: 1rem;
  padding-right: 1rem;
}

.places-hero__inner,
.places-featured__inner,
.places-coverage__inner,
.places-cta__inner {
  max-width: var(--places-max-width);
  margin: 0 auto;
}

.places-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.places-section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.12;
  color: var(--places-teal-900);
  letter-spacing: -0.02em;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.places-section-heading p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--places-text-soft);
}

/* =========================
   Hero
   ========================= */

.places-hero {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.places-hero__inner {
  text-align: center;
}

.places-hero__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--places-teal-700);
}

.places-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--places-teal-900);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.places-hero h1::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin: 0.9rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--places-teal-800), var(--places-teal-500));
}

.places-hero__text {
  max-width: 760px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--places-text-soft);
}

/* =========================
   Featured venues
   ========================= */

.places-featured {
  padding-bottom: 3.5rem;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.place-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--places-radius-lg);
  background: var(--places-surface);
  border: 1px solid var(--places-border);
  box-shadow: var(--places-shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.place-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--places-teal-800), var(--places-teal-500));
  z-index: 2;
}

.place-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--places-shadow-lg);
}

.place-card__image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #000;
}

.place-card__content {
  padding: 1rem 1rem 1.1rem;
  background: #ffffff;
}

.place-card__content h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
  color: var(--places-teal-900);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.place-card__content p {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--places-text-soft);
}

/* =========================
   Coverage chips
   ========================= */

.places-coverage {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #fafdfd 0%, #f4fbfb 100%);
}

.places-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 0.95rem;
  max-width: 980px;
  margin: 0 auto;
}

.places-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 251, 0.96));
  border: 1px solid var(--places-border);
  color: var(--places-teal-900);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: var(--places-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.places-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 79, 86, 0.16);
  box-shadow:
    0 12px 24px rgba(15, 79, 86, 0.10),
    0 4px 10px rgba(15, 79, 86, 0.05);
}

.places-chip--lg {
  font-size: 1.02rem;
  padding: 0.78rem 1.15rem;
}

.places-chip--md {
  font-size: 0.99rem;
}

/*========
   Bottom CTA card
   ========================= */

.places-cta {
  margin-top: 3rem;
}

.places-cta__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--places-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 251, 0.96));
  border: 1px solid var(--places-border);
  box-shadow: var(--places-shadow-md);
  text-align: center;
}

.places-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--places-teal-800), var(--places-teal-500));
}

.places-cta__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--places-teal-700);
}

.places-cta__inner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  color: var(--places-teal-900);
}

.places-cta__text {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--places-text-soft);
}

.places-cta__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Primary CTA button */
a.places-cta__button,
a.places-cta__button:link,
a.places-cta__button:visited {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: var(--places-teal-900);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 79, 86, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

a.places-cta__button:hover,
a.places-cta__button:focus {
  background: var(--places-teal-900);
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 79, 86, 0.3);
}

/* Secondary text link */
a.places-cta__link,
a.places-cta__link:link,
a.places-cta__link:visited {
  color: var(--places-teal-800);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a.places-cta__link:hover,
a.places-cta__link:focus {
  opacity: 1;
  color: var(--places-teal-900);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .places-cta {
    margin-top: 2rem;
  }

  .places-cta__inner {
    padding: 1.25rem 1rem 1.35rem;
    border-radius: 18px;
  }

  .places-cta__text {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .places-cta__actions {
    gap: 0.85rem;
    margin-top: 1.25rem;
  }

  a.places-cta__button,
  a.places-cta__button:link,
  a.places-cta__button:visited {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}