/* ==========================================================================
   Yosemite Lanes — Contact & Hours page styles
   Loads AFTER css/site.css. Extends shared components only — no new hexes.
   ========================================================================== */

/* --- Hours marquee: the big "8 AM – 2 AM" scoreboard card --- */
.hours-marquee {
  max-width: 56rem;
  margin: 14px auto 0; /* top room for the red index tab */
  padding: var(--space-7) var(--space-6);
  text-align: center;
}
.hours-marquee .eyebrow { margin-bottom: var(--space-2); }
.hours-marquee__time {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 75;
  font-weight: 700;
  font-size: clamp(2.5rem, 1.2rem + 5.4vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  max-width: none;
  margin: 0 0 var(--space-5);
}
.hours-marquee__time .ampm {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.42em;
  letter-spacing: 0.08em;
}
.hours-marquee__time .to { color: var(--neon-red); padding-inline: 0.12em; }
.hours-marquee__days {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
  list-style: none;
  margin: 0 auto var(--space-5);
  padding: 0;
}
.hours-marquee__days li {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.1em;
  background: var(--cream);
  border: 1.5px solid rgba(51, 38, 28, 0.4);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}
.hours-marquee__note { max-width: 36rem; margin-inline: auto; }
.hours-marquee__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

/* --- Map embed frame --- */
.map-frame {
  border: 2px solid var(--ink);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--scoresheet);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 46vw, 480px);
  border: 0;
}

/* --- "Reach the house" definition list (address / phone / hours) --- */
.reach-list { list-style: none; margin: 0; padding: 0; }
.reach-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px dashed rgba(51, 38, 28, 0.25);
}
.reach-list li:last-child { border-bottom: 0; }
.reach-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--felt);
  color: var(--btn-label);
}
/* h3 for correct heading order, styled to the smaller h4 look */
.reach-list h3,
.tori-note h3 {
  font-family: var(--font-body);
  font-variation-settings: normal;
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 1.3;
}
.reach-list h3 { margin-bottom: 2px; }
.reach-list p { margin-bottom: 0; }

/* --- Who-to-call cards --- */
.contact-card { display: flex; flex-direction: column; }
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--felt);
  color: var(--btn-label);
  margin-bottom: var(--space-4);
}
.contact-card .tel-lg {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}
.contact-card__actions {
  margin-top: auto;
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* --- Contact form section --- */
.split--start { align-items: start; }
.contact-form-card { margin-top: 14px; } /* room for the index tab */
.tori-note { margin-top: var(--space-6); }
.tori-note p { margin-bottom: var(--space-4); }
