/* ================================================
   21 SUSHI HOUSE — Main Stylesheet
   Premium Japanese Restaurant · Calimesa & Yucaipa, CA
   Redesigned: Light & Red theme
   ================================================ */

/* === Design Tokens === */
:root {
  --red:        #C71728;
  --red-dark:   #a01120;
  --red-light:  #e8354a;
  --red-faint:  rgba(199,23,40,0.06);
  --red-faint2: rgba(199,23,40,0.12);

  --black:      #0e0404;
  --dark:       #1a0808;
  --dark-2:     #2a1212;
  --dark-3:     #3a1818;

  --bg:         #ffffff;
  --bg-alt:     #fdf5f5;
  --bg-warm:    #faf0ee;

  --text:       #1a1a1a;
  --text-mid:   #555555;
  --text-light: #888888;
  --text-faint: #bbbbbb;

  --white:      #ffffff;
  --cream:      #FFF8F0;
  --gold:       #b8860b;
  --gold-light: #d4a017;

  --border:       rgba(0,0,0,0.08);
  --border-dark:  rgba(255,255,255,0.08);
  --border-red:   rgba(199,23,40,0.18);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;

  --transition: 0.3s ease;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
  --shadow:     0 4px 28px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.14);
  --shadow-red: 0 6px 24px rgba(199,23,40,0.30);

  --max-width:       1200px;
  --section-padding: 90px 20px;
}

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

/* === Typography === */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }

/* === Utilities === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 0.6rem;
}
.section-title-light {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.section-divider {
  width: 52px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary       { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline       { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.10); transform: translateY(-2px); }
.btn-outline-red   { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-gold          { background: var(--gold); color: var(--white); }
.btn-gold:hover    { background: var(--gold-light); transform: translateY(-2px); }

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
/* backdrop-filter on mobile creates a new containing block that breaks
   the position:fixed nav overlay — only apply it on desktop */
@media (min-width: 821px) {
  .navbar.scrolled { backdrop-filter: blur(10px); }
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.navbar.scrolled .nav-burger span { background: var(--text); }
/* X icon is always dark — menu overlay is white, so white spans would be invisible */
.nav-burger.open span { background: var(--text); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 1000;
    backdrop-filter: blur(12px);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; letter-spacing: 3px; color: var(--text); }
  .nav-links a:hover { color: var(--red); }
  .nav-cta { padding: 14px 32px !important; font-size: 0.95rem !important; }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1553621042-f6e147245754?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  filter: brightness(0.28);
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,4,4,0.3) 0%, rgba(14,4,4,0.05) 50%, rgba(14,4,4,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 0 20px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 8px 22px;
  margin-bottom: 28px;
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px; margin: 0 auto 38px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
}
.hero-scroll-bar {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%  { opacity: 0; transform: translateY(-8px); }
  50% { opacity: 1; }
  100%{ opacity: 0; transform: translateY(8px); }
}

/* ================================================
   FEATURES BAR
   ================================================ */
.features-bar {
  background: var(--red);
  padding: 14px 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.features-bar::-webkit-scrollbar { display: none; }
.features-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: nowrap;
  padding: 0 24px; min-width: max-content;
}
.feature-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.71rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--white);
  white-space: nowrap;
}
.feature-icon { font-size: 1.05rem; }

/* ================================================
   ABOUT
   ================================================ */
.about-section {
  padding: var(--section-padding);
  background: var(--bg);
}
.about-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 520px;
  object-fit: cover; border-radius: 8px;
  background: var(--bg-alt);
}
.about-img-border {
  position: absolute; bottom: -22px; right: -22px;
  width: 210px; height: 210px;
  border: 3px solid var(--red);
  border-radius: 8px; z-index: -1;
}
.about-content { padding: 10px 0; }
.about-content h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--text); margin-bottom: 20px; line-height: 1.2; }
.about-content p  { color: var(--text-mid); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; }
.about-signature  { font-family: var(--font-heading); font-style: italic; font-size: 1.9rem; color: var(--red); margin: 24px 0 32px; }
.about-stats {
  display: flex; gap: 36px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.stat-num   { display: block; font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); margin-top: 5px; white-space: nowrap; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img  { height: 320px; }
  .about-img-border { display: none; }
  .about-stats { justify-content: space-around; }
}

/* ================================================
   SIGNATURE ROLLS (homepage)
   ================================================ */
