/* ============================================
   FIND US PAGE — ZINE EDITION
   ============================================ */

/* ---------- PAGE HERO ---------- */
.find-hero {
  padding: 10rem 0 4rem;
  border-bottom: 4px solid #1a1a1a;
}

.find-hero__headline {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 7rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  line-height: 0.9;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 #ffd000;
}

.find-hero__sub {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #1a1a1a;
  max-width: 400px;
  line-height: 1.6;
  border-left: 4px solid #e63946;
  padding-left: 1rem;
}

/* ---------- MAIN GRID: Info + Map ---------- */
.find-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

/* Contact info blocks */
.find-main__info {
  background: #1a1a1a;
  color: #f0ebe1;
  padding: 2.5rem 2rem;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 #e63946;
  transform: rotate(-1deg);
}

.find-main__block {
  margin-bottom: 2rem;
}

.find-main__block:last-child {
  margin-bottom: 0;
}

.find-main__label {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffd000;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #333;
  padding-bottom: 0.3rem;
  display: inline-block;
}

.find-main__value {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  line-height: 1.65;
  color: #f0ebe1;
}

.find-main__value a {
  color: #f0ebe1;
  border-bottom: 2px solid #e63946;
  padding: 0 0.1rem;
  transition: background 0.2s ease;
}

.find-main__value a:hover,
.find-main__value a:focus-visible {
  background: #ffd000;
  color: #1a1a1a;
  border-bottom-color: #1a1a1a;
}

.find-main__value a:focus-visible {
  outline: none;
}

/* Social links */
.find-main__socials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.find-main__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffd000;
  padding: 0.4rem 0.75rem;
  background: transparent;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.find-main__social-link:hover,
.find-main__social-link:focus-visible {
  background: #ffd000;
  border-color: #ffd000;
  color: #1a1a1a;
}

.find-main__social-link:focus-visible {
  outline: none;
}

/* Map */
.find-main__map-wrap {
  overflow: hidden;
  border: 3px solid #1a1a1a;
  box-shadow: 8px 8px 0 #ffd000;
  transform: rotate(0.8deg);
}

.find-main__map {
  display: block;
  width: 100%;
  height: 450px;
  filter: grayscale(1) contrast(1.1);
}

/* ---------- SHOP EXTERIOR PHOTO ---------- */
.find-photo {
  padding-bottom: 0;
}

.find-photo__wrap {
  margin-top: 2rem;
  overflow: hidden;
  background: #d4c9a8;
  border-top: 4px solid #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
  position: relative;
}

/* Tape corners on shop photo */
.find-photo__wrap::before,
.find-photo__wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 22px;
  background: rgba(255, 208, 0, 0.75);
  border: 1px solid rgba(26, 26, 26, 0.2);
  z-index: 2;
}

.find-photo__wrap::before {
  top: 10px;
  left: 30px;
  transform: rotate(-6deg);
}

.find-photo__wrap::after {
  bottom: 10px;
  right: 30px;
  transform: rotate(5deg);
}

.find-photo__wrap img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 550px;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.85);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .find-main__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .find-main__info {
    max-width: 500px;
  }

  .find-main__map {
    height: 350px;
  }

  .find-main__map-wrap {
    transform: rotate(0deg);
  }
}

@media (max-width: 600px) {
  .find-hero {
    padding: 8rem 0 3rem;
  }

  .find-main__info {
    padding: 2rem 1.5rem;
    box-shadow: 5px 5px 0 #e63946;
  }

  .find-main__map {
    height: 260px;
  }

  .find-main__map-wrap {
    box-shadow: 5px 5px 0 #ffd000;
  }

  .find-photo__wrap::before,
  .find-photo__wrap::after {
    width: 45px;
    height: 15px;
  }
}
