/* ───────────── YUKITO SUSHI · shared stylesheet ───────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --bg-warm: #110e0b;
  --cream: #f5efe6;
  --gold: #c9a84c;
  --gold-bright: #e8c65a;
  --red: #c23b22;
  --red-deep: #8b1a1a;
  --white: #fafaf7;
  --gray: #888;
  --font-display: 'Syne', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .jp-char {
  font-family: var(--font-serif);
  font-size: 5rem; font-weight: 900;
  color: var(--gold);
  animation: pulse 1.2s ease-in-out infinite alternate;
}
@keyframes pulse { from { opacity: .3; transform: scale(.95); } to { opacity: 1; transform: scale(1.05); } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,10,10,.95), transparent);
  transition: background .4s;
}
nav.scrolled { background: rgba(10,10,10,.97); backdrop-filter: blur(12px); }
.nav-logo a { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; filter: brightness(1.1); }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width .35s cubic-bezier(.25,.46,.45,.94);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active::after { background: var(--gold); }

.btn-order-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: .65rem 1.6rem;
  border-radius: 2px;
  font-family: var(--font-display) !important;
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  border: 1.5px solid var(--red);
  text-decoration: none;
}
.btn-order-nav:hover {
  background: transparent;
  color: var(--red) !important;
}
.btn-order-nav::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 200;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream);
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(10,10,10,.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--cream); text-decoration: none;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  transition: color .3s; padding: .5rem 0;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn-order-mobile {
  background: var(--red); color: var(--white);
  padding: 1rem 3rem; border-radius: 2px;
  border: 2px solid var(--red); margin-top: 1rem; transition: all .3s;
}
.mobile-menu .btn-order-mobile:hover { background: transparent; color: var(--red); }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,.78) 0%, rgba(10,10,10,.55) 40%, rgba(10,10,10,.92) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(194,59,34,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(201,168,76,.12) 0%, transparent 55%),
    url('img/hero-bg.jpg') center/cover no-repeat,
    var(--bg-warm);
  background-blend-mode: normal, normal, normal, normal, normal;
  z-index: 0;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-deco-line { position: absolute; z-index: 1; background: var(--gold); opacity: .1; }
.hero-deco-line.h1 { top: 20%; left: 5%; width: 120px; height: 1px; }
.hero-deco-line.h2 { bottom: 25%; right: 8%; width: 80px; height: 1px; }
.hero-deco-line.v1 { top: 15%; right: 12%; width: 1px; height: 100px; }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem;
  margin-top: auto; padding-top: 12vh;
  animation: fadeUp 1.2s ease-out .5s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900; line-height: .95;
  margin-bottom: .5rem;
}
.hero-title .accent { color: var(--gold); }
.hero-japanese {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400; color: var(--gold);
  opacity: .6; margin-bottom: 2rem;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 300;
  color: rgba(245,239,230,.6);
  max-width: 460px; margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 1rem 2.8rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: 2px solid var(--red); cursor: pointer;
  transition: all .35s; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
}
.btn-primary:hover { background: transparent; color: var(--red); }
.btn-secondary {
  background: transparent; color: var(--gold);
  padding: 1rem 2.8rem;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid var(--gold); cursor: pointer;
  transition: all .35s; text-decoration: none;
}
.btn-secondary:hover { background: var(--gold); color: var(--bg); }

.scroll-indicator {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  margin-top: auto; padding-bottom: 2.5rem;
}
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gray);
}
.scroll-line { width: 1px; height: 40px; background: var(--gray); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -100%; } 50% { top: 100%; } 100% { top: 100%; } }

/* ── MARQUEE ── */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  overflow: hidden; background: rgba(201,168,76,.03);
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--font-serif);
  font-size: .85rem; font-weight: 400;
  color: var(--gold); opacity: .55;
  white-space: nowrap; letter-spacing: .05em;
}
.marquee-track .dot { opacity: .25; }

/* ── SECTIONS COMMON ── */
section { padding: 7rem 3rem; }
.section-label {
  font-family: var(--font-display);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 1.5rem; max-width: 600px;
}

