:root {
  --green: #0f3f27;
  --white: #fffdf8;
  --pale: #f4f7f1;
  --line: rgba(15,63,39,.18);
  --muted: rgba(15,63,39,.66);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(15,63,39,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,63,39,.045) 1px, transparent 1px),
    var(--white);
  background-size: 48px 48px;
  color: var(--green);
  font-family: 'Space Grotesk', 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  padding: 0 clamp(16px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,253,248,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
}
.logo img { width: 104px; }
.nav {
  display: none;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.menu-toggle {
  display: block;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform .24s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 68px 0 auto;
  z-index: 19;
  padding: 18px 14px 24px;
  background: rgba(255,253,248,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 34px rgba(15,63,39,.1);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: .9;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.mobile-menu a::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--green);
  opacity: .55;
}
.mobile-menu .insta-link {
  margin-top: 14px;
  min-height: 40px;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
}
.mobile-menu .insta-link::after { display: none; }
.hero {
  padding: 34px clamp(16px, 5vw, 54px) 46px;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .44fr .56fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 390px; }
.label {
  margin: 0 0 9px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
h1, h2, h3 {
  margin: 0;
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: .01em;
}
h1 {
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: .88;
}
.hero-copy p.body {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-mini {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.hero-mini a {
  min-height: 58px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-mini span {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-mini strong {
  font-size: 12px;
  line-height: 1.2;
}
.btn {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.btn.fill { background: var(--green); color: var(--white); }
.btn.ghost { border-color: rgba(15,63,39,.28); background: rgba(255,253,248,.72); }
.hero-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pale);
}
.hero-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 62% 54%;
}
.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--pale);
}
.ticker span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker span:last-child { border-right: 0; }
.section {
  position: relative;
  padding: 58px clamp(16px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
}
.brand-wash::before,
.page-hero::before {
  content: 'MARKET MADE';
  position: absolute;
  right: clamp(14px, 5vw, 54px);
  top: 10px;
  z-index: 0;
  color: rgba(15,63,39,.045);
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 13vw, 190px);
  line-height: .8;
  letter-spacing: .01em;
  pointer-events: none;
}
.brand-wash > *,
.page-hero > * { position: relative; z-index: 1; }
.inner { width: min(1080px, 100%); margin: 0 auto; }
.two {
  display: grid;
  grid-template-columns: .36fr .64fr;
  gap: clamp(28px, 6vw, 76px);
}
.section-title {
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: .9;
}
.bodytext {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}
.bodytext p { margin: 0 0 16px; }
.more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.more::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--green);
}
.features {
  background: var(--green);
  color: var(--white);
}
.features .label, .features .bodytext { color: rgba(255,255,255,.72); }
.feature-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}
.feature {
  min-height: 150px;
  padding: 18px;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.feature h3 { font-size: 32px; line-height: .9; }
.feature p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.55;
}
.menu-section { background: var(--pale); }
.menu-head {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 28px;
  align-items: end;
}
.menu-head .bodytext { max-width: 460px; justify-self: end; }
.menu-tabs {
  margin-bottom: 14px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.menu-tabs span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.menu-card { background: var(--white); }
.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  object-position: center top;
}
.menu-copy {
  min-height: 118px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.jp {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}
.menu-copy h3 {
  font-size: 26px;
  line-height: .95;
}
.price {
  padding-top: 9px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price strong {
  color: var(--green);
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0;
}
.board {
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.scene-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.scene-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--pale);
}
.scene-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.scene-grid .wide {
  grid-column: span 2;
}
.scene-grid .wide img {
  aspect-ratio: 4 / 3;
}
.shop-panels {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.shop-panel {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shop-panel h3 { font-size: 42px; line-height: .9; }
.news-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.news {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
footer {
  padding: 34px 18px;
  background: var(--green);
  color: rgba(255,255,255,.72);
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.8;
}
.foot-logo {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: 32px;
}
@media (max-width: 900px) {
  .header {
    height: 58px;
    padding: 0 14px;
  }
  .logo img { width: 82px; }
  .header-actions { gap: 10px; }
  .mobile-menu { inset: 58px 0 auto; }
  .hero { padding: 10px 14px 22px; }
  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 14px;
  }
  .hero-copy { width: calc(100vw - 28px); max-width: calc(100vw - 28px); align-self: flex-start; }
  .hero-photo img {
    height: auto;
    aspect-ratio: 1.52 / 1;
    object-position: 62% 54%;
  }
  h1 {
    font-size: clamp(30px, 8.7vw, 36px);
    max-width: 100%;
    line-height: .9;
  }
  .hero-copy p.body {
    max-width: calc(100vw - 28px);
    margin-top: 12px;
    font-size: 13px;
    overflow-wrap: break-word;
    line-height: 1.55;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions .ghost { grid-column: 1 / -1; }
  .btn { width: 100%; min-height: 40px; }
  .hero-mini {
    margin-top: 14px;
    grid-template-columns: 1fr;
  }
  .hero-mini a { min-height: 44px; }
  .ticker { grid-template-columns: 1fr 1fr; }
  .ticker span { min-height: 38px; font-size: 7px; letter-spacing: .1em; overflow: hidden; }
  .schedule-strip {
    grid-template-columns: 1fr;
  }
  .schedule-strip a {
    min-height: 58px;
    padding: 12px 14px;
    grid-template-columns: 86px 1fr auto;
    align-items: center;
  }
  .schedule-strip strong { font-size: 22px; }
  .section { padding: 46px 14px; }
  .two, .menu-head { grid-template-columns: 1fr; gap: 18px; }
  .section-title { font-size: clamp(40px, 12vw, 56px); }
  .bodytext { font-size: 14px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature { min-height: 136px; padding: 14px; }
  .feature h3 { font-size: 28px; }
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .menu-tabs span { white-space: nowrap; }
  .menu-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 10px;
    border: 0;
    background: transparent;
  }
  .menu-card {
    flex: 0 0 74vw;
    scroll-snap-align: start;
    border-right: 1px solid var(--line);
  }
  .board {
    margin-left: -14px;
    margin-right: -14px;
    border-left: 0;
    border-right: 0;
  }
  .scene-grid {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 10px;
  }
  .scene-grid figure {
    flex: 0 0 66vw;
    scroll-snap-align: start;
  }
  .scene-grid .wide {
    flex-basis: 82vw;
  }
  .shop-panels { grid-template-columns: 1fr; }
  .shop-panel { min-height: 130px; }
  .news { grid-template-columns: 1fr; gap: 4px; }
}


.page-hero {
  padding: 48px clamp(16px, 5vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.page-hero .inner {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(54px, 8vw, 106px);
  line-height: .86;
}
.page-hero .bodytext {
  max-width: 520px;
  justify-self: end;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.link-card {
  min-height: 170px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.link-card h3 {
  font-size: 38px;
  line-height: .9;
}
.link-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.compact-section { padding-top: 42px; padding-bottom: 42px; }
.location-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
.location-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.location-row strong {
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: .9;
}
.location-row span {
  color: var(--muted);
  font-size: 14px;
}
.location-row a {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-photo img { object-position: 50% 48%; }

@media (max-width: 900px) {
  .page-hero { padding: 34px 14px; }
  .page-hero .inner { grid-template-columns: 1fr; gap: 14px; }
  .page-hero h1 { font-size: clamp(44px, 14vw, 64px); }
  .page-hero .bodytext { justify-self: start; }
  .link-grid { grid-template-columns: 1fr; }
  .link-card { min-height: 124px; padding: 16px 14px; }
  .link-card h3 { font-size: 34px; }
  .location-row { grid-template-columns: 1fr; gap: 6px; }
}


.schedule-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--green);
  color: var(--white);
}
.schedule-strip a {
  min-height: 72px;
  padding: 13px clamp(14px, 3vw, 28px);
  border-right: 1px solid rgba(255,255,255,.2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.schedule-strip a:last-child { border-right: 0; }
.schedule-strip span,
.schedule-strip em {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  font-style: normal;
}
.schedule-strip strong {
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 400;
  line-height: .95;
}

.location-prompt {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: .38fr .62fr;
  gap: clamp(18px, 5vw, 52px);
  align-items: end;
}
.location-prompt .bodytext {
  max-width: 560px;
  justify-self: end;
}
.quick-market-grid {
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.quick-market-card {
  min-height: 172px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(244,247,241,.62);
}
.quick-market-card:first-child {
  background: var(--green);
  color: var(--white);
}
.quick-market-card span,
.quick-market-card em,
.quick-market-card small {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--muted);
}
.quick-market-card:first-child span,
.quick-market-card:first-child em,
.quick-market-card:first-child small { color: rgba(255,255,255,.72); }
.quick-market-card strong {
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: .86;
}
.market-note {
  margin: 0 0 28px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.schedule-layout {
  display: grid;
  grid-template-columns: .52fr .48fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
}
.schedule-copy {
  padding: clamp(20px, 4vw, 34px);
  background: rgba(244,247,241,.72);
  border: 1px solid var(--line);
}
.schedule-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pale);
}
.schedule-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.schedule-list { margin-top: 28px; }
.schedule-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.schedule-row b {
  color: var(--green);
}
.schedule-cta { margin-top: 28px; }

@media (max-width: 900px) {
  .schedule-strip { grid-template-columns: 1fr; }
  .schedule-strip a {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 72px 1fr 34px;
  }

  .location-prompt { grid-template-columns: 1fr; gap: 12px; }
  .location-prompt .bodytext { justify-self: start; }
  .quick-market-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 10px;
    border: 0;
  }
  .quick-market-card {
    flex: 0 0 76vw;
    min-height: 148px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
  }
  .quick-market-card strong { font-size: 44px; }
  .market-note { margin-bottom: 22px; }
  .schedule-layout { grid-template-columns: 1fr; }
  .schedule-photo img { min-height: 230px; }
}


.menu-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 26px);
  align-items: start;
}
.menu-board-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--green);
}
.menu-board-card img {
  width: 100%;
  height: auto;
}
.menu-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.7;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .menu-section { padding-left: 10px; padding-right: 10px; }
  .menu-board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .menu-board-card { border-radius: 0; }
  .menu-note { font-size: 9px; }
}


.page-photo-section {
  padding-top: 24px;
  padding-bottom: 46px;
  background: var(--white);
}
.page-top-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--pale);
}
.page-top-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}
.inquiry-layout,
.prep-layout {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.inquiry-list {
  border-top: 1px solid var(--line);
}
.inquiry-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.inquiry-row strong {
  font-family: Impact, 'Arial Narrow', 'Bebas Neue', sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: .9;
}
.inquiry-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.contact-band {
  background: var(--green);
  color: var(--white);
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.contact-band .label,
.contact-band .bodytext { color: rgba(255,255,255,.72); }
.contact-band .btn {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
}
.prep-card {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  background: rgba(244,247,241,.72);
}
.prep-card .btn { margin-top: 18px; }
.prep-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.prep-points span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
}
.prep-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.prep-actions .btn { margin-top: 0; }
.micro-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .link-grid { grid-template-columns: 1fr; }
  .page-photo-section { padding: 14px 14px 34px; }
  .inquiry-layout,
  .prep-layout,
  .contact-card { grid-template-columns: 1fr; }
  .inquiry-row { grid-template-columns: 1fr; gap: 6px; }
  .prep-points { grid-template-columns: 1fr; }
  .prep-actions .btn { width: 100%; }
  .contact-button { width: 100%; }
}


.event-booking-photo img {
  object-position: 50% 48%;
}


.menu-board-stack {
  display: grid;
  gap: clamp(12px, 2.4vw, 24px);
}
.wide-board img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.menu-detail-section {
  background: var(--white);
}
.menu-detail-head {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
}
.menu-detail-head .bodytext {
  max-width: 460px;
  justify-self: end;
}
.menu-detail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.menu-detail-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--green);
}
.menu-detail-strip img {
  width: 100%;
  aspect-ratio: 1414 / 2000;
  object-fit: cover;
}

@media (max-width: 900px) {
  .menu-board-stack {
    margin-left: -10px;
    margin-right: -10px;
  }
  .menu-detail-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .menu-detail-head .bodytext {
    justify-self: start;
  }
  .menu-detail-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 10px;
  }
  .menu-detail-strip figure {
    flex: 0 0 76vw;
    scroll-snap-align: start;
  }
}
