/* Johnny Sushi — site styles */

:root {
  --cream: #faf6ef;
  --cream-dark: #f1ebdd;
  --ink: #2b1d14;
  --ink-soft: #5a4635;
  --red: #b91c1c;
  --red-dark: #8a1212;
  --gold: #c9a24b;
  --line: #d9cfb8;
  --shadow: 0 8px 24px rgba(43, 29, 20, 0.08);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* HEADER / NAV */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.35rem; letter-spacing: 0.5px; text-transform: uppercase; }
.brand-tag { font-size: 0.7rem; color: var(--ink-soft); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { color: var(--ink); font-size: 0.95rem; font-weight: 500; position: relative; padding: 0.25rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--ink); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 0.85rem 1.75rem; background: var(--red); color: var(--cream);
  border-radius: var(--radius); font-weight: 600; letter-spacing: 0.5px;
  border: 2px solid var(--red); transition: all 0.2s; cursor: pointer; font-size: 0.95rem;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--cream); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--cream); }

/* HERO with full-photo background and big logo */
.hero {
  position: relative;
  padding: 5rem 0 5rem;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
  background: #000;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%), url('https://images.unsplash.com/photo-1553621042-f6e147245754?w=2400&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}

.hero h1, .hero .hero-sub { color: var(--cream); }

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}
.logo-lockup img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}

.hero-sub { font-size: 1.1rem; max-width: 620px; margin: 0 auto 2rem; opacity: 0.95; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { color: var(--cream); border-color: var(--cream); }
.hero .btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* PAGE BANNERS for non-home pages */
.page-banner {
  position: relative;
  padding: 4rem 0 3rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--cream);
}
.page-banner::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(20,12,8,0.6), rgba(20,12,8,0.75)); }
.page-banner > .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--cream); margin-bottom: 0.5rem; }
.page-banner p { color: var(--cream); opacity: 0.92; max-width: 520px; margin: 0 auto; }
.page-banner-logo { width: 80px; margin: 0 auto 1rem; }
.page-banner-logo img { width: 100%; height: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-dark); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow { display: inline-block; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; font-weight: 600; }
.section-head h2 { margin-bottom: 0.75rem; }
.section-head p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; }
.eyebrow { display: inline-block; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; font-weight: 600; }
.divider { width: 60px; height: 2px; background: var(--red); margin: 1.25rem auto; }

/* STORY SPLIT */
.story-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 1000px; margin: 0 auto; }
.story-split-image { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.story-split-image img { width: 100%; height: 100%; object-fit: cover; }
.story-split-text { text-align: left; }
.verse { font-style: italic; font-family: 'Playfair Display', serif; color: var(--ink-soft); font-size: 1.05rem; padding: 1.5rem 2rem; border-left: 3px solid var(--red); border-right: 3px solid var(--red); margin: 1.5rem 0; background: var(--cream); }
.verse cite { display: block; margin-top: 0.75rem; font-style: normal; font-size: 0.85rem; color: var(--red); letter-spacing: 1px; text-transform: uppercase; font-family: 'Inter', sans-serif; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.gallery-item { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* FEATURES */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-top: 2rem; }
.feature-card { background: var(--cream); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--line); text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-icon { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--red); display: grid; place-items: center; }
.feature-icon svg { width: 100%; height: 100%; stroke: var(--red); fill: none; stroke-width: 1.5; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* MENU */
.menu-group { margin-bottom: 3.5rem; }
.menu-group-header { text-align: center; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.menu-group-header h2 { color: var(--red); margin-bottom: 0.5rem; }
.menu-group-header .note { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0.75rem 2.5rem; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px dotted var(--line); }
.menu-item .name { font-weight: 500; color: var(--ink); }
.menu-item .desc { display: block; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.15rem; }
.menu-item .price { color: var(--red); font-weight: 600; font-family: 'Playfair Display', serif; white-space: nowrap; }
.menu-note { text-align: center; padding: 2rem; background: var(--cream); border: 1px dashed var(--line); border-radius: var(--radius); color: var(--ink-soft); margin-top: 2rem; }

/* VISIT */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.info-card { background: var(--cream); padding: 2.5rem; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.info-card h3 { color: var(--red); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line); }
.info-card + .info-card { margin-top: 1.5rem; }
.hours-list { list-style: none; font-size: 0.95rem; }
.hours-list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dotted var(--line); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 500; }
.hours-list .time { color: var(--ink-soft); }
.map-wrap { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; min-height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon { width: 44px; height: 44px; background: var(--red); color: var(--cream); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-item h4 { margin-bottom: 0.2rem; font-size: 1rem; font-family: 'Inter', sans-serif; }
.contact-item p, .contact-item a { color: var(--ink-soft); font-size: 0.95rem; }

/* GOOGLE REVIEWS */
.reviews-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.reviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
  font-weight: 500;
}
.reviews-stat .stars { color: #f5b400; letter-spacing: 1px; font-size: 1rem; }
.reviews-embed {
  min-height: 120px;
  margin: 0 auto;
  max-width: 1100px;
}
.reviews-fallback {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-soft);
}
.reviews-cta { text-align: center; margin-top: 2rem; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* FOOTER */
.site-footer { background: var(--ink); color: var(--cream); padding: 3rem 0 1.5rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { width: 100px; margin-bottom: 1rem; }
.site-footer h4 { color: var(--cream); font-family: 'Inter', sans-serif; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: var(--cream); opacity: 0.8; }
.site-footer a:hover { opacity: 1; color: var(--gold); }
.site-footer p, .site-footer li { color: var(--cream); opacity: 0.75; font-size: 0.9rem; line-height: 1.8; }
.site-footer ul { list-style: none; }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(250,246,239,0.15); font-size: 0.85rem; opacity: 0.6; }
.footer-verse { font-style: italic; font-size: 0.85rem; opacity: 0.75; margin-top: 0.75rem; padding-left: 0.75rem; border-left: 2px solid var(--red); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 1rem 1.5rem 1.5rem; gap: 1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hero { padding: 4rem 0 3rem; }
  .logo-lockup img { width: 160px; }
  .section { padding: 3.5rem 0; }
  .story-split, .visit-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .menu-items { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
}