/* ── PAGE HEADER (used on inner pages) ── */
.page-header {
  padding: 12rem 3rem 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(194,59,34,.08) 0%, transparent 55%),
    var(--bg-warm);
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.page-header .section-label { justify-content: center; }
.page-header .section-label::before { display: none; }
.page-header .section-label::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  margin: 0 auto 1rem;
}
.page-header h1 .accent { color: var(--gold); }
.page-header .jp {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  color: var(--gold); opacity: .55;
  letter-spacing: .15em;
}
.page-header .lead {
  font-size: .95rem; font-weight: 300;
  color: rgba(245,239,230,.6);
  max-width: 600px; margin: 1.5rem auto 0;
  line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-text p {
  color: rgba(245,239,230,.7);
  font-size: .95rem; line-height: 1.85;
  margin-bottom: 1.5rem; font-weight: 300;
}
.about-visual { position: relative; display: flex; justify-content: center; }
.about-img-wrapper {
  width: 380px; height: 500px;
  background: linear-gradient(135deg, var(--red-deep), #1a0e08);
  border: 1px solid rgba(201,168,76,.15);
  overflow: hidden; position: relative;
}
.about-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .9; transition: transform .6s;
}
.about-img-wrapper:hover img { transform: scale(1.05); }
.about-img-accent {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 1px solid var(--gold); opacity: .25;
}
.about-img-japanese {
  position: absolute; bottom: -10px; left: -25px;
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 900;
  color: var(--gold); opacity: .1;
  writing-mode: vertical-rl;
}

/* ── SPECIALTIES ── */
.specialties-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(194,59,34,.06) 0%, transparent 50%),
    var(--bg-warm);
}
.specialties-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.specialties-header .section-label { justify-content: center; }
.specialties-header .section-label::before { display: none; }
.specialties-header .section-label::after { content: ''; width: 30px; height: 1px; background: var(--gold); }
.specialties-header .section-title { margin: 0 auto 1rem; }
.specialties-header p { color: var(--gray); font-size: .9rem; line-height: 1.7; font-weight: 300; }

.spec-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1100px; margin: 0 auto;
}
.spec-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,168,76,.08);
  text-align: center; transition: all .4s;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.spec-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05), transparent);
  opacity: 0; transition: opacity .4s; z-index: 1; pointer-events: none;
}
.spec-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.spec-card:hover::before { opacity: 1; }
.spec-card:hover .spec-img img { transform: scale(1.1); }
.spec-img { width: 100%; height: 180px; overflow: hidden; position: relative; }
.spec-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease; filter: brightness(.85) saturate(1.1);
}
.spec-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.7) 0%, transparent 50%);
}
.spec-card-body { padding: 1.5rem 1.5rem 2rem; position: relative; }
.spec-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .7rem; color: var(--cream); }
.spec-card p { font-size: .8rem; line-height: 1.6; color: var(--gray); font-weight: 300; }

/* ── VALUES GRID (About page) ── */
.spec-grid.values-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}
@media (max-width: 900px) {
  .spec-grid.values-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 500px; }
  .spec-grid.values-grid .spec-card { padding: .5rem 0; }
  .spec-grid.values-grid .spec-card h3 { font-size: 1.15rem !important; }
  .spec-grid.values-grid .spec-card p { font-size: .9rem; line-height: 1.7; }
  .spec-grid.values-grid .spec-card-body { padding: 1.5rem 1.5rem 1.8rem !important; }
}

/* ── EXPERIENCE BANNER ── */
.experience-banner {
  text-align: center; padding: 6rem 3rem;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 60%),
    var(--bg);
  border-top: 1px solid rgba(201,168,76,.06);
  border-bottom: 1px solid rgba(201,168,76,.06);
}
.experience-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 400; line-height: 1.5;
  max-width: 800px; margin: 0 auto;
  font-style: italic; color: rgba(245,239,230,.75);
}
.experience-quote .gold { color: var(--gold); font-style: normal; font-weight: 700; }

/* ── CTA ORDER ── */
.cta-order {
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto; text-align: left;
}
.cta-order-text { max-width: 500px; }
.cta-order-text p {
  color: var(--gray); font-size: .95rem; line-height: 1.7; font-weight: 300;
  margin-bottom: 2rem;
}
.btn-order-big {
  background: var(--red); color: var(--white);
  padding: 1.2rem 3.5rem;
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border: 2px solid var(--red); cursor: pointer;
  transition: all .35s; text-decoration: none;
  display: inline-flex; align-items: center; gap: .8rem;
  position: relative; overflow: hidden;
}
.btn-order-big::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%); transition: transform .4s;
}
.btn-order-big:hover::after { transform: translateX(0); }
.btn-order-big:hover { box-shadow: 0 0 40px rgba(194,59,34,.3); }

