/* =============================================
   Nayutaka — Logo Color Match Redesign Stylesheet
   ============================================= */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.8;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* --- CSS Variables (ロゴの青みを含みつつ、白さを抑えた上質なライトグレー配色) --- */
:root {
  --bg:        #f0f2f5; /* ほんのり青みのある上品なライトグレー */
  --bg2:       #e3e7ed; /* 落ち着いたブルーグレー */
  --text-main: #14213d; /* 深いチャコールネイビー（黒は不使用） */
  --text-sub:  #2d3c59; /* スモーキーなネイビー */
  --sand:      #4a6fa5; /* アクセント：スモーキーなコバルトブルー */
  --sand-lt:   #7a9cc8; /* 淡いスレートブルー */
  --navy:      #1e3d75; /* ロゴのベースとなる青 */
  --navy-lt:   #4b7db8; /* 水彩の薄いブルー */
  --muted:     #6f8299; /* サブテキスト：スレートグレー */
  --rule:      rgba(20,33,61,0.12); /* 薄いインディゴの罫線 */
  --rule-lt:   rgba(20,33,61,0.06);

  --f-serif:   'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  --f-jp:      'Noto Sans JP', sans-serif;
  --f-display: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
}

/* --- Noise Overlay --- */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: multiply;
}

/* --- Image Placeholder --- */
.img-ph {
  background: #d8dee8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f8299;
  font-family: var(--f-serif);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(30,61,117,0.04);
}

/* --- Vertical Label --- */
.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--f-serif);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  transform: rotate(180deg);
  position: absolute;
  top: 3rem;
  left: 1.5rem;
  user-select: none;
}
.vertical-label.light { color: var(--muted); opacity: 0.7; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  transition: background 0.5s, padding 0.4s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2.5rem;
  border-bottom: 1px solid var(--rule-lt);
}

.h-logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 3px;
  filter: brightness(0.98);
  transition: opacity 0.3s;
}
.h-logo:hover img { opacity: 0.75; }

.h-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.h-nav a {
  font-family: var(--f-serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-sub);
  transition: color 0.25s;
}
.h-nav a:hover { color: var(--sand); }

.h-reserve {
  padding: 0.45rem 1.3rem;
  border: 1px solid var(--sand);
  color: var(--sand) !important;
  transition: background 0.3s, color 0.3s !important;
}
.h-reserve:hover {
  background: var(--sand) !important;
  color: var(--bg) !important;
}

.h-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 7px;
  padding: 4px;
  z-index: 300;
}
.h-burger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text-main);
  transition: transform 0.35s, opacity 0.35s;
  transform-origin: center;
}
.h-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.h-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mm-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mm-link {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-style: italic;
  color: var(--text-main);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mm-link:hover { color: var(--sand); }
.mm-reserve {
  font-style: normal !important;
  font-family: var(--f-serif) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.2em;
  padding: 0.6rem 2rem;
  border: 1px solid var(--sand);
  color: var(--sand) !important;
  margin-top: 1rem;
}
.mm-sub {
  font-family: var(--f-serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-top: 2rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35; /* ロゴの水彩感に合わせるため透明度を最適化 */
}
.hero-wash svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left */
.hero-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  border-right: 1px solid var(--rule-lt);
}

.hero-logo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-logo-img {
  width: clamp(200px, 22vw, 300px);
  height: clamp(200px, 22vw, 300px);
  object-fit: cover;
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(30,61,117,0.1),
    0 10px 40px rgba(30,61,117,0.12);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.hero-logo-img:hover {
  transform: scale(1.025);
  box-shadow:
    0 0 0 1px rgba(30,61,117,0.2),
    0 15px 50px rgba(30,61,117,0.22);
}

.hero-logo-caption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-logo-caption .dot { color: var(--sand); }

/* Right */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem 3.5rem;
}

.hero-label {
  font-family: var(--f-serif);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.8rem;
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.hero-headline em  { font-style: italic; color: var(--text-sub); font-size: 0.85em; }
.hero-headline strong { font-weight: 400; color: var(--text-main); }

.hero-line {
  width: 40px;
  height: 1px;
  background: var(--sand);
  margin-bottom: 2rem;
}

.hero-desc {
  font-family: var(--f-jp);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}

.hero-note {
  font-family: var(--f-jp);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-serif);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(69,124,184,0.3);
  width: fit-content;
  transition: gap 0.3s, color 0.3s;
}
.hero-btn svg { width: 40px; opacity: 0.7; transition: opacity 0.3s; }
.hero-btn:hover { gap: 1.6rem; color: var(--sand-lt); }
.hero-btn:hover svg { opacity: 1; }

/* Scroll Hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  color: var(--muted);
}
.hs-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: grow 2.2s ease-in-out infinite;
}
@keyframes grow {
  0%,100% { transform: scaleY(0.6); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}
.hero-scroll span {
  font-family: var(--f-serif);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0.9rem 0;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--f-serif);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-sub);
  white-space: nowrap;
  padding: 0 0.6rem;
}
.marquee-track .mx-dot { color: var(--sand); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   CONCEPT
   ============================================= */
.concept {
  position: relative;
  padding: 7rem 0 0;
  background: var(--bg);
  overflow: hidden;
}

.concept-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem 5rem 5rem;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}

