/* ============================================================
   ZEN SUSHI DANA POINT — STYLESHEET
   ============================================================ */

:root {
  --ink:        #0a0908;
  --ink-1:      #100e0c;
  --ink-2:      #16130f;
  --ink-3:      #1d1915;
  --ink-4:      #2a241d;
  --bone:       #f5f0e6;
  --bone-dim:   #b8b1a3;
  --bone-faint: #6a6359;
  --red:        #d52127;
  --red-deep:   #a3151b;
  --gold:       #c9a961;
  --paper:      #ece4d3;
  --line:       rgba(245, 240, 230, 0.10);
  --line-soft:  rgba(245, 240, 230, 0.06);
  --maxw:       1440px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* shared utility */
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.012em;
  line-height: 1.02;
}
.jp { font-family: 'Noto Serif JP', serif; }
.mono { font-family: 'JetBrains Mono', monospace; font-weight: 400; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 36px;
  background: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0) 100%);
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 9, 8, 0.85);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  padding: 14px 36px;
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-logo { height: 36px; width: auto; justify-self: start; }
.nav-links {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav-phone {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone-dim);
  transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--bone); }
.nav-cta {
  background: var(--red);
  color: var(--bone);
  text-decoration: none;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('public/images/super-toro.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 20s ease-out forwards;
  filter: saturate(1.05) contrast(1.02);
}
@keyframes heroZoom { to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.45) 0%, rgba(10,9,8,0.15) 30%, rgba(10,9,8,0.85) 80%, rgba(10,9,8,0.98) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.1) 55%);
}
.hero-content {
  position: relative;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 36px 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero-stamp {
  position: absolute;
  top: 42%;
  right: 36px;
  width: 130px;
  opacity: 0.18;
  filter: brightness(2.5) hue-rotate(-10deg);
  transform: rotate(8deg);
  pointer-events: none;
  display: none;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(245,240,230,0.18);
  border-radius: 999px;
  background: rgba(10,9,8,0.4);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}
.hero-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6dd388;
  box-shadow: 0 0 0 4px rgba(109, 211, 136, 0.18);
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(109, 211, 136, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(109, 211, 136, 0.04); }
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.022em;
  margin-bottom: 36px;
  max-width: 1000px;
  opacity: 0;
  animation: fadeUp 1.1s ease 0.4s forwards;
}
.hero-title .accent { color: var(--red); }
.hero-title .small {
  display: block;
  font-size: 0.42em;
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 18px;
  line-height: 1;
}
.hero-sub {
  font-size: 17px;
  color: var(--bone-dim);
  max-width: 480px;
  margin-bottom: 44px;
  letter-spacing: 0.005em;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

/* Used when sub paragraph becomes the lead hero statement */
.hero-statement {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--bone);
  max-width: 880px;
  margin-bottom: 52px;
  animation: fadeUp 1.1s ease 0.4s forwards;
}
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}
.btn-primary {
  background: var(--red);
  color: var(--bone);
  text-decoration: none;
  padding: 20px 42px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 32px rgba(213, 33, 39, 0.32);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(213, 33, 39, 0.45);
}
.btn-primary svg { transition: transform 0.25s ease; }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-ghost {
  color: var(--bone);
  text-decoration: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245,240,230,0.3);
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost:hover { color: var(--red); border-color: var(--red); }
.hero-meta {
  position: absolute;
  left: 36px;
  bottom: 36px;
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-faint);
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta .sep { width: 28px; height: 1px; background: var(--bone-faint); }
.hero-scroll {
  position: absolute;
  right: 36px;
  bottom: 36px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-faint);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--bone-faint), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ MARQUEE TICKER ============ */