/* ── INFO / CONTACT ── */
.info-section { background: var(--bg-warm); }
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; max-width: 1100px; margin: 0 auto; text-align: center;
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.info-block p, .info-block a {
  color: rgba(245,239,230,.7);
  font-size: .9rem; line-height: 2; font-weight: 300;
  text-decoration: none; transition: color .3s;
}
.info-block a:hover { color: var(--gold); }
.info-block .day-row {
  display: flex; justify-content: space-between;
  max-width: 260px; margin: 0 auto;
  padding: .2rem 0;
  border-bottom: 1px solid rgba(201,168,76,.06);
}
.info-block .day-row .day { color: rgba(245,239,230,.4); }
.info-block .day-row .time { color: rgba(245,239,230,.75); }
.info-block .closed { color: var(--red); opacity: .8; }

/* ── SOCIAL ── */
.social-strip {
  display: flex; justify-content: center; gap: 2rem;
  padding: 3rem;
  border-top: 1px solid rgba(201,168,76,.06);
}
.social-strip a {
  color: var(--gray); transition: color .3s;
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none;
}
.social-strip a:hover { color: var(--gold); }
.social-strip svg { width: 18px; height: 18px; }

/* ── FOOTER ── */
footer {
  text-align: center; padding: 2rem 3rem;
  border-top: 1px solid rgba(201,168,76,.06);
}
footer p { font-size: .7rem; color: var(--gray); letter-spacing: .08em; line-height: 1.8; }
footer .nowrap, footer a.nowrap { white-space: nowrap; }
footer .powered { font-size: .6rem; color: rgba(136,136,136,.4); margin-top: .5rem; letter-spacing: .12em; }
footer .powered a { color: rgba(201,168,76,.45); text-decoration: none; transition: color .3s; }
footer .powered a:hover { color: var(--gold); }
.phone-nowrap { white-space: nowrap; }

/* ── MENU PAGE ── */
.menu-page { padding: 0 3rem 6rem; max-width: 100%; overflow-x: hidden; }
.menu-tabs {
  position: sticky; top: 70px; z-index: 100;
  display: flex; gap: 0; flex-wrap: wrap;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: .8rem 3rem;
  margin: 0 -3rem 4rem;
  justify-content: center;
}
.menu-tabs a {
  color: rgba(245,239,230,.55);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .55rem 1.1rem;
  border: 1px solid transparent;
  transition: all .3s;
  white-space: nowrap;
}
.menu-tabs a:hover { color: var(--gold); }
.menu-tabs a.active {
  color: var(--gold);
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.06);
}

.menu-category {
  max-width: 1000px; margin: 0 auto 6rem;
  scroll-margin-top: 140px;
}
.menu-category-head { text-align: center; margin-bottom: 3rem; }
.menu-category-head .num {
  font-family: var(--font-display);
  font-size: .7rem; letter-spacing: .35em;
  color: var(--gold); opacity: .7; margin-bottom: .6rem;
}
.menu-category-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2;
  color: var(--cream);
}
.menu-category-head .divider {
  width: 60px; height: 1px;
  background: var(--gold); opacity: .4;
  margin: 1.2rem auto;
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 2.5rem 0 1.8rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
}

.menu-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(201,168,76,.08);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .code {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold); opacity: .8;
}
.menu-item .body { }
.menu-item .body .name {
  font-family: var(--font-serif);
  font-size: 1.02rem; font-weight: 600;
  color: var(--cream); line-height: 1.4;
  margin-bottom: .25rem;
}
.menu-item .body .desc {
  font-size: .82rem; font-weight: 300;
  color: rgba(245,239,230,.55);
  line-height: 1.55;
}
.menu-item .price {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700;
  color: var(--gold); white-space: nowrap;
}
.menu-item .price.rupture {
  color: var(--red); opacity: .8;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
}