.concept-number {
  font-family: var(--f-display);
  font-size: clamp(6rem, 10vw, 10rem);
  font-style: italic;
  color: rgba(30,61,117,0.06);
  line-height: 1;
  user-select: none;
  margin-top: -1rem;
  flex-shrink: 0;
}

.concept-quote-wrap { padding-top: 0.5rem; }

.concept-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--text-main);
  line-height: 1.55;
}
.concept-quote em { font-style: italic; }

.concept-body-wrap { padding-top: 0.5rem; }

.concept-tag {
  font-family: var(--f-serif);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--sand);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.concept-body-wrap p {
  font-family: var(--f-jp);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 1.2rem;
}

.concept-badge {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(69,124,184,0.4);
  font-family: var(--f-serif);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--sand);
}

/* Photos */
.concept-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-top: 3px;
  background: var(--bg2);
}
.cp-main { height: clamp(280px, 30vw, 420px); }
.cp-side  { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.cp-side > div { height: 100%; }
.concept-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   CUISINE
   ============================================= */
.cuisine {
  background: var(--bg2);
  padding: 7rem 0;
  position: relative;
}

.cuisine-header {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem 4rem;
}

.cuisine-heading {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em;
}
.cuisine-heading span { font-family: var(--f-jp); font-weight: 200; }
.cuisine-heading em   { font-style: italic; color: var(--sand); }

.cuisine-sub {
  font-family: var(--f-serif);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 1rem;
}

/* Cuisine List */
.cuisine-list {
  border-top: 1px solid var(--rule);
}

.cuisine-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
}
.cuisine-item:hover { background: rgba(30,61,117,0.02); }

.ci-img { height: clamp(220px, 22vw, 320px); }
.ci-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-body {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ci-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 5rem;
  color: rgba(30,61,117,0.04);
  line-height: 1;
  user-select: none;
}

.ci-body h3 {
  font-family: var(--f-serif);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.8rem;
}

.ci-body p {
  font-family: var(--f-jp);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 2;
}

/* 偶数アイテムは左右反転 */
.cuisine-item:nth-child(even) .ci-body { order: -1; }

.cuisine-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 5rem 0;
  display: flex;
  justify-content: flex-end;
}

.cuisine-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(69,124,184,0.25);
  transition: gap 0.3s, color 0.3s;
}
.cuisine-ig-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.cuisine-ig-link > svg:last-child { width: 36px; opacity: 0.6; transition: opacity 0.3s; }
.cuisine-ig-link:hover { gap: 1.4rem; color: var(--sand-lt); }
.cuisine-ig-link:hover > svg:last-child { opacity: 1; }

/* =============================================
   GALLERY
   ============================================= */
