/* ==========================================================================
   contact.css — /contact/ ("find us") ONLY. A form-free hub: action cards,
   address + directions, hours, socials. Reuses the shared content-page helpers
   (.page-section / .crumb / .page-intro in base.css), .eyebrow, and .btn
   (buttons.css). Everything here is namespaced .contact-*. Built from tokens.

   No motion of its own — scroll-reveal is the shared .reveal pattern (reveal.css),
   which already honors prefers-reduced-motion. Only color hovers transition.
   ========================================================================== */

/* ---- 2 · primary action cards ------------------------------------------- */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--veil);
  border-radius: var(--radius);
  background: rgba(25, 21, 15, 0.5);
}
/* the booking card carries the gold accent — it's the primary action */
.contact-card--book {
  border-color: var(--grace-lo);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(232, 178, 89, 0.08), transparent 60%),
    rgba(25, 21, 15, 0.5);
}
.contact-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--step-1);
  color: var(--bone);
}
.contact-card__body {
  margin-top: 0.7rem;
  color: var(--bone-dim);
  font-size: var(--step-0);
  line-height: 1.6;
}
.contact-card__cta {
  margin-top: 1.2rem;
}
.contact-card__note {
  margin-top: 1rem;
  color: var(--bone-faint);
  font-size: var(--step--1);
  line-height: 1.5;
}

/* big, tappable phone/email (≥44px touch target), real <a> for dial/compose */
.contact-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 44px;
  justify-content: center;
  margin-top: 0.9rem;
  padding: 0.5rem 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--step-1);
  color: var(--grace);
  border-top: 1px solid var(--hairline);
  transition: color 200ms ease;
}
.contact-link:hover {
  color: var(--grace-hi);
}
.contact-link__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 0.1rem;
}

/* ---- 3 + 4 · shop + hours (side by side on desktop) --------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.contact-block {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
/* inside the grid the blocks share the row's top margin, not their own */
.contact-grid .contact-block {
  margin-top: 0;
}
.contact-block__h {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--step-2);
  color: var(--bone);
  margin-bottom: 1.1rem;
}
.contact-address {
  font-style: normal;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--bone);
  margin-bottom: 1.2rem;
}

/* hours: definition list rows (day · time), closed days dimmed */
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  max-width: 22rem;
}
.contact-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--hairline);
}
.contact-hours__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-hours__row dt {
  color: var(--bone);
  font-weight: 500;
}
.contact-hours__row dd {
  margin: 0;
  color: var(--bone-dim);
  font-variant-numeric: tabular-nums;
}
.contact-hours__row.is-closed dt,
.contact-hours__row.is-closed dd {
  color: var(--bone-faint);
}

/* ---- 5 · connect (socials + wishlist) ----------------------------------- */
.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-socials a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5ch;
  min-height: 44px;
  align-content: center;
  color: var(--bone);
  transition: color 200ms ease;
}
.contact-socials a span {
  color: var(--bone-faint);
  font-size: 0.92em;
}
.contact-socials a:hover {
  color: var(--grace-hi);
}

/* ---- 6 · close: uses the shared .page-close helper (base.css) ---------- */

/* ---- responsive: stack at ≤48rem --------------------------------------- */
@media (max-width: 48rem) {
  .contact-actions,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid .contact-block {
    margin-top: 0;
  }
  .contact-grid .contact-block + .contact-block {
    margin-top: clamp(2rem, 8vw, 3rem);
  }
}