.ticker {
  background: var(--bone);
  color: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
}
.ticker-item .star {
  color: var(--red);
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ PHILOSOPHY ============ */
.philosophy {
  padding: 160px 36px 140px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}
.phil-left { position: sticky; top: 120px; }
.phil-jp-vert {
  font-family: 'Noto Serif JP', serif;
  font-size: 38px;
  color: var(--ink-4);
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  line-height: 1;
  user-select: none;
  font-weight: 600;
  margin-top: 24px;
}
.phil-stamp {
  width: 90px;
  height: 90px;
  margin-top: 32px;
  opacity: 0.85;
}
.phil-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1.42;
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--bone);
}
.phil-body p:last-child { margin-bottom: 0; }
.phil-body p em { color: var(--red); font-style: italic; }
.phil-body p strong { font-weight: 600; font-style: italic; color: var(--bone); }
.phil-sig {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
}
.phil-sig .name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  letter-spacing: 0;
}

/* ============ SIGNATURE ============ */
.signature {
  background: var(--ink-1);
  padding: 130px 36px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.section-head {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  max-width: 700px;
}
.section-head .lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
  max-width: 460px;
  justify-self: end;
}
.section-head .eyebrow { margin-bottom: 20px; }

.signature-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.dish {
  position: relative;
  display: flex;
  flex-direction: column;
}
.dish-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink-3);
  margin-bottom: 22px;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dish:hover .dish-img img { transform: scale(1.05); }
.dish-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(10,9,8,0.7);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  z-index: 2;
}
.dish-tag.red { background: var(--red); }
.dish-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  flex: 1;
}
.dish-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--bone-dim);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.dish-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bone-dim);
  font-weight: 300;
}
.dish-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  color: var(--bone-faint);
  letter-spacing: 0.3em;
  margin-top: 14px;
  text-transform: uppercase;
}

/* ============ MENU PREVIEW ============ */
.menu {
  padding: 130px 36px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}
.menu-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.menu-col h3 .jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-style: normal;
  color: var(--bone-faint);
  letter-spacing: 0.25em;
  font-weight: 400;
}
.menu-col > .subhead {
  font-size: 13px;
  color: var(--bone-dim);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name {
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--bone);
}
.menu-item .desc {
  display: block;
  font-size: 12.5px;
  color: var(--bone-dim);
  margin-top: 4px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.menu-item .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}
.menu-item.featured .name::after {
  content: '·';
  margin: 0 8px;
  color: var(--red);
}
.menu-item.featured .name {
  display: inline-flex;
  align-items: center;
}
.menu-item.featured .tag {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.menu-footnote {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--ink-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.menu-footnote .text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
  flex: 1;
  min-width: 280px;
}
.menu-footnote a {
  color: var(--bone);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  white-space: nowrap;
}
.menu-footnote a:hover { color: var(--red); }

/* ============ GALLERY ============ */
.gallery {
  background: var(--ink-1);
  padding: 130px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.gallery-header {
  max-width: var(--maxw);
  margin: 0 auto 70px;
  padding: 0 36px;
  text-align: center;
}
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  margin-top: 18px;
  letter-spacing: -0.018em;
}
.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  overflow: hidden;
  background: var(--ink-3);
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,9,8,0.7) 100%);
  pointer-events: none;
}
.tile-cap {
  position: absolute;
  bottom: 20px; left: 22px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--bone);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  letter-spacing: -0.01em;
}
.tile-cap .small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 4px;
}
.tile-1 { grid-column: span 7; aspect-ratio: 4/3; }
.tile-2 { grid-column: span 5; aspect-ratio: 4/3; }
.tile-3 { grid-column: span 4; aspect-ratio: 1; }
.tile-4 { grid-column: span 4; aspect-ratio: 1; }
.tile-5 { grid-column: span 4; aspect-ratio: 1; }
.tile-6 { grid-column: span 5; aspect-ratio: 4/3; }
.tile-7 { grid-column: span 7; aspect-ratio: 4/3; }