.signature-section {
  padding: var(--section-padding);
  background: var(--bg-alt);
  text-align: center;
}
.signature-section .section-divider { margin-bottom: 60px; }
.rolls-grid {
  max-width: var(--max-width); margin: 0 auto 50px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.roll-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform;
  box-shadow: var(--shadow-sm);
}
.roll-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.roll-card-top {
  height: 230px;
  position: relative; overflow: hidden;
  background: #111;
}
.roll-card-top img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.roll-card:hover .roll-card-top img { transform: scale(1.08); }
.roll-card-top::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}
.roll-card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red); color: var(--white);
  padding: 4px 10px; border-radius: 2px;
}
.roll-card-body { padding: 22px; }
.roll-card-name { font-family: var(--font-heading); font-size: 1.35rem; color: var(--text); margin-bottom: 9px; }
.roll-card-desc { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.roll-card-footer { display: flex; justify-content: space-between; align-items: center; }
.roll-card-price { font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.roll-card-tag {
  font-size: 0.6rem; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--red); background: rgba(199,23,40,0.08);
  padding: 3px 9px; border-radius: 4px; font-weight: 600;
}

/* ================================================
   AYCE BANNER
   ================================================ */
.ayce-section {
  position: relative; overflow: hidden;
  padding: var(--section-padding);
  text-align: center;
}
.ayce-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1562802378-063ec186a863?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.15);
}
.ayce-color { position: absolute; inset: 0; background: rgba(199,23,40,0.88); }
.ayce-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.ayce-badge {
  display: inline-block;
  background: var(--white); color: var(--red);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 6px 18px;
  margin-bottom: 20px; border-radius: 2px;
}
.ayce-section h2 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--white); margin-bottom: 16px; }
.ayce-section p  { font-size: 1.1rem; color: rgba(255,255,255,0.88); line-height: 1.75; margin-bottom: 32px; }

/* ================================================
   LOCATIONS PREVIEW (homepage)
   ================================================ */
.locations-section {
  padding: var(--section-padding);
  background: var(--bg-alt);
  text-align: center;
}
.locations-grid {
  max-width: 1020px; margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 32px;
}
.loc-card {
  background: var(--dark);
  border: none;
  border-radius: 16px; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
}
.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(199,23,40,0.18), 0 8px 32px rgba(0,0,0,0.22);
}

/* Card header with decorative watermark number */
.loc-card-head {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, #9e1020 100%);
  padding: 30px 32px 26px;
  overflow: hidden;
}
.loc-card-head::before {
  content: attr(data-num);
  position: absolute;
  right: 18px; bottom: -20px;
  font-family: var(--font-display);
  font-size: 8rem; font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none; user-select: none;
  letter-spacing: -4px;
}
.loc-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.7rem; color: var(--white);
  letter-spacing: 3px; text-transform: uppercase;
  position: relative;
}
.loc-card-head span {
  display: block; font-size: 0.63rem; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.68); text-transform: uppercase; margin-top: 7px;
  position: relative;
}

/* Card body */
.loc-card-body { padding: 28px 32px 20px; }
.loc-info-row {
  display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start;
}
.loc-info-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(199,23,40,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-top: 1px;
}
.loc-info-label {
  font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  font-weight: 700; margin-bottom: 6px;
}
.loc-info-val { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.7; }
.loc-info-val a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.loc-info-val a:hover { color: var(--red-light); }

/* Hours */
.hours-list { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.hours-row {
  display: flex; align-items: baseline; gap: 16px;
  font-size: 0.83rem; padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-row:last-child { border-bottom: none; }
.hours-day  { color: rgba(255,255,255,0.42); flex-shrink: 0; min-width: 68px; }
.hours-time { color: rgba(255,255,255,0.86); font-weight: 500; }

/* Divider + actions */
.loc-card-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 32px 0; }
.loc-card-actions { padding: 20px 32px 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.loc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 6px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: var(--transition);
}
.loc-btn-red   { background: var(--red); color: var(--white); }
.loc-btn-red:hover { background: var(--red-dark); box-shadow: 0 4px 14px rgba(199,23,40,0.4); }
.loc-btn-ghost {
  background: transparent; color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.18);
}
.loc-btn-ghost:hover { border-color: var(--red); color: var(--red-light); }

