:root {
  --bg: #fff8f1;
  --surface: #ffffff;
  --surface-alt: #fff2dd;
  --surface-strong: #f6ead6;
  --text: #2d251f;
  --muted: #6e6258;
  --line: #ead8c3;
  --accent: #bd4030;
  --accent-dark: #8f2e22;
  --accent-soft: #f4d0a8;
  --gold: #e2b24c;
  --green: #2f6a56;
  --shadow: 0 18px 40px rgba(86, 55, 31, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(226, 178, 76, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(189, 64, 48, 0.12), transparent 28%),
    linear-gradient(180deg, #fff9f3 0%, #fff5ea 36%, #fffaf5 100%);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 241, 0.86);
  border-bottom: 1px solid rgba(234, 216, 195, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #db7652 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 22px rgba(189, 64, 48, 0.25);
}

.brand-text {
  display: grid;
  gap: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.brand-text strong {
  color: var(--text);
  font-size: 0.98rem;
}

.header-nav {
  display: none;
  gap: 18px;
  font-size: 0.93rem;
}

.header-nav a {
  text-decoration: none;
  color: var(--muted);
}

.hero-section {
  padding: 28px 0 18px;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.hero-copy,
.hero-visual,
.audience-card,
.menu-card,
.info-card,
.detail-card,
.access-card,
.cta-panel,
.menu-board,
.gallery-item {
  background: var(--surface);
  border: 1px solid rgba(234, 216, 195, 0.9);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ul,
dl,
figure,
table {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.24;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-lead {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--text);
}

.hero-subcopy {
  margin-bottom: 20px;
  color: var(--muted);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.badge-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-actions,
.cta-actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #dd6d49 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(189, 64, 48, 0.24);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.button-tertiary {
  background: var(--surface-alt);
  color: var(--accent-dark);
  border: 1px solid rgba(189, 64, 48, 0.18);
}

.button-block {
  width: 100%;
}

.hero-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-visual figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 18px 0;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 28px 0 28px;
  background: linear-gradient(180deg, rgba(244, 208, 168, 0.2), rgba(244, 208, 168, 0.05));
  z-index: -1;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.reason-layout {
  display: grid;
  gap: 16px;
}

.reason-cards {
  display: grid;
  gap: 14px;
}

.info-card,
.audience-card,
.detail-card,
.access-card {
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.info-card p,
.audience-card ul,
.detail-card p,
.access-card dd {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-card {
  background: linear-gradient(180deg, #fff9f1 0%, #ffffff 100%);
}

.audience-card ul {
  padding-left: 20px;
}

.menu-grid {
  display: grid;
  gap: 16px;
}

.menu-card {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.menu-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-card-body {
  padding: 18px 18px 20px;
}

.menu-name {
  margin-bottom: 4px;
  font-weight: 800;
}

.menu-desc {
  margin-bottom: 8px;
  color: var(--muted);
}

.menu-price {
  margin-bottom: 0;
  font-weight: 800;
  color: var(--accent);
}

.menu-board {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.menu-board-visual {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 0;
}

.menu-board-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

caption {
  padding-bottom: 12px;
  font-weight: 700;
  text-align: left;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  font-size: 0.93rem;
}

td {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-item-wide img {
  aspect-ratio: 4 / 3;
}

.gallery-item figcaption {
  padding: 12px 14px 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.details-grid {
  display: grid;
  gap: 14px;
}

.detail-card p a {
  color: var(--accent-dark);
}

.access-layout {
  display: grid;
  gap: 16px;
}

.map-frame {
  overflow: hidden;
  min-height: 320px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 216, 195, 0.9);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.access-list {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 0;
  list-style: none;
}

.access-term {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.access-desc {
  display: block;
  color: var(--muted);
}

.cta-section {
  padding-bottom: 100px;
}

.cta-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(226, 178, 76, 0.15) 0%, rgba(255, 255, 255, 1) 40%),
    linear-gradient(180deg, #fffefb 0%, #ffffff 100%);
}

.sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  background: rgba(45, 37, 31, 0.92);
  border-radius: 20px;
  box-shadow: 0 20px 36px rgba(30, 24, 21, 0.28);
}

.sticky-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

@media (min-width: 640px) {
  .hero-actions,
  .cta-actions {
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: flex-start;
  }

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

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

  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (min-width: 860px) {
  .header-nav {
    display: flex;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-grid,
  .reason-layout,
  .menu-board,
  .access-layout,
  .cta-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .hero-copy {
    padding: 38px 34px;
  }

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

  .gallery-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-item-wide img {
    aspect-ratio: 4 / 5;
  }

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

  .cta-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: center;
  }
}

@media (min-width: 1100px) {
  .sticky-cta {
    left: auto;
    right: 28px;
    bottom: 28px;
    width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
