/* ==========================================================================
   SINGLE LOCATION PAGE
   ========================================================================== */

/* ---------- Page wrapper ---------- */
.goldatm-location-page {
  background: var(--dark, #0D0D0D);
  color: var(--cream, #F5F0E8);
  font-family: var(--font-body, 'DM Sans', system-ui, sans-serif);
  min-height: 100vh;
}

/* ---------- Breadcrumb ---------- */
.goldatm-loc-breadcrumb {
  padding: 120px 40px 0;
  max-width: 1200px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim, rgba(245, 240, 232, 0.35));
}

.goldatm-loc-breadcrumb a {
  color: var(--gold, #C8A84E);
  text-decoration: none;
}

.goldatm-loc-breadcrumb a:hover {
  color: var(--gold-light, #D4B96A);
}

.goldatm-loc-breadcrumb__sep {
  color: var(--text-dim);
}

.goldatm-loc-breadcrumb__current {
  color: var(--cream, #F5F0E8);
}

/* ---------- Hero: Map + Info ---------- */
.goldatm-loc-hero {
  padding: 0 40px 80px;
}

.goldatm-loc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
}

/* Map side */
.goldatm-loc-hero__map {
  position: relative;
  min-height: 480px;
  background: var(--mid, #2A2A2A);
}

.goldatm-loc-hero__map .map-wrapper {
  position: absolute;
  inset: 0;
}

.goldatm-loc-hero__map .map-wrapper,
.goldatm-loc-hero__map .map-static-wrap,
.goldatm-loc-hero__map .map-static-wrap img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
}

.goldatm-loc-hero__map .map-static-wrap img {
  object-fit: cover;
}

.goldatm-loc-hero__map .uk-grid {
  margin: 0;
  padding: 0;
}

.goldatm-loc-hero__map .uk-width-1-1 {
  padding: 0;
}

.goldatm-loc-hero__directions-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 10px 16px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
  border-radius: 4px;
  color: var(--gold, #C8A84E);
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  letter-spacing: 0.5px;
  transition: all 0.3s;
  z-index: 5;
}

.goldatm-loc-hero__directions-overlay:hover {
  background: rgba(200, 168, 78, 0.1);
  color: var(--gold-light, #D4B96A);
}

/* Info panel */
.goldatm-loc-hero__info {
  background: var(--charcoal, #1A1A1A);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.goldatm-loc-hero__title {
  font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream, #F5F0E8);
  margin: 0 0 8px;
}

.goldatm-loc-hero__address {
  font-size: 15px;
  color: var(--text-muted, rgba(245, 240, 232, 0.5));
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 24px;
}

.goldatm-loc-hero__actions {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.goldatm-loc-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold, #C8A84E);
  text-decoration: none;
}

.goldatm-loc-action:hover {
  color: var(--gold-light, #D4B96A);
}

.goldatm-loc-hero__inside {
  font-size: 13px;
  color: var(--text-dim, rgba(245, 240, 232, 0.35));
  margin-bottom: 20px;
  font-weight: 300;
}

/* ---------- Hours Table ---------- */
.goldatm-loc-hours {
  border-top: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
  padding-top: 20px;
}

.goldatm-loc-hours__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, #C8A84E);
  margin-bottom: 12px;
  font-weight: 500;
}

.goldatm-loc-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(200, 168, 78, 0.04);
}

.goldatm-loc-hours__row:last-child {
  border-bottom: none;
}

.goldatm-loc-hours__day {
  font-size: 13px;
  color: var(--text-dim, rgba(245, 240, 232, 0.35));
  font-weight: 300;
}

.goldatm-loc-hours__time {
  font-size: 13px;
  color: var(--text-muted, rgba(245, 240, 232, 0.5));
  font-weight: 300;
}

/* Today highlight */
.goldatm-loc-hours__row--today .goldatm-loc-hours__day {
  color: var(--cream, #F5F0E8);
  font-weight: 500;
}

.goldatm-loc-hours__row--today .goldatm-loc-hours__time {
  color: var(--gold, #C8A84E);
  font-weight: 500;
}

/* ---------- What to Bring ---------- */
.goldatm-loc-bring {
  padding: 80px 40px;
  background: var(--charcoal, #1A1A1A);
  border-top: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
  border-bottom: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
}

.goldatm-loc-bring__inner {
  max-width: 900px;
  margin: 0 auto;
}

.goldatm-loc-bring__inner .goldatm-section-title {
  margin-bottom: 48px;
}

.goldatm-loc-bring__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.goldatm-loc-bring__card {
  padding: 28px;
  background: var(--mid, #2A2A2A);
  border-radius: 4px;
  border: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
}

.goldatm-loc-bring__icon {
  color: var(--gold, #C8A84E);
  font-size: 24px;
  margin-bottom: 16px;
}

.goldatm-loc-bring__name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--cream, #F5F0E8);
}

.goldatm-loc-bring__desc {
  font-size: 13px;
  color: var(--text-dim, rgba(245, 240, 232, 0.35));
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- Nearby Locations ---------- */
.goldatm-loc-nearby {
  padding: 80px 40px;
}

.goldatm-loc-nearby__inner {
  max-width: 900px;
  margin: 0 auto;
}

.goldatm-loc-nearby__inner .goldatm-section-title {
  margin-bottom: 32px;
}

.goldatm-loc-nearby__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.goldatm-loc-nearby__card {
  padding: 24px;
  background: var(--mid, #2A2A2A);
  border-radius: 4px;
  border: 1px solid var(--border-gold, rgba(200, 168, 78, 0.1));
  text-decoration: none;
  transition: all 0.3s;
  display: block;
}

.goldatm-loc-nearby__card:hover {
  border-color: var(--border-gold-hover, rgba(200, 168, 78, 0.3));
  transform: translateY(-2px);
}

.goldatm-loc-nearby__card-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream, #F5F0E8);
  margin-bottom: 8px;
}

.goldatm-loc-nearby__card-addr {
  font-size: 13px;
  color: var(--text-dim, rgba(245, 240, 232, 0.35));
  line-height: 1.4;
  margin-bottom: 12px;
}

.goldatm-loc-nearby__card-link {
  font-size: 12px;
  color: var(--gold, #C8A84E);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .goldatm-loc-breadcrumb {
    padding: 108px 20px 0;
    margin-bottom: 16px;
  }

  .goldatm-loc-hero {
    padding: 0 20px 60px;
  }

  .goldatm-loc-hero__inner {
    grid-template-columns: 1fr;
  }

  .goldatm-loc-hero__map {
    min-height: 280px;
  }

  .goldatm-loc-hero__info {
    padding: 28px 24px;
  }

  .goldatm-loc-hero__actions {
    gap: 16px;
  }

  .goldatm-loc-bring {
    padding: 48px 20px;
  }

  .goldatm-loc-bring__inner .goldatm-section-title {
    margin-bottom: 32px;
  }

  .goldatm-loc-bring__grid {
    grid-template-columns: 1fr;
  }

  .goldatm-loc-nearby {
    padding: 48px 20px;
  }

  .goldatm-loc-nearby__grid {
    grid-template-columns: 1fr;
  }
}
