:root {
  --bg: #ffffff;
  --paper: #fffaf2;
  --ink: #2d2926;
  --muted: #746c65;
  --line: #eadfd2;
  --accent: #9e2f3b;
  --accent-dark: #6f1f2b;
  --gold: #b98a4a;
  --shadow: 0 18px 40px rgba(45, 41, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(234, 223, 210, 0.85);
  backdrop-filter: blur(14px);
}

.site-logo {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  display: grid;
  min-height: 78svh;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 27, 24, 0.78), rgba(34, 27, 24, 0.5) 48%, rgba(34, 27, 24, 0.24)),
    url("images/shop_07_shop.jpg") center / cover no-repeat;
  color: #fff;
}

.hero::after {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: clamp(18px, 5vw, 56px);
  width: min(34vw, 360px);
  height: min(28vw, 260px);
  content: "";
  background:
    url("images/shop_05_pizza.jpg") center / cover no-repeat;
  border: 6px solid rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  padding: clamp(72px, 12vw, 148px) 0;
}

.eyebrow,
.section-kicker,
.shop-genre,
.panel-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 10px 0 16px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  font-weight: 800;
}

.hero-text {
  max-width: 610px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-link,
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-link:hover,
.map-link:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
}

.section-about,
.section-access {
  background: var(--paper);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 36px));
}

.section h2 {
  margin: 8px 0 18px;
  color: var(--accent-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
}

.section p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p {
  margin: 0;
}

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

.shop-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(45, 41, 38, 0.08);
}

.shop-card img,
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #f3ece2;
}

.photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

.shop-body {
  padding: 22px;
}

.shop-body h3 {
  margin: 5px 0 12px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.45;
}

.shop-description {
  margin: 0 0 18px;
  font-size: 0.94rem;
}

.shop-details {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.shop-details div {
  display: grid;
  grid-template-columns: 5.5em minmax(0, 1fr);
  gap: 10px;
}

.shop-details dt {
  color: var(--accent-dark);
  font-weight: 800;
}

.shop-details dd {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.shop-details a {
  color: var(--muted);
  text-decoration-color: rgba(158, 47, 59, 0.35);
  text-underline-offset: 3px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: center;
}

.info-panel {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(45, 41, 38, 0.07);
}

.panel-main {
  margin: 8px 0 18px;
  color: var(--ink) !important;
  font-size: 1.18rem;
  font-weight: 800;
}

.panel-note {
  margin: 8px 0 0;
}

.section-contact {
  background: #fff;
}

.site-footer {
  padding: 28px 18px;
  background: var(--accent-dark);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero::after {
    display: none;
  }

  .section-heading,
  .split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    justify-content: flex-start;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 70svh;
    background:
      linear-gradient(180deg, rgba(34, 27, 24, 0.78), rgba(34, 27, 24, 0.42)),
      url("images/shop_07_shop.jpg") center / cover no-repeat;
  }

  .hero-inner {
    padding: 74px 0 88px;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-body {
    padding: 20px;
  }

  .shop-details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