@media (max-width: 860px) {
  .locations-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ================================================
   PRESS / TESTIMONIALS
   ================================================ */
.press-section {
  padding: var(--section-padding);
  background: var(--bg-alt);
  text-align: center;
}
.press-grid {
  max-width: var(--max-width); margin: 50px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.press-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 36px 28px;
  text-align: left; position: relative;
  transition: box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.press-card:hover { box-shadow: var(--shadow); }
.press-qmark {
  font-family: Georgia, serif;
  font-size: 5rem; color: var(--red);
  opacity: 0.15; position: absolute;
  top: 8px; left: 20px; line-height: 1;
}
.press-text {
  color: var(--text-mid);
  font-size: 0.95rem; line-height: 1.85;
  margin-bottom: 22px; padding-top: 28px;
  position: relative; z-index: 1;
  font-style: italic;
}
.press-source {
  font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  font-weight: 700;
}

/* ================================================
   FOOTER
   ================================================ */
.footer { background: #0e0404; padding: 64px 20px 0; }
.footer-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 50px; padding-bottom: 50px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-desc  { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--red); color: var(--white); }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-addr { color: rgba(255,255,255,0.4); font-size: 0.86rem; line-height: 1.8; margin-bottom: 10px; }
.footer-addr a { transition: color var(--transition); }
.footer-addr a:hover { color: var(--red); }
.footer-addr strong { color: rgba(255,255,255,0.75); display: block; margin-bottom: 6px; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { color: rgba(255,255,255,0.2); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.2); font-size: 0.78rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================
   MENU PAGE — HERO
   ================================================ */
.menu-hero {
  height: 42vh; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding-top: 80px; overflow: hidden;
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  filter: brightness(0.25);
}
.menu-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,4,4,0.4), rgba(199,23,40,0.15), rgba(14,4,4,0.6));
}
.menu-hero-content { position: relative; z-index: 1; }
.menu-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--white); }
.menu-hero p  { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: clamp(1.5px, 1.2vw, 4px); text-transform: uppercase; margin-top: 14px; }

/* Sticky category nav */
.menu-cats {
  position: sticky; top: 68px; z-index: 900;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-cats::-webkit-scrollbar { display: none; }
.menu-cats-inner { display: flex; min-width: max-content; padding: 0 20px; }
.menu-cat-link {
  display: block; padding: 14px 18px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-light);
  white-space: nowrap; cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  margin-bottom: -2px;
}
.menu-cat-link:hover, .menu-cat-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Mobile: 5×2 grid — all categories visible at once (declared AFTER base rules) */
@media (max-width: 820px) {
  .menu-cats {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: hidden;
  }
  .menu-cats-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-width: 0;
    padding: 0;
  }
  .menu-cat-link {
    padding: 10px 2px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
    min-width: 0;
    line-height: 1.3;
    border-bottom: 1px solid rgba(0,0,0,0.09);
    border-right: 1px solid rgba(0,0,0,0.09);
    border-bottom-width: 1px; /* override 3px */
    margin-bottom: 0;
  }
  .menu-cat-link:nth-child(5n)      { border-right: none; }
  .menu-cat-link:nth-last-child(-n+5) { border-bottom: none; }
  .menu-cat-link.active {
    background: var(--red-faint2);
    color: var(--red);
    border-bottom-color: rgba(0,0,0,0.09);
  }
}

/* Menu content area */
.menu-content { background: var(--bg); }

/* Menu sections */
.menu-sec {
  padding: 64px 20px;
  max-width: var(--max-width); margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.menu-sec:last-child { border-bottom: none; }
.menu-sec:nth-child(even) { background: var(--bg-alt); }

.menu-sec-head { text-align: center; margin-bottom: 44px; }
.menu-sec-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--text);
}
.menu-sec-title::after {
  content: '';
  display: block;
  width: 48px; height: 3px;
  background: var(--red);
  margin: 14px auto 0;
}
.menu-sec-sub {
  color: var(--text-light);
  font-size: 0.82rem; letter-spacing: 2px;
  text-transform: uppercase; margin-top: 12px;
}
.menu-sec-line { display: none; } /* replaced by ::after pseudo */

/* === List items === */
.menu-list { display: flex; flex-direction: column; }
.menu-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0; gap: 14px;
  border-bottom: 1px dotted var(--border);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.02rem; color: var(--text);
  margin-bottom: 4px;
}
.menu-item-name small {
  font-family: var(--font-body);
  font-size: 0.72rem; font-style: normal; font-weight: 600;
  color: var(--red);
  background: rgba(199,23,40,0.08);
  padding: 1px 7px; border-radius: 4px;
  margin-left: 4px;
  letter-spacing: 0.02em;
}
.menu-item-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; }
.menu-item-tag {
  display: inline-block; font-size: 0.6rem; letter-spacing: 1px;
  text-transform: uppercase; background: var(--red); color: var(--white);
  padding: 2px 7px; border-radius: 2px; margin-left: 8px; vertical-align: 2px;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.08rem; color: var(--gold);
  font-weight: 700; flex-shrink: 0; white-space: nowrap;
}

