/*
  PARFAIT de MERRILY 公式HP v1.0
  Shared stylesheet for all language editions (JP/EN/KR/CN)
  Updated: 2026-05-13
*/

:root {
  --bg-primary: #FAF8F3;
  --bg-secondary: #F0EAD8;
  --bg-overlay: #FAF8F3;
  --text-primary: #1F1F1F;
  --text-secondary: #6B6B6B;
  --text-muted: #999999;
  --accent-brown: #8B7355;
  --accent-seasonal: #C8A165;
  --line: rgba(31, 31, 31, 0.12);
  --line-strong: rgba(31, 31, 31, 0.22);
  --white: #FFFFFF;
  --container: 1240px;
  --side: clamp(20px, 4vw, 48px);
  --serif-jp: "Noto Serif JP", "Noto Serif KR", "Noto Serif SC", serif;
  --sans-jp: "Noto Sans JP", "Noto Sans KR", "Noto Sans SC", sans-serif;
  --serif-en: "Cormorant Garamond", serif;
  --sans-en: "Inter", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans-jp);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: var(--bg-secondary);
  color: transparent;
  font-size: 0;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent-brown); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-seasonal);
  outline-offset: 4px;
}

table { width: 100%; border-collapse: collapse; }

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

th {
  color: var(--text-secondary);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   Photo-first Opening Sequence (HIGASHIYA-style)
   White overlay fades out, revealing photo + centered logo + tagline together
   ============================================ */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--bg-overlay);
  opacity: 1;
  transition: opacity 1.8s var(--ease-out);
}

.page-overlay.is-loaded {
  opacity: 0;
}

.page-overlay.is-hidden { display: none; }

.page-overlay.is-active .page-overlay__logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.page-overlay.is-loaded {
  opacity: 0;
}

.page-overlay.is-loaded .page-overlay__logo {
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0.6s;
}

.page-overlay.is-hidden { display: none; }

.hero-media img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 3.5s var(--ease-out), transform 5.5s var(--ease-out);
}

.hero-media.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s var(--ease-out), transform 1.6s var(--ease-out);
}

.hero-content.is-loaded .hero-category { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.hero-content.is-loaded .hero-tagline { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.hero-content.is-loaded .hero-tagline-en { transition-delay: 1.2s; opacity: 1; transform: translateY(0); }

.hero-scroll {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out) 1.8s;
}

.hero-scroll.is-loaded { opacity: 1; }

.site-header {
  transform: translateY(-100%);
  transition: transform 1.2s var(--ease-out) 0.6s;
}

.site-header.is-loaded { transform: translateY(0); }

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .page-overlay { display: none; }
  .hero-media img { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; }
  .hero-scroll { opacity: 1; }
  .site-header { transform: none; }
  .fade-in, .stagger > * { opacity: 1; transform: none; }
}

/* ============================================
   Layout
   ============================================ */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--text-primary);
  color: var(--white);
  padding: 10px 14px;
  font-family: var(--sans-en);
  font-size: 14px;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--side);
}

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section.compact { padding-top: clamp(60px, 8vw, 100px); }

.section-label {
  margin: 0 0 20px;
  color: var(--accent-brown);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--serif-en);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.jp-title {
  margin: 18px 0 0;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  line-height: 1.6;
}

.lead {
  margin: 32px 0 0;
  max-width: 720px;
  color: var(--text-primary);
  font-family: var(--serif-jp);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 2.1;
}

.en {
  color: var(--text-secondary);
  font-family: var(--sans-en);
  font-size: 0.9em;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.price, .number {
  font-family: var(--sans-en);
  font-weight: 500;
}

.meta { color: var(--text-secondary); font-size: 14px; }

.link-line {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  color: var(--accent-brown);
  font-family: var(--sans-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease-out);
}

.link-line:hover { color: var(--text-primary); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--sans-en);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.text-button:hover {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
}

.text-button.primary {
  border-color: var(--accent-brown);
  color: var(--accent-brown);
}

.text-button.primary:hover {
  background: var(--accent-brown);
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
}

.brand {
  font-family: var(--serif-en);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar { display: none; }

.nav-list {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-secondary);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}

.nav-list a:hover { color: var(--text-primary); }

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}

.nav-list a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: end;
}

.lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.lang-switcher a {
  color: var(--text-secondary);
  padding: 2px 0;
  transition: color 0.3s var(--ease-out);
}

.lang-switcher a:hover { color: var(--text-primary); }

.lang-switcher .current {
  color: var(--text-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.lang-switcher .sep { color: var(--text-muted); font-size: 10px; }

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-primary);
  transition: color 0.3s var(--ease-out);
}

.icon-link:hover { color: var(--accent-brown); }
.icon-link svg { width: 18px; height: 18px; }

/* Hero */
.hero { min-height: calc(82vh + 76px); position: relative; }

.hero-media {
  position: relative;
  min-height: 82vh;
  background: var(--text-primary);
  overflow: hidden;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,31,31,0.18) 0%, rgba(31,31,31,0.28) 55%, rgba(31,31,31,0.48) 100%);
  content: "";
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 82vh;
  object-fit: cover;
}

/* Centered tagline layout (HIGASHIYA-style, no logo on hero) */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: var(--white);
  padding: 0 var(--side);
}

/* H1 visually hidden but readable by screen readers and search engines */
.hero-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.hero-tagline {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-category {
  margin: 0 0 18px;
  font-family: var(--sans-en);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

/* Japanese category text uses serif and is not uppercased */
:lang(ja) .hero-category,
:lang(ko) .hero-category,
:lang(zh-Hans) .hero-category {
  font-family: var(--sans-jp);
  text-transform: none;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.24em;
  font-weight: 400;
}

.hero-tagline-en {
  margin: 24px 0 0;
  font-family: var(--sans-en);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 5vw, 56px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  position: relative;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.9);
  animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* Story */
.intro-grid,
.visit-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 104px);
  align-items: start;
}

