@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500;600&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

:root {
  --bg: #faf9f6;
  --bg-alt: #f1efe8;
  --text-dark: #3a2e22;
  --text-mid: #5a4d3d;
  --text-light: #7a6c5a;
  --text-faint: #9c8b70;
  --accent: #9c7b52;
  --accent-dark: #6b4226;
  --border: #eadfc7;
  --border-strong: #d8c8a8;
  --alert: #a85751;
  --serif: 'Shippori Mincho', serif;
  --sans: 'Zen Kaku Gothic New', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dark);
  font-family: var(--sans);
}

a { color: inherit; }

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

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-nav .logo img {
  height: 36px;
  width: auto;
}

.site-nav .nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-links a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: var(--text-mid);
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
}

.site-nav .nav-links a.active {
  color: var(--text-dark);
  border-bottom-color: var(--accent-dark);
}

.site-nav .has-dropdown {
  position: relative;
}

.site-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  margin: 0;
  padding: 8px 0;
  list-style: none;
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(58,46,34,0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.site-nav .has-dropdown:hover .dropdown,
.site-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav .dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border-bottom: none;
  color: var(--text-mid);
}

.site-nav .dropdown a:hover,
.site-nav .dropdown a.active {
  color: var(--text-dark);
  background: var(--bg-alt);
}

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .site-nav { padding: 0 20px; gap: 12px; }
  .site-nav .logo img { height: 30px; }
  .site-nav .nav-links { gap: 14px; }
  .site-nav .nav-links a { font-size: 11.5px; letter-spacing: 0.08em; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--text-dark);
  color: var(--bg-alt);
  padding: 64px 48px 32px;
}

.site-footer .footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer .footer-logo img {
  height: 40px;
  filter: invert(1) brightness(1.6);
  margin-bottom: 16px;
}

.site-footer .footer-tagline {
  font-size: 13px;
  color: #c9bda6;
  line-height: 1.8;
}

.site-footer .footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  font-size: 13px;
}

.site-footer .footer-links a { text-decoration: none; color: #e6ddc9; }

.site-footer .footer-hours {
  font-size: 13px;
  line-height: 2;
  color: #c9bda6;
}

.site-footer .footer-bottom {
  max-width: 1120px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #8f8067;
}

/* ---------- Hero (Top page) ---------- */

.hero {
  position: relative;
  height: 82vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  animation: hero-kenburns 22s ease-in-out infinite alternate;
}

@keyframes hero-kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 0; right: 0; bottom: 64px;
  text-align: center;
  color: #fff;
}

.hero-caption .title {
  font-family: var(--serif);
  font-size: 56px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-caption .subtitle {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* ---------- Generic section helpers ---------- */

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-alt { background: var(--bg-alt); }

.about {
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 64px;
  display: flex;
  gap: 80px;
  align-items: center;
}

.about img {
  width: 440px;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.about h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 28px;
}

.about p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 900px) {
  .about { flex-direction: column; padding: 80px 32px; }
  .about img { width: 100%; height: 360px; }
}

.story-teaser {
  padding: 120px 64px;
  text-align: center;
}

.story-teaser h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 24px;
}

.story-teaser p {
  font-size: 15px;
  line-height: 2.1;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 36px;
}

.story-teaser a {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 4px;
  text-decoration: none;
}

.menu-highlight {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 64px;
}

.menu-highlight .heading {
  text-align: center;
  margin-bottom: 72px;
}

.menu-highlight h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.menu-grid a { text-decoration: none; color: inherit; display: block; }

.menu-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.menu-grid .card-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--text-dark);
  margin: 24px 0 8px;
}

.menu-grid .card-desc {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 700px) {
  .menu-grid { grid-template-columns: 1fr; }
}

.gallery {
  padding: 120px 0;
}

.gallery-block + .gallery-block {
  margin-top: 100px;
}

.gallery .heading {
  text-align: center;
  margin-bottom: 56px;
}

.gallery h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px;
}

.gallery .ig-link {
  font-size: 13px;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
}

.access-summary {
  max-width: 1120px;
  margin: 0 auto;
  padding: 120px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.access-summary h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 20px;
}

.access-summary .hours {
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-mid);
}

.access-summary .btn {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--text-dark);
  padding: 16px 36px;
  text-decoration: none;
}

/* ---------- Page header (Menu / Story / Access) ---------- */

.page-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 64px 40px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}

.header-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 2px;
}

/* ---------- Menu page ---------- */

.menu-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 64px 40px;
}

.set-legend {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 28px 32px;
}

.set-legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.set-legend-label {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.set-legend-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .set-legend {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 20px 12px;
  }
}

.menu-section h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 20px;
  margin: 0 0 40px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.menu-item-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 1;
}

.menu-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.price-sets {
  display: grid;
  grid-template-columns: repeat(4, minmax(52px, auto));
  gap: 4px 16px;
  flex-shrink: 0;
  margin-left: auto;
}

.price-set {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-set .set-label {
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 3px;
}

.price-set .set-price {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--text-dark);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .menu-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .price-sets {
    width: 100%;
    margin-left: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 6px;
  }

  .price-set .set-price {
    font-size: 12px;
  }
}

.menu-item .name { font-size: 16px; color: var(--text-dark); margin-bottom: 6px; }
.menu-item .desc { font-size: 13px; color: #8a7c68; }
.menu-item .price {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--accent-dark);
  white-space: nowrap;
  padding-left: 24px;
}

.menu-note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 24px;
}

/* ---------- Story page ---------- */

.story-hero {
  position: relative;
  height: 56vh;
  min-height: 420px;
  overflow: hidden;
}

.story-hero img { width: 100%; height: 100%; object-fit: cover; }

.story-hero .overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.28);
}

.story-hero .caption {
  position: absolute; left: 0; right: 0; bottom: 56px; text-align: center; color: #fff;
}

.story-hero .eyebrow { color: #fff; margin-bottom: 14px; }

.story-hero .title {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: 0.05em;
}

.story-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 120px 64px;
}

.story-body p {
  font-size: 16px;
  line-height: 2.3;
  color: #4a3d2e;
  margin: 0 0 32px;
}

.story-body p:last-child { margin-bottom: 0; }

.story-values {
  padding: 100px 64px;
}

.story-values .grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.story-values .value { text-align: center; }

.story-values .icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border: 1px solid var(--accent-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.story-values h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--text-dark);
  margin: 0 0 12px;
}

.story-values p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-light);
  margin: 0;
}

.story-photos {
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.story-photos img { width: 100%; height: 380px; object-fit: cover; }

@media (max-width: 700px) {
  .story-values .grid { grid-template-columns: 1fr; }
  .story-photos { grid-template-columns: 1fr; padding: 80px 32px; }
}

/* ---------- Access page ---------- */

.access-detail {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 64px 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.access-detail .map {
  width: 100%;
  height: 460px;
  border: 0;
  background: var(--bg-alt);
}

.access-detail .block { margin-bottom: 48px; }

.access-detail .label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.access-detail .address {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.access-detail .station {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

.access-detail .hours-table {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 2.2;
}

.access-detail .hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.access-detail .hours-row.closed {
  border-bottom: none;
  color: var(--alert);
}

.access-detail .contact {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 2;
}

.access-detail .ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dark);
  padding-bottom: 4px;
}

@media (max-width: 900px) {
  .access-detail { grid-template-columns: 1fr; padding: 60px 32px 100px; }
}
