/* ============================================================
   VISIT US – Plan your trip to the café (replaces Testimonials)
   Loaded after style.css / modern.css / header-premium.css
   ============================================================ */

.page-visit main.visit-main {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 0 3.5rem;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.visit-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(2.35rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 5.5vw, 3.75rem);
  overflow: hidden;
  border-radius: 0 0 clamp(20px, 4vw, 32px) clamp(20px, 4vw, 32px);
  background:
    radial-gradient(ellipse 80% 60% at 80% 15%, rgba(212, 184, 122, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 10% 90%, rgba(107, 66, 38, 0.35) 0%, transparent 48%),
    linear-gradient(165deg, #1a0d07 0%, #0f0704 45%, #080302 100%);
  border: 1px solid rgba(184, 151, 93, 0.2);
  border-top: none;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 252, 248, 0.05);
}

.visit-hero__glow {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(212, 184, 122, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(255, 252, 248, 0.04) 0%, transparent 30%);
  pointer-events: none;
}

.visit-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
}

.visit-hero__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.38rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 230, 210, 0.95);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(212, 184, 122, 0.35);
  border-radius: 9999px;
}

.visit-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 5.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(252, 249, 244, 0.98);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.32);
}

.visit-hero__title em {
  display: block;
  margin-top: 0.2em;
  font-style: italic;
  background: linear-gradient(118deg, #faf6ef 0%, var(--caramel-400) 45%, #c9a227 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visit-hero__lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: rgba(232, 218, 188, 0.9);
}

.visit-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
}

.visit-hero__actions .btn-primary {
  background: linear-gradient(135deg, var(--caramel-400) 0%, var(--caramel-600) 100%);
  color: var(--brand-900);
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}

.visit-hero__actions .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* ─── Pillars ───────────────────────────────────────────────── */
.visit-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: 0 0.75rem;
}

@media (min-width: 700px) {
  .visit-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.visit-pillar {
  position: relative;
  padding: 1.35rem 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.visit-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(30, 14, 5, 0.1);
  border-color: var(--caramel-200);
}

.visit-pillar__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(184, 151, 93, 0.2), rgba(184, 151, 93, 0.08));
  color: var(--brand-800);
  font-size: 1.35rem;
  line-height: 1;
}

.visit-pillar h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-800);
}

.visit-pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-mid);
}

/* ─── Story band ─────────────────────────────────────────────── */
.visit-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(255, 254, 251, 0.95) 0%, rgba(250, 246, 238, 0.98) 100%);
  border: 1px solid rgba(184, 151, 93, 0.25);
  border-radius: 1.25rem;
  box-shadow: 0 16px 48px rgba(42, 21, 8, 0.06);
}

@media (min-width: 800px) {
  .visit-story {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}

.visit-story__text .visit-story__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel-600);
  margin-bottom: 0.5rem;
}

.visit-story__text h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--brand-800);
  line-height: 1.2;
}

.visit-story__text p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.visit-story__text p:last-child {
  margin-bottom: 0;
}

.visit-story__visual {
  position: relative;
  min-height: 220px;
  border-radius: 1rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(212, 184, 122, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(107, 66, 38, 0.25) 0%, transparent 50%),
    linear-gradient(160deg, #3d2314 0%, #1c0e08 100%);
  border: 1px solid rgba(184, 151, 93, 0.3);
}

.visit-story__visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.visit-story__visual-inner span {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(252, 249, 244, 0.95);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.visit-story__visual-inner small {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 218, 188, 0.75);
}

/* ─── Hours + map ──────────────────────────────────────────── */
.visit-find {
  margin-bottom: 2.5rem;
  padding: 0 0.75rem;
}

.visit-find__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .visit-find__grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

.visit-hours-card {
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.visit-hours-card h2 {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brand-800);
}

.visit-hours-card .hours-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.visit-hours-card .hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.visit-hours-card .hours-list li:last-child {
  border-bottom: none;
}

.visit-hours-card .hours-list .weekend span:first-child {
  font-weight: 600;
  color: var(--brand-800);
}

.visit-hours-card__address {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-mid);
}

.visit-hours-card__address strong {
  color: var(--brand-800);
}

.visit-hours-card__phone a {
  color: var(--caramel-600);
  font-weight: 600;
  text-decoration: none;
}

.visit-hours-card__phone a:hover {
  text-decoration: underline;
}

.visit-map-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.visit-map-card iframe {
  display: block;
  width: 100%;
  height: min(280px, 42vw);
  border: none;
}

.visit-map-card__footer {
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

/* ─── Bottom CTA ─────────────────────────────────────────────── */
.visit-cta {
  margin: 0 0.75rem;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  text-align: center;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(184, 151, 93, 0.14) 0%, rgba(107, 66, 38, 0.12) 100%);
  border: 1px solid rgba(184, 151, 93, 0.28);
}

.visit-cta h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--brand-800);
}

.visit-cta p {
  margin: 0 0 1.25rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-mid);
}

.visit-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .visit-pillar:hover,
  .visit-hero__actions .btn-primary:hover {
    transform: none;
  }
}
