/* Shared — local HP demo sites (Phase 0.5) */
:root {
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 30;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: min(92svh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.88) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.75rem;
}
.brand { line-height: 1.15; letter-spacing: 0.06em; }
.lead { margin-top: 0.85rem; font-size: clamp(1rem, 2.6vw, 1.15rem); max-width: 22em; opacity: 0.9; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid transparent;
  border-radius: 2px;
}
.hours-strip {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 0.88rem;
  opacity: 0.92;
}
.hours-strip strong { font-weight: 600; }

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  background: rgba(20, 17, 15, 0.96);
  color: #f3ebe0;
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.sticky-bar .info {
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.35;
}
.sticky-bar .info strong { display: block; font-size: 0.82rem; }
.sticky-bar .call {
  display: grid;
  place-items: center;
  padding: 0 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  min-width: 5.5rem;
}
@media (min-width: 768px) {
  .sticky-bar { display: none; }
}
body { padding-bottom: 4.5rem; }
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

section { padding: 3.5rem 0; }
.wrap { width: min(720px, calc(100% - 2rem)); margin: 0 auto; }
.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
h2 { font-size: clamp(1.65rem, 4.5vw, 2.1rem); letter-spacing: 0.04em; margin-bottom: 1rem; }
.section-lead { margin-bottom: 1.5rem; max-width: 28em; opacity: 0.85; }

.feature-card {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .feature-card { grid-template-columns: 1fr 1.1fr; align-items: center; }
}
.feature-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border-radius: 2px;
}
.feature-block { border-left: 3px solid currentColor; padding-left: 1rem; }
.feature-name { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.04em; }
.feature-price { margin-top: 0.3rem; font-size: 1.35rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.feature-note { margin-top: 0.75rem; font-size: 0.92rem; opacity: 0.85; }

.menu-list {
  list-style: none;
  border-top: 1px solid;
  border-top-color: color-mix(in srgb, currentColor 15%, transparent);
}
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid;
  border-bottom-color: color-mix(in srgb, currentColor 15%, transparent);
}
.menu-list .price { font-weight: 700; font-variant-numeric: tabular-nums; }

.about p { max-width: 32em; opacity: 0.85; }
.about p + p { margin-top: 0.85rem; }

.access-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .access-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.map-frame {
  aspect-ratio: 4 / 3;
  border: 1px solid;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.88rem;
}
.map-frame strong { display: block; font-size: 1.1rem; margin-bottom: 0.4rem; letter-spacing: 0.06em; }
.addr dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
}
footer {
  border-top: 1px solid;
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.85;
}
footer .foot-brand { font-size: 1.05rem; letter-spacing: 0.08em; margin-bottom: 0.45rem; }
footer .demo-note { margin-top: 0.85rem; letter-spacing: 0.08em; font-size: 0.78rem; }

.hub { max-width: 720px; margin: 0 auto; padding: 2rem 1rem 3rem; font-family: system-ui, sans-serif; }
.hub h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.hub p { color: #444; margin-bottom: 1.5rem; }
.hub-list { list-style: none; display: grid; gap: 0.75rem; }
.hub-list a {
  display: block;
  padding: 1rem 1.1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-weight: 600;
}
.hub-list span { display: block; font-weight: 400; font-size: 0.88rem; color: #666; margin-top: 0.25rem; }
