:root {
  --blue: #20258d;
  --sky: #6fc8ee;
  --yellow: #f6c52f;
  --orange: #f18700;
  --pink: #e23c71;
  --cream: #fffbed;
  --paper: #f7f2e5;
  --ink: #1b1b1f;
  --muted: #66645d;
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

#ambient-canvas {
  position: fixed;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.24;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 251, 237, 0.88);
  border-bottom: 3px solid var(--blue);
  backdrop-filter: blur(14px);
}

main,
.site-footer {
  position: relative;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 950;
}

.brand img {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 28px);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: 112px clamp(18px, 6vw, 78px) 60px;
  overflow: hidden;
  background: rgba(238, 248, 251, 0.86);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 251, 237, 0.96), rgba(255, 251, 237, 0.78) 42%, rgba(255, 251, 237, 0.28)),
    linear-gradient(0deg, rgba(32, 37, 141, 0.16), transparent 34%);
  pointer-events: none;
}

.hero-copy,
.hero-photo {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(100%, 680px);
  margin-bottom: 28px;
  border: 3px solid var(--blue);
  border-radius: 14px;
  box-shadow: 7px 7px 0 var(--blue);
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  line-height: 1.25;
  font-weight: 950;
}

.hero-copy p:not(.hero-lead),
.section-heading p,
.access-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--blue);
  border-radius: 18px;
  box-shadow: 9px 9px 0 var(--blue);
}

.hero-actions,
.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stacked-actions {
  align-items: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 3px solid var(--blue);
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--blue);
}

.button.primary {
  color: white;
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: var(--yellow);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 3px solid var(--blue);
  background: white;
}

.info-strip article {
  padding: 20px clamp(16px, 3vw, 34px);
  border-right: 3px solid var(--blue);
}

.info-strip article:last-child {
  border-right: 0;
}

.info-strip span,
.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-strip strong {
  color: var(--blue);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 6vw, 78px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.45rem;
}

.about-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(111, 200, 238, 0.24) 0 15%, transparent 16%),
    rgba(247, 242, 229, 0.9);
}

.about-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid {
  grid-template-columns: minmax(0, 1fr);
}

.about-grid article,
.food-card,
.schedule-notes,
.social-card,
.price-table-wrap,
.map-panel {
  border: 3px solid var(--blue);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--blue);
}

.about-grid article {
  padding: 24px;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.85;
}

.visual-section {
  padding: 0 clamp(18px, 6vw, 78px) clamp(72px, 9vw, 118px);
  background: var(--paper);
}

.visual-section img,
.gallery-grid img {
  width: 100%;
  border: 3px solid var(--blue);
  border-radius: 16px;
  box-shadow: 8px 8px 0 var(--blue);
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  background: white;
}

.price-section {
  background: rgba(237, 248, 251, 0.9);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.price-table-wrap {
  padding: 22px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 3px solid var(--blue);
  background: white;
  color: var(--blue);
  font-weight: 950;
}

.price-table th,
.price-table td {
  padding: 16px 12px;
  border: 3px solid var(--blue);
  text-align: center;
}

.price-table thead th:nth-child(1) {
  color: white;
  background: var(--orange);
}

.price-table thead th:nth-child(2) {
  color: white;
  background: #2d86bd;
}

.price-table thead th:nth-child(3) {
  color: white;
  background: var(--pink);
}

.price-table tbody th {
  background: #fffbd0;
}

.note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.image-link {
  display: block;
  width: 100%;
}

.image-link img,
.schedule-grid img,
.menu-images img {
  width: 100%;
  border: 3px solid var(--blue);
  border-radius: 14px;
  background: white;
  box-shadow: 6px 6px 0 var(--blue);
}

.food-section {
  background: rgba(255, 251, 237, 0.92);
}

.food-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) repeat(2, minmax(260px, 1fr));
  gap: 16px;
}

.food-card {
  padding: 22px;
}

.beer-card {
  padding: 0;
  overflow: hidden;
}

.beer-card div {
  padding: 22px;
}

.food-card a {
  display: block;
  padding: 0;
  border: 3px solid var(--blue);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--blue);
  overflow: hidden;
}

.food-card img {
  width: 100%;
}

.menu-list {
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(32, 37, 141, 0.28);
}

.menu-list strong {
  color: var(--pink);
  white-space: nowrap;
}

.menu-images {
  display: grid;
  grid-template-columns: minmax(280px, 1fr);
  gap: 18px;
  margin-top: 28px;
  align-items: start;
}

.menu-images a {
  display: block;
  padding: 0;
  border: 3px solid var(--blue);
  border-radius: 14px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--blue);
  overflow: hidden;
}

.schedule-section {
  background: rgba(248, 240, 220, 0.9);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: start;
}

.schedule-notes {
  padding: 24px;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--blue);
}

.access-section h1,
.access-section .eyebrow {
  color: white;
}

.access-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-email img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.access-section .button.primary {
  border-color: white;
  color: var(--blue);
  background: white;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.35);
}

.access-section .button.secondary {
  border-color: white;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.35);
}

.social-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px;
  text-align: center;
}

.social-card img {
  width: 150px;
  border-radius: 20px;
}

.social-card strong {
  color: var(--blue);
  font-size: 1.3rem;
}

.social-card span {
  color: var(--muted);
}

.map-panel {
  padding: 10px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: 2px solid rgba(32, 37, 141, 0.48);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 251, 237, 0.68);
  font-size: 1.55rem;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: 32px clamp(18px, 6vw, 78px);
  background: white;
}

.site-footer img {
  width: min(720px, 100%);
  margin: 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.82rem;
  }

  .hero,
  .about-grid,
  .gallery-grid,
  .price-layout,
  .food-grid,
  .schedule-grid,
  .access-section {
    grid-template-columns: 1fr;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(255, 251, 237, 0.96), rgba(255, 251, 237, 0.58));
  }

  .hero-photo img {
    aspect-ratio: 16 / 9;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand span {
    max-width: 120px;
    line-height: 1.1;
  }

  .brand img {
    width: 36px;
  }

  .nav {
    gap: 8px 12px;
    font-size: 0.78rem;
  }

  .hero {
    padding: 128px 16px 46px;
  }

  .hero-lead {
    font-size: 1.7rem;
  }

  .button {
    width: 100%;
  }

  .info-strip,
  .menu-images {
    grid-template-columns: 1fr;
  }

  .info-strip article {
    border-right: 0;
    border-bottom: 3px solid var(--blue);
  }

  .info-strip article:last-child {
    border-bottom: 0;
  }

  .section,
  .visual-section {
    padding-inline: 16px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 8px;
    font-size: 0.9rem;
  }

  .map-panel iframe {
    height: 320px;
  }
}