.gallery {
  background: var(--bg);
  padding: 7rem 0;
  overflow: hidden;
}
.gallery-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem 3rem;
}
.gallery-heading {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-sub {
  font-family: var(--f-jp);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 0.8rem;
}
.gallery-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 0 5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sand) var(--bg2);
  -webkit-overflow-scrolling: touch;
}
.gallery-wrapper::-webkit-scrollbar {
  height: 6px;
}
.gallery-wrapper::-webkit-scrollbar-track {
  background: var(--bg2);
  border-radius: 3px;
}
.gallery-wrapper::-webkit-scrollbar-thumb {
  background: var(--sand);
  border-radius: 3px;
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}
.gallery-item {
  width: clamp(280px, 25vw, 380px);
  height: clamp(200px, 18vw, 280px);
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* =============================================
   INFO
   ============================================= */
.info {
  background: var(--bg2);
  color: var(--text-main);
  padding: 7rem 0 0;
  position: relative;
  overflow: hidden;
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem 5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 4rem;
  align-items: start;
}

.info-inner .vertical-label { color: var(--muted); position: static; writing-mode: vertical-rl; transform: none; }

.info-heading-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
}

.info-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.2;
}

.info-wash {
  margin-top: -1rem;
  width: 200px;
  pointer-events: none;
  opacity: 0.5;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}
.info-card:first-child { border-top: 1px solid var(--rule); }

.ic-label {
  font-family: var(--f-serif);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.ic-rule {
  display: none;
}

.ic-content { display: flex; flex-direction: column; gap: 0.6rem; }

.ic-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.5rem;
  align-items: baseline;
}

.ic-k {
  font-family: var(--f-serif);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.ic-v {
  font-family: var(--f-jp);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.7;
}
.ic-v small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.ic-v a {
  color: var(--navy);
  transition: color 0.2s;
}
.ic-v a:hover { color: var(--navy-lt); }
.ig-text-link {
  text-decoration: underline;
}

/* Reserve Band */
.reserve-band {
  background: var(--bg);
  padding: 4rem 5rem;
  text-align: center;
  border-top: 1px solid var(--rule-lt);
  border-bottom: 1px solid var(--rule-lt);
}
.rb-en {
  font-family: var(--f-serif);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.rb-ja {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}
.rb-sub {
  font-family: var(--f-jp);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-sub);
  margin-bottom: 2rem;
}
.rb-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-serif);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(69,124,184,0.3);
  transition: gap 0.3s, color 0.3s;
}
.rb-btn svg { width: 36px; opacity: 0.6; transition: opacity 0.3s; }
.rb-btn:hover { gap: 1.6rem; color: var(--sand-lt); }
.rb-btn:hover svg { opacity: 1; }

/* =============================================
   ACCESS
   ============================================= */
.access {
  background: var(--bg);
  padding: 0;
  position: relative;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 560px;
  position: relative;
}

.access-text {
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
  border-right: 1px solid var(--rule-lt);
}

.access-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 2.5rem;
}

.access-dl { margin-bottom: 2.5rem; }
.access-dl dt {
  font-family: var(--f-serif);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 1.4rem;
  margin-bottom: 0.35rem;
}
.access-dl dt:first-child { margin-top: 0; }
.access-dl dd {
  font-family: var(--f-jp);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.85;
}
.access-dl dd a {
  color: var(--text-sub);
  transition: color 0.2s;
}
.access-dl dd a:hover { color: var(--sand); }

.access-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(69,124,184,0.25);
  transition: gap 0.3s, color 0.3s;
}
.access-map-link svg { width: 32px; opacity: 0.6; transition: opacity 0.3s; }
.access-map-link:hover { gap: 1.3rem; color: var(--sand-lt); }
.access-map-link:hover svg { opacity: 1; }

.access-map { position: relative; }
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(10%) contrast(90%);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--rule);
  padding: 3.5rem 0 1.8rem;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--rule);
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0.9;
}
.footer-catch {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.3rem 2rem;
  max-width: 500px;
}
.footer-nav a {
  font-family: var(--f-serif);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--sand); }