.menu-note {
  text-align: center;
  font-size: .85rem; font-weight: 300;
  color: rgba(245,239,230,.55);
  line-height: 1.7;
  max-width: 700px; margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  border-left: 1px solid rgba(201,168,76,.2);
  border-right: 1px solid rgba(201,168,76,.2);
  font-style: italic;
}

/* ── MENU GRIDS ── */
.menu-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
}
.menu-grid-3 { grid-template-columns: repeat(3, 1fr); }
.menu-grid-6 { grid-template-columns: repeat(6, 1fr); gap: 1rem; }

/* ── MENU ITEM (default = list/horizontal mode, kept for fallback) ── */
.menu-item-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed rgba(201,168,76,.1);
  align-items: start;
}
.menu-item-block.with-image:not(.in-grid) {
  grid-template-columns: 120px 1fr;
}
.menu-item-block.with-image:not(.in-grid) .thumb {
  width: 120px; height: 90px;
}
.menu-item-block:last-child { border-bottom: none; }

/* ── MENU ITEM IN-GRID (vertical card: image on top, info below) ── */
.menu-item-block.in-grid {
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 3px;
  padding: 0;
  background: rgba(255,255,255,.015);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.menu-item-block.in-grid:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-2px);
}
.menu-item-block.in-grid .thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
}
.menu-item-block.in-grid .info { padding: .85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }

/* Compact thumb defaults */
.menu-item-block .thumb {
  width: 100%; height: 90px;
  overflow: hidden; position: relative;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(201,168,76,.08);
  transition: all .35s;
}
.menu-item-block .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.92) saturate(1.05);
  transition: transform .5s, filter .35s;
}
.menu-item-block:hover .thumb img {
  transform: scale(1.06);
  filter: brightness(1.02) saturate(1.15);
}
.menu-item-block .info { min-width: 0; }
.menu-item-block .head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: .6rem; margin-bottom: .4rem;
  flex-wrap: wrap;
}
.menu-item-block .head .name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 700;
  color: var(--cream); letter-spacing: .01em;
  flex: 1; min-width: 0;
}
.menu-item-block.in-grid .head .name { font-size: .9rem; }
.menu-item-block .head .name .code {
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  margin-right: .55rem; opacity: .9;
}
.menu-item-block .head .price {
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  color: var(--gold); white-space: nowrap;
}
.menu-item-block.in-grid .head .price { font-size: .85rem; }
.menu-item-block .head .price.rupture {
  color: var(--red); opacity: .8;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
}
.menu-item-block .desc {
  font-size: .8rem; font-weight: 300;
  color: rgba(245,239,230,.6);
  line-height: 1.55;
}
.menu-item-block.in-grid .desc { font-size: .75rem; line-height: 1.5; }
.menu-item-block .desc li {
  list-style: none; padding-left: 1rem; position: relative;
  margin-bottom: .15rem;
}
.menu-item-block .desc li::before {
  content: '·'; position: absolute; left: 0; top: -2px;
  color: var(--gold);
}

/* For grid-6 (compact sub-plates), even smaller */
.menu-grid-6 .menu-item-block.in-grid .info { padding: .65rem .75rem .85rem; }
.menu-grid-6 .menu-item-block.in-grid .head .name { font-size: .82rem; }
.menu-grid-6 .menu-item-block.in-grid .head .price { font-size: .78rem; }
.menu-grid-6 .menu-item-block.in-grid .desc { font-size: .72rem; }
.menu-grid-6 .menu-item-block.in-grid .head .name .code {
  display: block; margin-bottom: .15rem;
  font-size: .62rem;
}