.story-text p { margin: 0 0 22px; }

.story-figure {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Now Serving */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: 56px;
}

.product { display: grid; gap: 20px; }

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

.product h3 {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.5;
}

.product p { margin: 0; }

.product-meta {
  display: grid;
  gap: 6px;
  padding-top: 6px;
}

/* Seasonal Concept */
.concept-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 80px);
  margin-top: clamp(48px, 7vw, 72px);
  padding-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.concept-group__label {
  margin: 0 0 6px;
  color: var(--accent-brown);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.concept-group__label-jp {
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-family: var(--sans-jp);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.concept-items {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 0 28px;
}

.concept-items dt,
.concept-items dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.5;
}

.concept-items dt {
  color: var(--text-secondary);
  white-space: nowrap;
}

.concept-items dd .en {
  margin-left: 10px;
  font-size: 0.82em;
}

.concept-note {
  margin: clamp(32px, 4vw, 48px) 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 720px) {
  .concept-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.concept-figure {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.concept-figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 720px) {
  .concept-figure { grid-template-columns: 1fr; }
}

/* Menu */
.menu-block { margin-top: 64px; }

.menu-figure { margin: 0 0 36px; }

.menu-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.menu-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.menu-heading h3 {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
}

.menu-heading .en { white-space: nowrap; }
.menu-table .price { white-space: nowrap; }

/* Info list (Visit) */
.info-list {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 32px;
  margin: 40px 0 0;
}

.info-list dt,
.info-list dd {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--text-secondary);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-list dd p { margin: 0 0 6px; }

.info-list .group-head {
  padding-top: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--accent-brown);
  font-family: var(--sans-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.info-list .group-head.first { padding-top: 0; }

.visit-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 40px;
}

.visit-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 720px) {
  .visit-gallery { grid-template-columns: 1fr; }
}

.map-frame {
  width: 100%;
  min-height: 440px;
  border: 1px solid var(--line);
  background: var(--bg-secondary);
}

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

/* FAQ */
.faq-list {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--serif-jp);
  font-size: 17px;
  font-weight: 400;
}

.faq-item p { margin: 0 0 6px; }

/* Press */
.press-figure { margin: 56px 0; }

.press-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.press-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin: 0 0 40px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--serif-en);
  font-size: clamp(38px, 6.5vw, 64px);
  font-weight: 400;
  color: var(--accent-brown);
  margin: 0 0 10px;
  line-height: 1;
}

.stat-label {
  font-family: var(--sans-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 4px;
}

.stat-label-jp {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 720px) {
  .press-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 88px);
  margin-top: 64px;
}

.press-group h3 {
  margin: 0 0 26px;
  font-family: var(--serif-jp);
  font-size: 22px;
  font-weight: 400;
}

.timeline { margin: 0; padding: 0; list-style: none; }

.timeline li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time,
.timeline .source {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-brown);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline p { margin: 0 0 6px; }

/* Contact */
.contact-card {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.contact-card:last-child { border-bottom: 1px solid var(--line); }

.contact-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif-jp);
  font-size: 22px;
  font-weight: 400;
}

.contact-card p { margin: 0 0 10px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 44px;
  color: var(--text-secondary);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: end;
  max-width: 460px;
}

.footer-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  font-family: var(--sans-en);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: color 0.3s var(--ease-out);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-fineprint {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 1023px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    margin: 0 calc(var(--side) * -1);
    padding: 0 var(--side) 12px;
  }
}

@media (max-width: 720px) {
  .intro-grid,
  .visit-grid,
  .contact-grid,
  .press-layout,
  .info-list,
  .faq-item,
  .footer-inner { grid-template-columns: 1fr; }

  .story-figure { grid-template-columns: 1fr; }

  .info-list { gap: 0; }
  .info-list dt { padding-bottom: 6px; border-bottom: 0; }
  .info-list dd { padding-top: 0; }
  .info-list .group-head {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-strong);
  }

  .menu-heading { display: block; }

  th, td { padding: 16px 0; }
  .menu-table th:nth-child(3),
  .menu-table td:nth-child(3) { display: none; }

  .footer-links { justify-content: start; max-width: none; }
}

/* ============================================
   Business Page Specific Styles
   ============================================ */
.business-hero {
  background: var(--bg-primary);
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}

.business-hero__inner {
  max-width: 920px;
}

.business-hero__label {
  margin: 0 0 24px;
  color: var(--accent-brown);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.business-hero h1 {
  margin: 0;
  font-family: var(--serif-en);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.business-hero__jp {
  margin: 20px 0 0;
  font-family: var(--serif-jp);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
}

.business-hero__lead {
  margin: 36px 0 0;
  max-width: 720px;
  color: var(--text-secondary);
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}

.business-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--text-secondary);
  font-family: var(--sans-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out);
}

.business-back-link:hover { color: var(--text-primary); }

.business-back-link::before {
  content: "←";
  font-size: 14px;
}

/* About business block */
.business-about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  margin-top: clamp(40px, 5vw, 64px);
}

.business-info-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 28px;
}

.business-info-list dt,
.business-info-list dd {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.business-info-list dt {
  color: var(--text-secondary);
  font-family: var(--sans-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .business-about { grid-template-columns: 1fr; }
  .business-info-list { grid-template-columns: 1fr; gap: 0; }
  .business-info-list dt { padding-bottom: 6px; border-bottom: 0; }
  .business-info-list dd { padding-top: 0; }
}