.footer-info-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
}
.footer-info-row span {
  font-family: var(--f-jp);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.6;
}
.footer-info-row a {
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer-info-row a:hover { color: var(--sand); }
.fi-dot { color: var(--muted) !important; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 5rem 0;
}
.footer-bottom p {
  font-family: var(--f-serif);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* =============================================
   Scroll Reveal
   ============================================= */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-reveal.revealed {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* --- Tablet (≤1024px) --- */
@media (max-width: 1024px) {
  .pc-br { display: none; }
  .site-header {
    padding: 1.2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.5s, padding 0.4s;
  }
  .site-header.scrolled,
  .site-header.menu-open {
    padding: 0.7rem 2rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .h-nav { display: none; }
  .h-burger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: 9rem 2rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--rule-lt);
  }
  .hero-right { padding: 3rem 2.5rem 5rem; }
  .hero-headline {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.4;
  }

  .concept-inner {
    padding: 0 2.5rem 4rem 4rem;
    grid-template-columns: auto 1fr;
  }
  .concept-number { display: none; }
  .concept-quote-wrap { grid-column: 1; }
  .concept-body-wrap  { grid-column: 2; }

  .concept-inner {
    grid-template-columns: 1fr;
  }
  .concept-quote-wrap,
  .concept-body-wrap { grid-column: 1; }

  .concept-photos { grid-template-columns: 1fr 1fr; }
  .cp-main { grid-column: 1 / -1; height: 280px; }
  .cp-side { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cp-side .img-ph { height: 180px; }

  .cuisine-header { padding: 0 2.5rem 3rem; }
  .cuisine-footer  { padding: 2rem 2.5rem 0; }

  .ci-body { padding: 2rem 2.5rem; }

  .info-inner {
    padding: 0 2.5rem 4rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .info-heading-col { flex-direction: row; align-items: center; gap: 1.5rem; }
  .info-wash { display: none; }

  .reserve-band { padding: 3rem 2.5rem; }

  .access-inner { grid-template-columns: 1fr; }
  .access-text { padding: 4rem 2.5rem; border-right: none; border-bottom: 1px solid var(--rule-lt); }
  .access-map { min-height: 320px; position: relative; }
  .access-map iframe { position: absolute; }

  .footer-top { padding: 0 2.5rem 2.5rem; }
  .footer-info-row { padding: 1.5rem 2.5rem; }
  .footer-bottom { padding: 1.2rem 2.5rem 0; }

  .gallery-header { padding: 0 2.5rem 2rem; }
  .gallery-wrapper { padding: 0 2.5rem 1.5rem; }

  .vertical-label { left: 0.5rem; }
}

/* --- Mobile (≤680px) --- */
@media (max-width: 680px) {
  .hero-left { padding: 8rem 1.5rem 2rem; }
  .hero-right { padding: 2.5rem 1.5rem 4rem; }

  .concept { padding: 5rem 0 0; }
  .concept-inner { padding: 0 1.5rem 3rem 1.5rem; }

  .concept-photos { grid-template-columns: 1fr; }
  .cp-main { height: 220px; }
  .cp-side { grid-template-columns: 1fr 1fr; }

  .cuisine { padding: 5rem 0; }
  .cuisine-header { padding: 0 1.5rem 3rem; }

  .cuisine-item {
    grid-template-columns: 1fr;
  }
  .cuisine-item .ci-img { height: 220px; }
  .ci-body { padding: 2rem 1.5rem; }
  .cuisine-item:nth-child(even) .ci-body { order: 0; }

  .cuisine-footer { padding: 2rem 1.5rem 0; justify-content: center; }

  .info { padding: 5rem 0 0; }
  .info-inner { padding: 0 1.5rem 3rem; }
  .ic-row { grid-template-columns: 4rem 1fr; gap: 1rem; }
  .reserve-band { padding: 3rem 1.5rem; }

  .access-text { padding: 4rem 1.5rem; }
  .access-map { min-height: 280px; }

  .footer-top { flex-direction: column; gap: 2rem; padding: 0 1.5rem 2rem; }
  .footer-nav { justify-content: flex-start; }
  .footer-info-row { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
  .fi-dot { display: none; }
  .footer-bottom { padding: 1.2rem 1.5rem 0; }

  .gallery-header { padding: 0 1.5rem 1.5rem; }
  .gallery-wrapper { padding: 0 1.5rem 1rem; }
}