/* ============ REVIEWS ============ */
.reviews {
  padding: 130px 36px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.reviews-head {
  text-align: center;
  margin-bottom: 80px;
}
.reviews-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  margin-top: 18px;
  line-height: 1.05;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.quote {
  padding: 40px 32px 32px;
  border: 1px solid var(--line);
  position: relative;
  background: var(--ink-1);
  display: flex;
  flex-direction: column;
}
.quote .stars {
  color: var(--red);
  letter-spacing: 0.16em;
  font-size: 15px;
  margin-bottom: 24px;
}
.quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--bone);
  margin-bottom: 28px;
  flex: 1;
}
.quote .source {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.quote .source .who { color: var(--bone); }

/* ============ VISIT ============ */
.visit {
  background: var(--ink-1);
  padding: 130px 36px;
  border-top: 1px solid var(--line-soft);
}
.visit-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.visit-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.02;
  margin-top: 18px;
  margin-bottom: 24px;
}
.visit-left .lead {
  font-size: 17px;
  color: var(--bone-dim);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 44px;
}
.address-card {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.address-card .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-bottom: 12px;
}
.address-card .addr {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--bone);
  margin-bottom: 18px;
}
.address-card .actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.address-card .actions a {
  text-decoration: none;
  color: var(--bone);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.address-card .actions a:hover { color: var(--red); }

.hours-card {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 36px 32px;
}
.hours-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hours-head .title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
}
.hours-head .open-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6dd388;
  font-weight: 600;
}
.hours-head .open-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6dd388;
  box-shadow: 0 0 0 3px rgba(109, 211, 136, 0.18);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--bone-dim);
}
.hours-row.today .day { color: var(--bone); }
.hours-row.today .time { color: var(--bone); }
.hours-row .time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--bone-dim);
  letter-spacing: 0.02em;
}

/* ============ ORDER STRIP ============ */
.order-strip {
  position: relative;
  padding: 140px 36px;
  background: var(--red);
  text-align: center;
  overflow: hidden;
}
.order-bg-jp {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(220px, 32vw, 420px);
  color: rgba(255,255,255,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.order-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.order-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.7);
  margin-bottom: 24px;
  font-weight: 600;
}
.order-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  color: var(--bone);
  margin-bottom: 20px;
  letter-spacing: -0.018em;
}
.order-content p {
  color: rgba(245,240,230,0.85);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto 48px;
  max-width: 520px;
}
.btn-dark {
  background: var(--ink);
  color: var(--bone);
  text-decoration: none;
  padding: 22px 52px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-dark svg { transition: transform 0.2s ease; }
.btn-dark:hover svg { transform: translateX(5px); }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  padding: 100px 36px 40px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.footer-logo { height: 40px; margin-bottom: 24px; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--bone-dim);
  max-width: 340px;
  line-height: 1.5;
  margin-bottom: 28px;
}
.footer-stamp {
  width: 56px;
  opacity: 0.6;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--bone-faint);
  letter-spacing: 0.1em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .jp { font-family: 'Noto Serif JP', serif; letter-spacing: 0.3em; }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .signature-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .lead { justify-self: start; }
  .phil-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .nav { padding: 16px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav-inner { grid-template-columns: auto auto; }
  .nav-links, .nav-phone { display: none; }
  .nav-logo { height: 30px; }
  .nav-cta { padding: 10px 16px; font-size: 11px; letter-spacing: 0.18em; }

  .hero { min-height: 640px; }
  .hero-content { padding: 0 22px 80px; }
  .hero-meta, .hero-scroll { display: none; }

  .philosophy, .signature, .menu, .reviews, .visit { padding-left: 22px; padding-right: 22px; padding-top: 90px; padding-bottom: 90px; }
  .phil-grid { grid-template-columns: 1fr; gap: 30px; }
  .phil-left { position: static; display: flex; gap: 36px; align-items: center; }
  .phil-jp-vert { writing-mode: horizontal-tb; font-size: 28px; margin-top: 0; }
  .phil-body p { font-size: 24px; }

  .signature-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-grid { grid-template-columns: 1fr; gap: 56px; }
  .gallery { padding: 90px 0; }
  .gallery-grid { gap: 14px; padding: 0 22px; }
  .tile-1, .tile-2, .tile-3, .tile-4, .tile-5, .tile-6, .tile-7 {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }
  .visit-inner { grid-template-columns: 1fr; gap: 60px; }

  .order-strip { padding: 90px 22px; }
  .footer { padding: 60px 22px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .ticker-item { font-size: 18px; gap: 36px; }
}

@media (max-width: 520px) {
  .btn-primary, .btn-dark { padding: 18px 32px; font-size: 12px; }
  .hero-cta-wrap { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
}
