/* ── VISIT PAGE ──────────────────────────────────────────────── */
/* Owns: /visit page layout, hero, sections, map, parking,       */
/*       transit, accessibility, hours card, nearby grid.        */
/* Does NOT own: global theme variables or nav base.             */

.visit-page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
}

/* ── NAV ── */
.vt-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(44,24,16,0.08);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
}

.vt-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.vt-nav-logo svg { height: 32px; width: auto; }

.vt-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.vt-nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.vt-nav-links a:hover { color: var(--mahogany); }
.vt-nav-links a.active { color: var(--brass); font-weight: 500; }

/* ── HERO ── */
.vt-hero {
  background: var(--mahogany);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.vt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(196,149,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vt-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #C4956A 0px,
    #C4956A 48px,
    transparent 48px,
    transparent 64px
  );
  opacity: 0.25;
}

.vt-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.vt-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  display: block;
}

.vt-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.vt-hero-rule {
  width: 60px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.vt-hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(245,239,230,0.65);
  line-height: 1.75;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 40px;
}

.vt-hero-cta {
  display: inline-block;
  padding: 13px 36px;
  background: var(--brass);
  color: var(--mahogany);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.vt-hero-cta:hover {
  background: var(--brass-light);
}

/* ── SECTION SCAFFOLDING ── */
.vt-section {
  padding: 80px 40px;
}

.vt-inner {
  max-width: 900px;
  margin: 0 auto;
}

.vt-section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
  display: block;
}

.vt-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  color: var(--mahogany);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* ── ADDRESS & MAP ── */
.vt-address-section {
  background: var(--cream);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.vt-full-address {
  font-size: 16px;
  color: var(--ink-muted);
  font-weight: 400;
  margin-bottom: 24px;
  margin-top: -16px;
  letter-spacing: 0.02em;
}

.vt-map-wrap {
  border: 2px solid var(--brass);
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.vt-map-wrap iframe {
  display: block;
  width: 100%;
  filter: sepia(0.15) contrast(1.05) saturate(0.9);
}

/* ── WALKING DIRECTIONS ── */
.vt-walk-section {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.vt-walk-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.vt-walk-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.vt-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.vt-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mahogany);
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vt-step-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  padding-top: 5px;
}

.vt-walk-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid rgba(196,149,106,0.3);
  border-radius: 8px;
  flex-shrink: 0;
  min-width: 120px;
}

.vt-walk-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--brass);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── PARKING ── */
.vt-parking-section {
  background: var(--cream);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.vt-parking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.vt-parking-card {
  background: var(--cream-deep);
  border: 1px solid rgba(196,149,106,0.2);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
}

.vt-parking-icon {
  margin-bottom: 16px;
}

.vt-parking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--mahogany);
  margin-bottom: 12px;
  line-height: 1.3;
}

.vt-parking-detail {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.vt-parking-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  border: 1px solid var(--brass);
  border-radius: 3px;
  padding: 3px 8px;
}

.vt-ada-note {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 300;
  font-style: italic;
}

/* ── TRANSIT ── */
.vt-transit-section {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.vt-transit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vt-transit-card {
  background: var(--white);
  border: 1px solid rgba(196,149,106,0.2);
  border-radius: 8px;
  padding: 28px 24px;
}

.vt-transit-icon {
  margin-bottom: 16px;
}

.vt-transit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--mahogany);
  margin-bottom: 14px;
  line-height: 1.3;
}

.vt-transit-detail {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 10px;
}

.vt-transit-note {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.6;
  font-weight: 300;
  margin-top: 10px;
}

.vt-transit-note a {
  color: var(--brass);
  text-decoration: none;
}

.vt-transit-note a:hover {
  text-decoration: underline;
}

/* ── ACCESSIBILITY ── */
.vt-access-section {
  background: var(--cream);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.vt-access-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.vt-access-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vt-access-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.vt-access-item p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
}

/* ── HOURS WAITLIST CARD ── */
.vt-hours-section {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(196,149,106,0.15);
}

.vt-hours-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: var(--cream);
  border: 1px solid rgba(196,149,106,0.25);
  border-radius: 8px;
  padding: 48px 40px;
}

.vt-hours-icon {
  margin-bottom: 20px;
}

.vt-hours-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
  display: block;
}

.vt-hours-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--mahogany);
  margin-bottom: 12px;
}

.vt-hours-sub {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 32px;
}

.vt-hours-cta {
  display: inline-block;
  padding: 13px 32px;
  background: var(--mahogany);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}

.vt-hours-cta:hover {
  background: var(--mahogany-light);
}

/* ── WHAT'S NEARBY ── */
.vt-nearby-section {
  background: var(--cream);
}

.vt-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vt-nearby-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.vt-nearby-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.vt-nearby-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 4px;
  line-height: 1.3;
}

.vt-nearby-dist {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 300;
}

/* ── FOOTER ── */
.vt-footer {
  background: var(--cream-deep);
  border-top: 1px solid rgba(196,149,106,0.15);
  padding: 32px 40px;
}

.vt-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.vt-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--mahogany);
}

.vt-footer-sep {
  color: var(--brass);
}

.vt-footer-address {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 300;
}

.vt-footer-meta {
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vt-parking-grid { grid-template-columns: 1fr; }
  .vt-transit-grid { grid-template-columns: 1fr; }
  .vt-nearby-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .vt-nav { padding: 16px 24px; }
  .vt-nav-links { gap: 20px; }
  .vt-nav-links a { font-size: 12px; }
  .vt-hero { padding: 72px 24px 60px; }
  .vt-section { padding: 56px 24px; }
  .vt-walk-grid { flex-direction: column; }
  .vt-walk-badge { flex-direction: row; min-width: auto; width: fit-content; }
  .vt-nearby-grid { grid-template-columns: 1fr; }
  .vt-hours-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .vt-nav { flex-wrap: wrap; gap: 8px; padding: 14px 20px; }
  .vt-nav-links { display: none; }
  .vt-nav .nav-hamburger { display: flex !important; }
  .vt-hero-title { font-size: 28px; }
  .vt-section-title { font-size: 22px; }
  .vt-map-wrap iframe { min-height: 220px; }
  .vt-footer-brand { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vt-footer-address { display: block; }
  .vt-footer-meta { display: flex; gap: 0; flex-wrap: wrap; }
}