/* local.css — Find Us page (pop-ups, stockists) */

/* ---- FIND US / EVENTS SECTION ---- */
.find-us-section {
  padding: 4rem 6vw;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.location-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.8rem;
  background: rgba(201,168,76,0.02);
  position: relative;
}

.location-status {
  display: inline-block;
  font-family: 'Playfair Display SC', serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-bottom: 1rem;
}

.location-status.now {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}

.location-status.upcoming {
  background: rgba(197,190,177,0.06);
  color: var(--text);
  border: 1px solid rgba(197,190,177,0.15);
}

.location-status.paused {
  background: rgba(197,190,177,0.04);
  color: rgba(197,190,177,0.45);
  border: 1px solid rgba(197,190,177,0.1);
}

.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.location-date {
  font-family: 'Playfair Display SC', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.location-recurrence {
  font-size: 0.82rem;
  color: rgba(197,190,177,0.5);
  font-style: italic;
  margin-bottom: 0.6rem;
}

.location-detail {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.location-map-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Playfair Display SC', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.location-none {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px dashed rgba(201,168,76,0.15);
  max-width: 960px;
  margin: 0 auto;
}

.location-none p {
  font-size: 1rem;
  color: var(--text);
}

/* ---- STOCKISTS SECTION ---- */
.stockists-section {
  padding: 4rem 6vw;
}

.stockist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.stockist-card {
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.8rem;
  background: rgba(201,168,76,0.02);
}

.stockist-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.stockist-detail {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.stockist-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: 'Playfair Display SC', serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.stockist-coming-soon {
  border: 1px dashed rgba(201,168,76,0.15);
  padding: 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

.stockist-coming-soon .stockist-name {
  color: var(--gold-dim);
  font-size: 1rem;
}

.stockist-coming-soon p {
  font-size: 0.88rem;
  color: rgba(197,190,177,0.5);
  margin-bottom: 0;
}

/* ---- CTA SECTION ---- */
.local-cta {
  padding: 5rem 6vw;
  text-align: center;
}

.local-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.local-cta p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 2.4rem;
}

.local-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
