/* ============================================================
   CUSTOM — Per-store overrides for Template TF
   Add store-specific tweaks here. Loaded last so it wins
   over theme.css and style.css.
   ============================================================ */

/* Home hero headline carries the full business name + city,
   so it needs a slightly smaller type ramp than the template
   default to stay balanced on phones and desktop. */
.hero-full h1 {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
}

/* FAQ answers carry the dish and delivery-area links, so they get the
   same link treatment the template already uses for .lede / .prose copy. */
.qa .qa-body a {
  color: var(--chili-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

.qa .qa-body a:hover {
  color: var(--chili);
}

/* ---------- home: find us (map + contact box) ---------- */

.visit-sec {
  padding: 0 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--sand);
}

.visit-sec .sec-head {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.6rem;
}

.visit-box {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.1rem, 2.6vw, 1.75rem);
  align-items: stretch;
  background: var(--card);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.visit-box .map-frame {
  min-height: 420px;
  box-shadow: none;
  border-radius: var(--r-lg);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visit-details > h3 {
  font-size: 1.35rem;
}

.visit-details .hours-table {
  margin-top: 0;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.25rem;
}

@media (max-width: 900px) {
  .visit-box {
    grid-template-columns: 1fr;
  }

  .visit-box .map-frame {
    min-height: 300px;
  }

  .visit-actions {
    justify-content: center;
  }
}
