/* ============================================================
   Yoo Jean Korean Hair Salon — LOCATION page
   Top photo, Waze/Grab search hint, Google map, then the shared
   VISIT US / FOLLOW US blocks.
   ============================================================ */

.yj-loc {
  --yj-lc-accent: #c9a227;
  --yj-lc-ink: #14110f;
  --yj-lc-muted: #8a8279;
  --yj-lc-line: #e8e2d8;
  --yj-lc-cream: #faf7f2;

  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: "PT Serif", Georgia, serif;
  color: var(--yj-lc-ink);
}

/* ---------- Top photo ---------- */

.yj-loc__hero {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 4px 0 26px;
}

/* ---------- "Find us on" hint ---------- */

.yj-loc__find {
  padding: 0 0 26px;
  text-align: center;
}

.yj-loc__find-label {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yj-lc-muted);
  margin-bottom: 14px;
}

.yj-loc__apps {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.yj-loc__app {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--yj-lc-line);
  background: #fff;
  color: var(--yj-lc-ink);
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s,
              border-color .2s, color .2s;
}

.yj-loc__app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20,17,15,.12);
}

.yj-loc__app--waze:hover { border-color: #33ccff; color: #1a9fd4; }
.yj-loc__app--grab:hover { border-color: #00b14f; color: #00b14f; }

.yj-loc__app svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Search hint */
.yj-loc__hint {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--yj-lc-muted);
}

.yj-loc__hint strong {
  color: var(--yj-lc-ink);
  font-weight: 700;
}

/* ---------- Map ---------- */

.yj-loc__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--yj-lc-line);
  background: var(--yj-lc-cream);
}

.yj-loc__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .yj-loc { padding: 0 16px; max-width: 100%; }
  .yj-loc__hero { margin: 2px 0 20px; }
  .yj-loc__find { padding-bottom: 20px; }
  .yj-loc__app { padding: 9px 16px; font-size: 12px; }
  .yj-loc__app svg { width: 16px; height: 16px; }
  .yj-loc__hint { font-size: 13px; }
  .yj-loc__map { aspect-ratio: 1 / 1; }
}

@media (prefers-reduced-motion: reduce) {
  .yj-loc__app { transition: none; }
}
