/* ───────────────────────────────────────────────────────────────
   LOCATION SECTION STYLES
   ───────────────────────────────────────────────────────────────── */

.wtc-location {
  background-color: var(--wtc-bg);
  padding: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Location info side */
.location-info {
  background-color: #111;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--wtc-spacing-md);
  margin-bottom: var(--wtc-spacing-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.location-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background-color: var(--wtc-accent);
  flex-shrink: 0;
}

.location-title {
  font-family: var(--wtc-font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--wtc-white);
  margin-bottom: var(--wtc-spacing-xl);
}

.location-title .accent {
  color: var(--wtc-accent);
}

.location-badge {
  display: inline-block;
  background-color: var(--wtc-accent);
  color: var(--wtc-white);
  padding: 8px 16px;
  font-family: var(--wtc-font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--wtc-spacing-xl);
}

.location-district {
  font-family: var(--wtc-font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--wtc-white);
  margin-bottom: var(--wtc-spacing-xl);
  text-transform: uppercase;
}

.location-address {
  margin-bottom: var(--wtc-spacing-lg);
}

.location-street {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.location-hours {
  font-size: 14px;
  color: var(--wtc-muted);
  margin-bottom: var(--wtc-spacing-xl);
}

.location-buttons {
  display: flex;
  gap: var(--wtc-spacing-sm);
  flex-wrap: wrap;
}

.location-btn-primary,
.location-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--wtc-spacing-sm);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--wtc-transition);
  border: 2px solid transparent;
}

.location-btn-primary {
  background-color: var(--wtc-accent);
  color: var(--wtc-white);
  border-color: var(--wtc-accent);
}

.location-btn-primary:hover {
  background-color: transparent;
  border-color: var(--wtc-accent);
  color: var(--wtc-white);
}

.location-btn-secondary {
  background-color: transparent;
  color: var(--wtc-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.location-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Google Map */
.location-map {
  width: 100%;
  min-height: 480px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(100%) brightness(0.5) contrast(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .location-info {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-info {
    padding: 50px 30px;
  }

  .location-title {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: var(--wtc-spacing-lg);
  }

  .location-district {
    font-size: 28px;
    margin-bottom: var(--wtc-spacing-lg);
  }

  .location-street {
    font-size: 15px;
  }

  .location-hours {
    font-size: 13px;
  }

  .location-buttons {
    flex-direction: column;
  }

  .location-btn-primary,
  .location-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
  }

  .location-map {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .location-info {
    padding: 40px 16px;
  }

  .location-title {
    font-size: clamp(20px, 4vw, 32px);
  }

  .location-district {
    font-size: 24px;
  }

  .location-street {
    font-size: 14px;
  }

  .location-buttons {
    flex-direction: column;
    gap: var(--wtc-spacing-sm);
  }

  .location-btn-primary,
  .location-btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .location-map {
    min-height: 280px;
  }

  .location-eyebrow {
    flex-wrap: wrap;
  }
}
