/* ── PAGE HEADER ── */
.page-header {
  margin-top: 64px;
  background: var(--navy); padding: 4rem 4rem 3.5rem;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; text-align: center; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; justify-content: center; font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.page-header h1 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: #fff; letter-spacing: 0.04em; margin-bottom: 0.8rem; }
.page-header p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.9; letter-spacing: 0.04em; }

/* ── MAP SECTION ── */
.map-section { background: #fff; }
.map-embed {
  width: 100%; height: 480px; border: none; display: block;
  filter: contrast(1.05) saturate(0.9);
}

/* ── INFO SECTION ── */
.info-section { padding: 5rem 4rem; background: var(--ivory); }
.info-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; }

/* Company info table */
.company-info { width: 100%; }
.access-info { width: 100%; }
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.25em; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.section-tag::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); }
h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; color: var(--navy); letter-spacing: 0.04em; margin-bottom: 2rem; }

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid rgba(0,0,0,0.07); }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  width: 38%; padding: 1rem 1rem 1rem 0;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--text-light); text-align: left; vertical-align: top;
}
.info-table td {
  padding: 1rem 0; font-size: 0.88rem; color: var(--text); line-height: 1.8;
}
.info-table td a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.info-table td a:hover { opacity: 0.75; }

/* Access info cards */
.access-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.access-card {
  background: #fff; border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 1.6rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}
.access-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.access-icon {
  width: 48px; height: 48px; border-radius: 4px; flex-shrink: 0;
  background: oklch(96% 0.015 72);
  display: flex; align-items: center; justify-content: center;
}
.access-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.access-body {}
.access-body h4 { font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.access-body p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.85; }
.access-body strong { color: var(--navy); }

/* ── HOURS SECTION ── */
.hours-section { padding: 0 4rem 5rem; background: var(--ivory); }
.hours-inner { max-width: 1100px; margin: 0 auto; }
.hours-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-top: 2rem; }
.hours-day {
  background: #fff; border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.07);
  padding: 1rem 0.5rem; text-align: center;
  transition: border-color 0.3s;
}
.hours-day:hover { border-color: rgba(180,150,90,0.3); }
.hours-day.closed { background: var(--ivory-deep); }
.hours-day.today-col { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.hours-day-name { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 0.5rem; }
.hours-day-name.sun { color: #c0392b; }
.hours-day-name.sat { color: #2980b9; }
.hours-status { font-family: var(--serif); font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.hours-status.closed-txt { color: var(--text-light); font-weight: 400; font-size: 0.75rem; }
.hours-time { font-size: 0.68rem; color: var(--text-light); margin-top: 0.3rem; line-height: 1.5; }
.hours-note { margin-top: 1.2rem; font-size: 0.78rem; color: var(--text-light); line-height: 1.8; display: flex; gap: 0.5rem; align-items: flex-start; }
.hours-note::before { content: '※'; flex-shrink: 0; color: var(--gold); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy); padding: 4rem;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-strip-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-strip h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.cta-strip p { font-size: 0.85rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-gold { padding: 0.9rem 2rem; background: var(--gold); color: #fff; border-radius: 2px; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.1em; text-decoration: none; transition: background 0.2s, transform 0.2s; white-space: nowrap; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-w { padding: 0.9rem 2rem; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); border-radius: 2px; font-size: 0.88rem; letter-spacing: 0.1em; text-decoration: none; transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
.btn-outline-w:hover { border-color: #fff; color: #fff; }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .page-header { padding: 3rem 1.5rem 2.5rem; }
  .info-section { padding: 3.5rem 1.5rem; }
  .info-inner { gap: 3rem; }
  .hours-section { padding: 0 1.5rem 3.5rem; }
  .hours-grid { grid-template-columns: repeat(4, 1fr); }
  .cta-strip { padding: 3rem 1.5rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .map-embed { height: 320px; }
}