/* Japanese name style */
.menu-item-name span[style] { color: var(--text-light) !important; }

/* 2-column list */
.menu-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
@media (max-width: 640px) { .menu-list-2col { grid-template-columns: 1fr; } }

/* ================================================
   SPECIAL ROLL CARDS
   ================================================ */
.menu-rolls-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.menu-roll-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.menu-roll-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* ── Circular food image ── */
.menu-roll-img {
  width: calc(100% - 40px);
  margin: 20px 20px 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 3px solid var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.menu-roll-card:hover .menu-roll-img { transform: scale(1.05); }

.menu-roll-info { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.menu-roll-name { font-family: var(--font-heading); font-size: 1.05rem; color: var(--text); margin-bottom: 7px; }
.menu-roll-name small {
  font-family: var(--font-body);
  font-size: 0.7rem !important; font-style: normal; font-weight: 600;
  color: var(--red);
  background: rgba(199,23,40,0.08);
  padding: 1px 7px; border-radius: 4px;
  margin-left: 4px;
}
.menu-roll-desc { font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.menu-roll-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.menu-roll-price { font-family: var(--font-heading); font-size: 1.25rem; color: var(--gold); font-weight: 700; }
.menu-roll-note  {
  font-size: 0.6rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 3px 8px; border-radius: 10px;
}
.menu-roll-note-red { background: rgba(199,23,40,0.08); color: var(--red); }

/* ================================================
   REGULAR ROLL CARDS
   ================================================ */
.regular-roll-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.reg-roll-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.reg-roll-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.reg-roll-img {
  width: calc(100% - 32px);
  margin: 16px 16px 0;
  aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 50%; display: block;
  border: 3px solid var(--red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.reg-roll-card:hover .reg-roll-img { transform: scale(1.05); }

.reg-roll-info { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.reg-roll-name  { font-family: var(--font-heading); font-size: 0.95rem; color: var(--text); margin-bottom: 10px; }
.reg-roll-name small {
  font-family: var(--font-body);
  font-size: 0.7rem !important; font-style: normal; font-weight: 600;
  color: var(--red);
  background: rgba(199,23,40,0.08);
  padding: 1px 7px; border-radius: 4px;
  margin-left: 4px;
}
.reg-roll-prices { display: flex; gap: 16px; margin-top: auto; }
.reg-roll-price { text-align: center; }
.reg-roll-price-label { font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 4px; }
.reg-roll-price-val   { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); font-weight: 700; }

/* ================================================
   SECTION WITH PHOTO (Sashimi, Bento, etc.)
   ================================================ */
.menu-sec-with-photo {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 40px; align-items: start;
}
.menu-sec-photo {
  border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky; top: 120px;
}
.menu-sec-photo img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
@media (max-width: 820px) {
  .menu-sec-with-photo { grid-template-columns: 1fr; }
  .menu-sec-photo { position: static; }
  .menu-sec-photo img { height: 220px; }
}

/* Nigiri photo grid */
.nigiri-photo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.nigiri-photo-item { text-align: center; }
.nigiri-photo-item img {
  width: 110px; height: 110px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 6px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}
.nigiri-photo-item span {
  font-size: 0.72rem; color: var(--text-light);
  display: block; letter-spacing: 1px;
}

/* Combination photo */
.combo-photo-wrap {
  border-radius: 10px; overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.combo-photo-wrap img { width: 100%; height: 240px; object-fit: cover; display: block; }

/* Subsection headers */
.menu-subsection { margin-bottom: 40px; }
.menu-subsection-title {
  font-family: var(--font-heading); font-size: 1.4rem; color: var(--red);
  margin-bottom: 8px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-red);
}
.menu-subsection-note { color: var(--text-light); font-size: 0.8rem; margin-bottom: 18px; }

/* Subsection with photo side by side */
.menu-subsec-photo {
  display: grid; grid-template-columns: 1fr 200px;
  gap: 24px; align-items: start; margin-bottom: 40px;
}
.menu-subsec-photo .menu-subsec-img {
  width: 100%; height: 160px; object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .menu-subsec-photo { grid-template-columns: 1fr; }
  .menu-subsec-photo .menu-subsec-img { height: 180px; }
}

/* Bento options */
.bento-options {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px; margin-top: 16px;
}
.bento-option {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 10px 14px;
  font-size: 0.88rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
}
.bento-option::before { content: '•'; color: var(--red); flex-shrink: 0; }
.bento-option.addon { color: var(--text-light); font-size: 0.82rem; }
.bento-note {
  font-size: 0.82rem; color: var(--text-mid);
  margin-bottom: 20px; padding: 12px 16px;
  background: var(--red-faint); border-left: 3px solid var(--red);
  border-radius: 0 6px 6px 0;
}
.bento-price-highlight {
  font-family: var(--font-heading); font-size: 2.2rem; color: var(--red);
  font-weight: 700; margin-bottom: 6px;
}

/* ---- FLIPBOOK MENU GALLERY ---- */
.menu-gallery-section {
  background: linear-gradient(180deg, #0a0303 0%, #160505 50%, #0a0303 100%);
  padding: 84px 20px 100px;
  text-align: center;
}
.menu-gallery-section .section-label { color: var(--red); }
.menu-gallery-section .section-title-light { margin-bottom: 0; }

/* Outer wrapper — stacks stage + thumbs + hint */
.flipbook-wrap {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Row: arrow + book + arrow */
.flipbook-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 900px;
  padding: 0 8px;
}

/* Arrow buttons */
.flip-nav {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(199,23,40,0.32);
  background: rgba(199,23,40,0.06);
  color: rgba(199,23,40,0.75);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  outline: none;
}
.flip-nav:hover:not(:disabled) {
  background: rgba(199,23,40,0.16);
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(199,23,40,0.22);
}
.flip-nav:disabled { opacity: 0.15; cursor: not-allowed; }
.flip-nav:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* Book column */
.flipbook-book {
  flex: 1;
  max-width: 800px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* The page surface */
.flipbook-page {
  position: relative;
  border-radius: 3px 10px 10px 3px;
  overflow: hidden;
  cursor: zoom-in;
  background: #0a0303;
  /* Spine + stacked-pages shadow */
  border-left: 5px solid rgba(199,23,40,0.2);
  box-shadow:
    -2px 0 6px rgba(0,0,0,0.5),
    5px  0 0 rgba(12,3,3,0.95),
    10px 0 0 rgba(10,2,2,0.7),
    15px 0 0 rgba(8,1,1,0.4),
    0 28px 70px rgba(0,0,0,0.8);
  transform-origin: center center;
}
.flipbook-page:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

/* Hover zoom-hint overlay */
.flipbook-page-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.flipbook-page:hover .flipbook-page-hover { opacity: 1; }

.flipbook-zoom-icon {
  width: 62px; height: 62px;
  border: 2px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.68);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.flipbook-page:hover .flipbook-zoom-icon { transform: scale(1); }

/* The menu image */
.flipbook-img {
  width: 100%;
  display: block;
  max-height: 72vh;
  object-fit: contain;
  background: transparent;
  transition: none;
}

/* Meta bar below page */
.flipbook-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 6px 0;
}
.flip-section-name {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(199,23,40,0.72);
}
.flip-page-num {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* ---- Flip animations ---- */
.flipbook-page.flip-out     { animation: pgFlipOut    0.2s ease-in  forwards; }
.flipbook-page.flip-in      { animation: pgFlipIn     0.2s ease-out forwards; }
.flipbook-page.flip-out-rev { animation: pgFlipOutRev 0.2s ease-in  forwards; }
.flipbook-page.flip-in-rev  { animation: pgFlipInRev  0.2s ease-out forwards; }

@keyframes pgFlipOut    { from { transform: perspective(1200px) rotateY(0deg)   scale(1);    opacity:1; } to { transform: perspective(1200px) rotateY(-68deg) scale(0.97); opacity:.45; } }
@keyframes pgFlipIn     { from { transform: perspective(1200px) rotateY(68deg)  scale(0.97); opacity:.45; } to { transform: perspective(1200px) rotateY(0deg)   scale(1);    opacity:1; } }
@keyframes pgFlipOutRev { from { transform: perspective(1200px) rotateY(0deg)   scale(1);    opacity:1; } to { transform: perspective(1200px) rotateY(68deg)  scale(0.97); opacity:.45; } }
@keyframes pgFlipInRev  { from { transform: perspective(1200px) rotateY(-68deg) scale(0.97); opacity:.45; } to { transform: perspective(1200px) rotateY(0deg)   scale(1);    opacity:1; } }

/* ---- Thumbnail strip ---- */
.flipbook-thumbs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 8px;
}
.flipbook-thumb {
  width: 82px; height: 56px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.07);
  background: #0e0202;
  opacity: 0.38;
  padding: 0;
  transition: opacity 0.22s, border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  outline: none;
}
.flipbook-thumb:hover { opacity: 0.7; transform: translateY(-3px); }
.flipbook-thumb.active {
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(199,23,40,0.38);
  transform: translateY(-3px);
}
.flipbook-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

/* Hint text */
.flip-hint {
  font-family: var(--font-body);
  font-size: 0.67rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin: 0;
}

/* ---- Lightbox ---- */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  display: none; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0; transition: opacity 0.3s ease;
}
.lb-img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 4px; object-fit: contain; display: block;
}
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 10001; outline: none;
}
.lb-nav:hover:not(:disabled) { background: rgba(255,255,255,0.18); }
.lb-nav:disabled { opacity: 0.12; cursor: not-allowed; }
.lb-nav:focus-visible, .lb-close:focus-visible { outline: 2px solid rgba(255,255,255,0.7); outline-offset: 3px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: white; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 10001; outline: none;
}
.lb-close:hover { background: rgba(255,255,255,0.18); }
.lb-caption {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap; pointer-events: none;
}

/* Responsive */
@media (max-width: 820px) {
  .flipbook-stage { gap: 12px; }
  .flip-nav { width: 40px; height: 40px; }
  .flipbook-thumb { width: 66px; height: 46px; }
  .lb-nav { display: none; }
}
@media (max-width: 480px) {
  .flipbook-stage { gap: 8px; }
  .flip-nav { width: 36px; height: 36px; }
  .flip-nav svg { width: 16px; height: 16px; }
  .flipbook-thumb { width: 54px; height: 38px; }
}

/* ================================================
   LOCATIONS PAGE
   ================================================ */
.locs-hero {
  height: 44vh; min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; padding-top: 80px; overflow: hidden;
}
.locs-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.28);
}
.locs-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,4,4,0.25), rgba(199,23,40,0.10), rgba(14,4,4,0.60));
}
.locs-hero-content { position: relative; z-index: 1; padding: 0 20px; }
.locs-hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--white); }
.locs-hero p  {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase; margin-top: 16px;
}
.locs-hero p::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: rgba(199,23,40,0.65);
  margin: 0 auto 14px;
}