/* ── COMPOSITE CARD (e.g. BOX YUKITO GOURMET) ── */
.menu-composite-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: stretch;
  margin: 2rem 0 3rem;
  border: 1px solid rgba(201,168,76,.18);
  background: linear-gradient(135deg, rgba(201,168,76,.04), rgba(194,59,34,.03));
  padding: 2rem;
}
.menu-composite-card .composite-img {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.15);
  min-height: 240px;
}
.menu-composite-card .composite-img img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.menu-composite-card .composite-info { display: flex; flex-direction: column; gap: 1rem; }
.menu-composite-card .composite-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--cream); line-height: 1.15;
}
.menu-composite-card .composite-desc {
  font-size: .9rem; font-weight: 300;
  color: rgba(245,239,230,.65); line-height: 1.7;
}
.menu-composite-card .composite-contents {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem 1rem;
  list-style: none; padding: 1rem 0;
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.menu-composite-card .composite-contents li {
  font-family: var(--font-serif);
  font-size: .95rem; font-weight: 500;
  color: var(--cream); padding-left: 1rem; position: relative;
}
.menu-composite-card .composite-contents li::before {
  content: '◆'; position: absolute; left: 0; top: 1px;
  color: var(--gold); font-size: .55rem;
}
.menu-composite-card .composite-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: .5rem;
}
.menu-composite-card .tier {
  text-align: center;
  padding: 1.1rem .8rem;
  border: 1px solid rgba(201,168,76,.2);
  background: rgba(10,10,10,.4);
  transition: all .3s;
}
.menu-composite-card .tier:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
}
.menu-composite-card .tier-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800;
  color: var(--gold); letter-spacing: .02em;
}
.menu-composite-card .tier-label {
  font-family: var(--font-display);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,239,230,.55); margin-top: .4rem;
}

/* ── CONTACT page ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1200px; margin: 0 auto;
  align-items: stretch;
}
.contact-info {
  display: flex; flex-direction: column; gap: 2.5rem;
}
.contact-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,168,76,.1);
  padding: 2rem;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.contact-card .big {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  color: var(--cream); line-height: 1.4; margin-bottom: .4rem;
}
.contact-card a { color: var(--cream); text-decoration: none; transition: color .3s; }
.contact-card a:hover { color: var(--gold); }
.contact-card p { color: rgba(245,239,230,.65); font-size: .9rem; line-height: 1.75; font-weight: 300; }
.contact-map {
  border: 1px solid rgba(201,168,76,.15);
  min-height: 480px; position: relative;
  background: var(--bg-warm);
}
.contact-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.5);
  position: absolute; inset: 0;
}

.delivery-zones { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.delivery-zones .chip {
  font-family: var(--font-display);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  padding: .4rem .9rem;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 2px;
  background: rgba(201,168,76,.05);
}

/* ── ABOUT page extras ── */
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 900px; margin: 4rem auto 0;
  padding-top: 3rem; border-top: 1px solid rgba(201,168,76,.1);
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: .4rem;
}
.stat .label {
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,239,230,.55);
}

/* ── ANIMATIONS ON SCROLL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .page-header { padding: 9rem 1.5rem 3rem; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-img-wrapper { width: 100%; max-width: 350px; height: 400px; }
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .spec-img { height: 140px; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-order { flex-direction: column; text-align: center; gap: 2rem; }
  .social-strip { flex-wrap: wrap; gap: 1.2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-map { min-height: 320px; }
  .menu-page { padding: 0 1.5rem 4rem; }
  .menu-tabs { padding: .6rem 1rem; margin: 0 -1.5rem 2.5rem; top: 60px; }
  .menu-tabs a { font-size: .62rem; padding: .4rem .8rem; }
  .menu-item { grid-template-columns: 55px 1fr auto; gap: 1rem; }
  .menu-item-block.with-image:not(.in-grid) { grid-template-columns: 90px 1fr; gap: .9rem; }
  .menu-item-block.with-image:not(.in-grid) .thumb { width: 90px; height: 70px; }
  .menu-grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .menu-grid-6 { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .menu-composite-card { grid-template-columns: 1fr; gap: 1.2rem; padding: 1.2rem; }
  .menu-composite-card .composite-img { min-height: 180px; }
  .menu-composite-card .composite-contents { grid-template-columns: repeat(2, 1fr); }
  .menu-composite-card .composite-tiers { grid-template-columns: repeat(3, 1fr); gap: .4rem; }
  .menu-composite-card .tier { padding: .7rem .2rem; }
  .menu-composite-card .tier-price { font-size: .95rem; letter-spacing: 0; }
  .menu-composite-card .tier-label { font-size: .55rem; letter-spacing: .12em; margin-top: .25rem; }
  .about-stats { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .spec-grid { grid-template-columns: 1fr; }
  .spec-img { height: 200px; }
  .hero-btns { flex-direction: column; align-items: center; }
}