.locs-content { background: var(--bg); padding: var(--section-padding); }
.loc-full-block {
  max-width: var(--max-width); margin: 0 auto 90px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
  padding-bottom: 90px; border-bottom: 1px solid var(--border);
}
.loc-full-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.loc-map-wrap {
  border-radius: 10px; overflow: hidden; height: 420px; background: var(--bg-alt);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  /* DOM order: info first (mobile shows info immediately, no blank map wait).
     On desktop, CSS order:-1 restores the visual map-left layout. */
}
.loc-map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(25%); }
@media (min-width: 821px) {
  .loc-map-wrap { order: -1; } /* visually left column on desktop */
}
/* SVG icon wrapper — consistent sizing & color with the label red */
.loc-detail-icon {
  display: flex; align-items: flex-start; padding-top: 2px; flex-shrink: 0;
  color: var(--red); opacity: 0.85;
}
/* Address sub-note (replaces invisible white inline style) */
.loc-detail-note { color: var(--text-light); font-size: 0.82rem; }

/* "Sushi Near You" dark section */
.locs-nearby { background: var(--dark); padding: 72px 20px; text-align: center; }
.locs-nearby-inner { max-width: 800px; margin: 0 auto; }
.locs-nearby .section-title-light { font-size: clamp(1.6rem, 3vw, 1.9rem); }
.locs-nearby-text {
  color: rgba(255,255,255,0.62); font-size: 0.96rem; line-height: 1.95;
  margin-top: 28px;
}
.locs-nearby-text strong { color: rgba(255,255,255,0.88); font-weight: 700; }
.locs-nearby-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: 36px;
}

.loc-full-info {}
.loc-full-eyebrow {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 10px;
}
.loc-full-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text); margin-bottom: 32px; line-height: 1.15; }
.loc-detail-row { display: flex; gap: 16px; margin-bottom: 28px; }
.loc-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 3px; }
.loc-detail-body {}
.loc-detail-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 7px; }
.loc-detail-val { color: var(--text-mid); font-size: 0.94rem; line-height: 1.7; }
.loc-detail-val a { color: var(--text); transition: color var(--transition); }
.loc-detail-val a:hover { color: var(--red); }
.loc-hours-grid { display: flex; flex-direction: column; gap: 2px; }
.loc-hours-row  { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 0.88rem; padding: 7px 0; border-bottom: 1px dotted var(--border); }
.loc-hours-row:last-child { border-bottom: none; }
.loc-hours-day  { color: var(--text-light); flex-shrink: 0; }
.loc-hours-time { color: var(--text); text-align: right; }
.loc-social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.loc-social-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.3px;
  transition: var(--transition); border: 1px solid transparent;
  text-decoration: none;
}
.loc-social-btn .soc-handle {
  font-size: 0.68rem; font-weight: 400; opacity: 0.75;
  margin-left: 2px;
}
.soc-yelp      { color: #d32323; border-color: rgba(211,35,35,0.28); background: rgba(211,35,35,0.06); }
.soc-yelp:hover      { background: rgba(211,35,35,0.13); transform: translateY(-1px); }
.soc-facebook  { color: #1877f2; border-color: rgba(24,119,242,0.28); background: rgba(24,119,242,0.06); }
.soc-facebook:hover  { background: rgba(24,119,242,0.13); transform: translateY(-1px); }
.soc-instagram { color: #c13584; border-color: rgba(193,53,132,0.28); background: rgba(193,53,132,0.06); }
.soc-instagram:hover { background: rgba(193,53,132,0.13); transform: translateY(-1px); }
.soc-google    { color: #4285f4; border-color: rgba(66,133,244,0.28); background: rgba(66,133,244,0.06); }
.soc-google:hover    { background: rgba(66,133,244,0.13); transform: translateY(-1px); }

@media (max-width: 820px) {
  .loc-full-block { grid-template-columns: 1fr; gap: 36px; }
  .loc-map-wrap   { height: 300px; }
}

/* ================================================
   FLOATING UI
   ================================================ */
.float-phone {
  position: fixed; bottom: 24px; right: 24px; z-index: 995;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px;
  background: var(--red); border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white); cursor: pointer;
  box-shadow: 0 4px 20px rgba(199,23,40,0.45);
  transition: var(--transition);
  text-decoration: none; flex-shrink: 0;
}
.float-btn:hover { transform: scale(1.12); background: var(--red-dark); }
.float-btn.picker-open {
  transform: scale(1.08);
  background: var(--red-dark);
  box-shadow: 0 6px 28px rgba(199,23,40,0.6);
}

/* ---- Call location picker ---- */
.call-picker {
  position: absolute;          /* out of flow — doesn't push container up */
  bottom: calc(100% + 10px);  /* floats above the toggle button */
  right: 0;
  background: linear-gradient(160deg, #200b0b 0%, #180606 100%);
  border: 1px solid rgba(199,23,40,0.28);
  border-radius: 16px;
  overflow: hidden;
  min-width: 228px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.7),
    0 4px 16px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(8px) scale(0.93);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  transform-origin: bottom right;
}
.call-picker.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header row */
.call-picker-head {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px 11px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.call-picker-head svg { flex-shrink: 0; opacity: 0.55; }
.call-picker-head span {
  font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Each store option */
.call-option {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 13px 16px;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.18s, border-color 0.18s;
}
.call-option:last-child { border-bottom: none; }
.call-option:hover {
  background: rgba(199,23,40,0.1);
  border-left-color: var(--red);
}
.call-option:active { background: rgba(199,23,40,0.2); }

.call-option-info {
  display: flex; flex-direction: column; gap: 2px;
}
.call-option-loc {
  font-family: var(--font-body);
  font-size: 0.86rem; font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.3px;
}
.call-option-num {
  font-family: var(--font-body);
  font-size: 0.76rem; font-weight: 600;
  color: rgba(199,23,40,0.8);
  letter-spacing: 0.3px;
}
.call-option-arrow {
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color 0.18s, transform 0.18s;
}
.call-option:hover .call-option-arrow {
  color: var(--red);
  transform: translateX(3px);
}

.scroll-top-btn {
  /* Lives inside .float-phone flex column — no separate fixed positioning needed */
  width: 44px; height: 44px;
  background: rgba(199,23,40,0.9); border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem;
  cursor: pointer; transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  opacity: 0; visibility: hidden; pointer-events: none;
  text-decoration: none; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(199,23,40,0.3);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--red-dark); transform: scale(1.1); }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ================================================
   ALLERGEN / NOTICES
   ================================================ */
.menu-notice {
  max-width: var(--max-width); margin: 0 auto;
  padding: 20px; text-align: center;
  color: var(--text-light); font-size: 0.78rem; line-height: 1.7;
}

/* ================================================
   RESPONSIVE TWEAKS
   ================================================ */
@media (max-width: 768px) {
  :root { --section-padding: 64px 20px; }
  .rolls-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 3rem; }
  .menu-rolls-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .roll-card-top { height: 200px; }
}
@media (max-width: 520px) {
  /* Roll cards single column on small phones for better readability */
  .rolls-grid { grid-template-columns: 1fr; }
  .roll-card-top { height: 220px; }
  .hero-actions .btn { padding: 13px 24px; font-size: 0.72rem; }
  .about-stats { gap: 24px; }
  .stat-num { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .menu-rolls-grid { grid-template-columns: 1fr 1fr; }
  .regular-roll-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-up, .hero-scroll-bar { transition: none; animation: none; }
  .flipbook-page.flip-out,
  .flipbook-page.flip-in,
  .flipbook-page.flip-out-rev,
  .flipbook-page.flip-in-rev { animation: none; }
}

/* ================================================
   ORDER ONLINE PAGE
   ================================================ */

/* Hero */
.order-hero {
  height: 52vh; min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative;
  padding-top: 80px; overflow: hidden;
}
.order-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1579871494447-9811cf80d66c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.22);
}
.order-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,4,4,0.3), rgba(199,23,40,0.12), rgba(14,4,4,0.65));
}
.order-hero-content { position: relative; z-index: 1; padding: 0 20px; }
.order-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin: 14px 0 18px;
}
.order-hero-title em {
  display: block;
  font-style: italic;
  color: var(--red-light);
}
.order-hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.5px;
  max-width: 480px;
  margin: 0 auto;
}
.order-hero-sub::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(199,23,40,0.7);
  margin: 0 auto 18px;
}
.order-hero-sub strong {
  color: rgba(255,255,255,0.96);
  font-weight: 700;
}

/* Feature strip */
.order-strip {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  /* Fade edges so items appear/disappear smoothly */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Track holds two identical copies for seamless looping */
.order-strip-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.order-strip-track:hover { animation-play-state: paused; }

.order-strip-inner {
  display: flex; align-items: center;
  gap: 28px; flex-wrap: nowrap;
  padding: 0 28px; /* gap between end of set A and start of set B */
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
}
.order-strip-inner span { display: flex; align-items: center; gap: 8px; }
.order-strip-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(199,23,40,0.7);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .order-strip {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .order-strip-track {
    animation: none;
    justify-content: center;
    width: 100%;
  }
  .order-strip-inner { padding: 0 12px; }
}

/* Main section */
.order-section { padding: 80px 20px 100px; background: var(--bg-alt); }
.order-section-sub {
  color: var(--text-mid); font-size: 0.88rem;
  margin-top: 14px;
}

/* Order grid */
.order-grid {
  max-width: 1020px; margin: 52px auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 32px;
}

/* Order card — inherits loc-card aesthetic */
.order-card {
  background: var(--dark);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.order-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(199,23,40,0.18), 0 8px 32px rgba(0,0,0,0.22);
}

/* Card header */
.order-card-head {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, #9e1020 100%);
  padding: 28px 32px 24px;
  overflow: hidden;
}
.order-card-head::before {
  content: attr(data-num);
  position: absolute; right: 18px; bottom: -20px;
  font-family: var(--font-display);
  font-size: 8rem; font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -4px;
}
.order-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.7rem; color: var(--white);
  letter-spacing: 3px; text-transform: uppercase; position: relative;
}
.order-card-head span {
  display: block; font-size: 0.63rem; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.68); text-transform: uppercase;
  margin-top: 7px; position: relative;
}

/* Card body */
.order-card-body { padding: 28px 32px 32px; }
.order-info-row {
  display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start;
}
.order-info-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(199,23,40,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-top: 1px;
}
.order-info-label {
  font-size: 0.62rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
  font-weight: 700; margin-bottom: 5px;
}
.order-info-val {
  color: rgba(255,255,255,0.68);
  font-size: 0.88rem; line-height: 1.7;
}
.order-info-val a { color: rgba(255,255,255,0.78); }
.order-info-val a:hover { color: var(--red-light); }

/* DoorDash ordering block */
.order-platform {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.order-platform-via {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.order-doordash-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: #FF3008;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  gap: 12px;
}
.order-doordash-btn:hover {
  background: #e52800;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,48,8,0.38);
}
.dd-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: white; letter-spacing: 1px;
}
.dd-cta {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.order-avail {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.38);
  letter-spacing: 0.5px;
}

@media (max-width: 860px) {
  .order-grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 520px) {
  .order-card-head { padding: 22px 24px 20px; }
  .order-card-body { padding: 22px 24px 28px; }
  .order-hero-title { font-size: 2.2rem; }
}
