/* ===========================================================
   Iron Sushi — Main Stylesheet
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600;700&family=Permanent+Marker&display=swap');

:root {
  --blue:        #1C1C1A;
  --blue-dark:   #3A3A38;
  --blue-light:  #EDE8E0;
  --red:         #c62828;
  --red-light:   #ef5350;
  --yellow:      #C8A96E;
  --yellow-dark: #B5923A;
  --bg:          #e8d9be;
  --wood-base:   #dfc9a0;
  --wood-light:  #ede0c4;
  --wood-grain:  rgba(160, 120, 60, 0.07);
  --bg-dark:     #1C1C1A;
  --surface:     rgba(255,255,255,0.88);
  --text:        #1a1a1a;
  --text-light:  #4a4a5a;
  --white:       #ffffff;
  --footer-bg:   #111110;
  --olive:       #544e38;

  --font-head:    'Bebas Neue', 'Impact', Arial Black, sans-serif;
  --font-elegant: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-accent:  'Permanent Marker', 'Comic Sans MS', cursive;

  --nav-height: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: #dfc9a0;
  background-image:
    repeating-linear-gradient(
      91deg,
      transparent 0px,
      transparent 3px,
      rgba(160,110,40,0.04) 3px,
      rgba(160,110,40,0.04) 4px,
      transparent 4px,
      transparent 9px,
      rgba(140,95,30,0.03) 9px,
      rgba(140,95,30,0.03) 10px
    ),
    repeating-linear-gradient(
      89.5deg,
      transparent 0px,
      transparent 14px,
      rgba(200,155,70,0.05) 14px,
      rgba(200,155,70,0.05) 15px
    ),
    linear-gradient(
      180deg,
      #ede0c4 0%,
      #dfc9a0 30%,
      #d4bc90 60%,
      #dfc9a0 80%,
      #e8d5b0 100%
    );
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--bg-dark);
  color: var(--yellow);
  padding: 10px 18px;
  border-radius: 6px;
  font-family: var(--font-head);
  letter-spacing: 1px;
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.dark-surface :focus-visible,
.nav :focus-visible,
.footer :focus-visible,
.order-float :focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section-blue {
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(28,28,26,0.82), rgba(28,28,26,0.82)),
    repeating-linear-gradient(
      91deg,
      transparent 0px, transparent 3px,
      rgba(255,220,140,0.06) 3px, rgba(255,220,140,0.06) 4px,
      transparent 4px, transparent 9px,
      rgba(255,200,100,0.04) 9px, rgba(255,200,100,0.04) 10px
    ),
    repeating-linear-gradient(
      89.5deg,
      transparent 0px, transparent 14px,
      rgba(255,230,160,0.07) 14px, rgba(255,230,160,0.07) 15px
    ),
    linear-gradient(180deg, #ede0c4 0%, #dfc9a0 50%, #d4bc90 100%);
  color: var(--white);
}
.section-blue h2, .section-blue h3 { color: var(--white); }
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-surface { background: transparent; }

.section-title {
  font-family: var(--font-elegant);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.3em;
}
.section-decor {
  text-align: center;
  color: var(--yellow);
  font-size: 1.5rem;
  margin: 0 0 2.5rem;
  letter-spacing: 8px;
}
.section-blue .section-decor,
.section-dark .section-decor { color: var(--yellow); }

.divider-line {
  width: 90px;
  height: 4px;
  background: var(--yellow);
  margin: 12px auto 2.5rem;
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary { background: var(--red); color: var(--white); }
.btn-secondary:hover { background: var(--red-light); }
.btn-accent { background: var(--yellow); color: var(--text); }
.btn-accent:hover { background: var(--yellow-dark); }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(28, 28, 26, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-list a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 1px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-list a:hover,
.nav-list a:focus-visible {
  border-bottom-color: var(--yellow);
}
.nav-list a[aria-current="page"] {
  border-bottom-color: var(--yellow);
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 72px;
  width: 72px;
  border-radius: 50%;
}
.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-instagram svg { width: 24px; height: 24px; fill: var(--white); }
.nav-instagram:hover svg,
.nav-instagram:focus-visible svg { fill: var(--yellow); }

.nav-hamburger {
  display: none;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 6px;
  width: 44px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-dark);
  z-index: 999;
  padding: 12px 0;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; }
.nav-mobile a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a[aria-current="page"] { color: var(--yellow); }
.nav-mobile a:hover, .nav-mobile a:focus-visible { color: var(--yellow); }

@media (max-width: 880px) {
  .nav-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

/* ---------- Main offset ---------- */
main { display: block; }
.page-hero-spacer { height: var(--nav-height); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-color: #c4a878;
  background-image:
    repeating-linear-gradient(
      91deg,
      transparent 0px, transparent 3px,
      rgba(160,110,40,0.07) 3px, rgba(160,110,40,0.07) 4px,
      transparent 4px, transparent 9px,
      rgba(140,95,30,0.05) 9px, rgba(140,95,30,0.05) 10px
    ),
    repeating-linear-gradient(
      89.5deg,
      transparent 0px, transparent 14px,
      rgba(200,155,70,0.08) 14px, rgba(200,155,70,0.08) 15px
    ),
    linear-gradient(180deg, #ede0c4 0%, #dfc9a0 40%, #c9ae82 70%, #bfa070 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,62,0.35) 0%, rgba(13,27,62,0.15) 40%, rgba(13,27,62,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 24px 90px;
}
.hero-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  margin-bottom: 28px;
}
.hero-word {
  display: inline-block;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--yellow);
}
.hero-content h1 {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 2.2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-ctas .btn-text-link {
  background: none;
  border: none;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid rgba(249,201,0,0.5);
  cursor: pointer;
}
.hero-ctas .btn-text-link:hover { border-bottom-color: var(--yellow); }
.hero-ctas .btn-order-hero {
  background: var(--blue);
  color: var(--yellow);
  border: none;
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: 2px;
  padding: 9px 36px;
  border-radius: 6px;
  cursor: pointer;
  max-width: 280px;
  width: 100%;
  text-align: center;
}
.hero-ctas .btn-order-hero:hover { background: var(--blue-dark); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(28,28,26,0.78), rgba(28,28,26,0.78)),
    repeating-linear-gradient(
      91deg,
      transparent 0px, transparent 3px,
      rgba(255,220,140,0.07) 3px, rgba(255,220,140,0.07) 4px,
      transparent 4px, transparent 9px,
      rgba(255,200,100,0.05) 9px, rgba(255,200,100,0.05) 10px
    ),
    repeating-linear-gradient(
      89.5deg,
      transparent 0px, transparent 14px,
      rgba(255,230,160,0.08) 14px, rgba(255,230,160,0.08) 15px
    ),
    linear-gradient(180deg, #ede0c4 0%, #dfc9a0 50%, #d4bc90 100%);
  color: var(--white);
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 70px;
}
.page-hero--about {
  background-image:
    linear-gradient(rgba(10,10,8,0.6), rgba(10,10,8,0.6)),
    url('../images/restaurant-interior.jpg');
  background-size: cover;
  background-position: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.pillar-decor {
  color: var(--yellow);
  font-size: 1.4rem;
  margin: 0 0 0.6em;
}
@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: rgba(237, 224, 196, 0.45);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  padding: 28px;
}
.card-featured {
  border-top: 4px solid var(--blue);
}
.card-featured-red {
  border-top: 4px solid var(--red);
}
.card img {
  border-radius: 8px;
  margin-bottom: 16px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- Carousel ---------- */
.carousel {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.carousel-track-wrap {
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}
.carousel-slide {
  min-width: 100%;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 24px;
}
.carousel-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 18px;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.carousel-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--blue-dark); }
.carousel-dots {
  display: flex;
  gap: 10px;
}
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 2px solid var(--blue);
  padding: 0;
}
.carousel-dot[aria-selected="true"] { background: var(--blue); }

/* ---------- Delivery ---------- */
.delivery-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.delivery-btn {
  flex: 1 1 260px;
  max-width: 340px;
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
}
.delivery-btn.uber { background: #06c167; }
.delivery-btn.doordash { background: var(--red); }
.delivery-btn:hover { transform: translateY(-3px); }

/* ---------- Instagram teaser ---------- */
.insta-strip {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
  padding: 48px 24px;
}
.insta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 1.3rem;
  padding: 14px 28px;
  border-radius: 40px;
  margin-top: 14px;
}
.insta-badge svg { width: 22px; height: 22px; fill: var(--text); }
.insta-badge:hover { background: var(--yellow-dark); }

/* ---------- About page ---------- */
.our-story-section {
  position: relative;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 120% 60% at 50% 100%, rgba(180,140,80,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 20% 90%, rgba(160,120,60,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 80% 95%, rgba(170,130,70,0.15) 0%, transparent 55%);
  padding: 80px 24px 100px;
  text-align: center;
  overflow: hidden;
}
/* Wavy landscape silhouette at the bottom */
.our-story-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C180,20 360,70 540,40 C720,10 900,65 1080,35 C1260,5 1350,55 1440,45 L1440,80 L0,80 Z' fill='%23c9b99a' opacity='0.6'/%3E%3Cpath d='M0,70 C200,40 400,75 600,55 C800,35 1000,72 1200,50 C1320,38 1390,65 1440,60 L1440,80 L0,80 Z' fill='%23bfad95' opacity='0.5'/%3E%3C/svg%3E") no-repeat bottom/cover;
}
.our-story-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.our-story-title {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-size: 4.5rem;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1;
}
.our-story-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 0 0 36px;
}
.our-story-body {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-size: 1.45rem;
  line-height: 2;
  color: rgba(0,0,0,0.72);
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}
.our-story-japanese {
  font-size: 1.4rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 2px;
  margin: 0;
  font-style: italic;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-grid .card { text-align: center; }
.team-grid img {
  border-radius: 50%;
  width: 140px; height: 140px;
  object-fit: cover;
  margin: 0 auto 16px;
}
.team-grid h3 { margin-bottom: 0.2em; }
.team-grid p { color: var(--text-light); margin: 0; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-strip img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 3.2rem;
  color: var(--yellow);
  display: block;
}
.stat-label {
  color: var(--white);
  font-size: 1rem;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
}
.hours-table th, .hours-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--blue-light);
}
.hours-table thead th {
  background: var(--blue);
  color: var(--white);
}

/* ---------- Must Try ---------- */
.must-try-section {
  background: #111118;
  padding: 64px 0 72px;
  overflow: hidden;
}
.must-try-section + .section {
  padding-top: 0;
}
.must-try-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.must-try-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
}
.must-try-title {
  font-family: var(--font-head);
  font-size: 4.5rem;
  letter-spacing: 4px;
  color: #f5f0e8;
  margin: 0;
  line-height: 0.9;
}

/* Horizontal scrolling strip */
.must-try-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.must-try-grid::-webkit-scrollbar { display: none; }

.must-try-card {
  background: #f5f0e8;
  border-radius: 14px;
  padding: 0 0 24px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 240px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.must-try-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.must-try-card-body {
  padding: 8px 24px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.must-try-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Big watermark number */
.must-try-card-num {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-head);
  font-size: 6.5rem;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  pointer-events: none;
  user-select: none;
}

.must-try-card-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue-dark);
  opacity: 0.6;
  margin-bottom: 10px;
}
.must-try-card-name {
  font-family: var(--font-elegant);
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 1px;
  color: #111118;
  line-height: 1.05;
  margin: 0 0 10px;
}
.must-try-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.must-try-card-price {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-elegant);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #111118;
}
.must-try-card-price::before {
  content: '$';
  font-size: 0.7em;
  vertical-align: super;
  margin-right: 1px;
  opacity: 0.4;
}

/* Featured card — slightly warmer */
.must-try-card--large {
  background: #eae3d5;
  min-width: 280px;
  max-width: 280px;
}

@media (max-width: 600px) {
  .must-try-title { font-size: 3.2rem; }
  .must-try-card { min-width: 210px; max-width: 210px; }
  .must-try-card--large { min-width: 230px; max-width: 230px; }
}

/* ---------- Menu page ---------- */

/* Sticky tab bar */
.menu-tablist-wrap {
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: rgba(223,201,160,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(160,110,40,0.2);
  margin: 0 -24px 48px;
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(140,90,20,0.1);
}
.menu-tablist {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  justify-content: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-tablist::-webkit-scrollbar { display: none; }
.menu-tab {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 0.82rem;
  text-transform: uppercase;
  padding: 16px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.menu-tab:hover { color: var(--text); }
.menu-tab[aria-selected="true"] {
  color: var(--blue-dark);
  border-bottom-color: var(--yellow);
  font-weight: 700;
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

/* Section heading inside a panel */
.menu-category-title {
  font-family: var(--font-elegant);
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text);
}

/* Sub-section label */
.menu-subgroup-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-light);
  margin: 3rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-subgroup-title::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.menu-subgroup-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

/* Two-column grid on desktop */
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 640px) {
  .menu-items { grid-template-columns: 1fr; }
}

/* Clean borderless item row */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.menu-items > .menu-item:last-child { border-bottom: none; }

/* In 2-col grid, left column items get a right gutter */
.menu-items > .menu-item:nth-child(odd) {
  padding-right: 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.menu-items > .menu-item:nth-child(even) {
  padding-left: 32px;
}
/* Last row: if odd total, remove border-bottom on last odd item */
.menu-items > .menu-item:nth-last-child(1):nth-child(odd) {
  border-bottom: none;
}

.menu-item-info { flex: 1; min-width: 0; }
.menu-item-info h4 {
  font-family: var(--font-elegant);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.15em;
  color: var(--text);
  line-height: 1.3;
}
.menu-item-info p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.menu-item-price {
  font-family: var(--font-elegant);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-price small {
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0;
}

.menu-item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 4px;
  padding: 1px 6px;
  vertical-align: middle;
  margin-left: 6px;
}

.menu-raw-notice {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  line-height: 1.5;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: var(--surface);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-head);
  letter-spacing: 1px;
  padding: 9px 18px;
  border-radius: 30px;
}
.filter-btn[aria-pressed="true"] {
  background: var(--blue);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.hidden { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}
.lightbox[aria-hidden="true"] { display: none; }
.lightbox-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.lightbox-inner img {
  max-height: 70vh;
  margin: 0 auto 16px;
  border-radius: 10px;
}
.lightbox-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.3rem;
}
.lightbox-nav-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
}
.lightbox-caption { color: var(--white); margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.contact-info {
  background: var(--bg-dark);
  color: var(--white);
  padding: 48px;
}
.contact-info h2 { color: var(--white); }
.contact-info a { color: var(--yellow); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: var(--surface);
  padding: 48px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--blue-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--blue);
}
#form-success {
  display: none;
  background: var(--blue-light);
  color: var(--blue-dark);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 700;
}
#form-error {
  display: none;
  background: #fdecea;
  color: var(--red);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 700;
}
.map-placeholder {
  background: var(--blue-light);
  border-radius: 12px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-top: 48px;
}

/* ---------- Privacy ---------- */
.privacy-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}
.privacy-wrap h2 { color: var(--blue-dark); margin-top: 2em; }
.privacy-wrap ul { list-style: disc; padding-left: 1.4em; }
.privacy-wrap li { margin-bottom: 0.5em; }

/* ---------- Footer ---------- */
.footer {
  background-color: #1C1C1A;
  background-image:
    linear-gradient(rgba(10,18,45,0.88), rgba(10,18,45,0.88)),
    repeating-linear-gradient(
      91deg,
      transparent 0px, transparent 3px,
      rgba(255,210,120,0.05) 3px, rgba(255,210,120,0.05) 4px,
      transparent 4px, transparent 9px,
      rgba(255,190,80,0.04) 9px, rgba(255,190,80,0.04) 10px
    ),
    repeating-linear-gradient(
      89.5deg,
      transparent 0px, transparent 14px,
      rgba(255,220,140,0.06) 14px, rgba(255,220,140,0.06) 15px
    ),
    linear-gradient(180deg, #c4a878 0%, #a8885a 50%, #8c6e3c 100%);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-grid > div:last-child {
  text-align: right;
}
.footer-grid > div:last-child .footer-social-links {
  align-items: flex-end;
}
.footer-label {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-head);
  letter-spacing: 1px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.footer nav ul li { margin-bottom: 10px; }
.footer nav a {
  color: var(--white);
  text-decoration: none;
}
.footer nav a:hover { color: var(--yellow); }
.footer-center { text-align: center; }
.footer-center img { width: 70px; margin: 0 auto 14px; border-radius: 50%; }
.footer-center p { margin: 0 0 6px; color: rgba(255,255,255,0.85); }
.footer-social-links { display: flex; flex-direction: column; gap: 10px; }
.footer-social-links a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-social-links a:hover { color: var(--yellow); }
.footer-social-links svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.footer-bottom a { color: rgba(255,255,255,0.85); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social-links { align-items: center; }
}

/* ---------- Order Online — shared dropdown ---------- */
.order-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}
.order-menu.open {
  max-height: 280px;
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .order-menu { transition: none; }
}

.order-menu-row {
  display: flex;
  gap: 8px;
}
.order-menu-row.single { flex-direction: column; }

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  flex: 1;
  border: none;
}
.order-btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.order-btn-call  { background: var(--blue); color: var(--yellow); border: none; }
.order-float .order-btn-call { flex: 0 0 auto; align-self: center; }
.order-btn-call:hover  { background: var(--blue-dark); }
.order-btn-uber  { background: #06c167; color: #000; }
.order-btn-uber:hover  { background: #05a857; }
.order-btn-doordash { background: #c82300; color: #fff; }
.order-btn-doordash:hover { background: #a81d00; }

/* ---------- Order Online — hero inline variant ---------- */
.hero-order-wrap {
  margin-top: 14px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.hero-order-wrap .order-menu {
  background: none;
  border-radius: 0;
  padding: 0;
}
.hero-order-wrap .order-menu.open {
  padding: 0;
}

/* ---------- Order Online — floating button ---------- */
.order-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: 240px;
}
.order-float .order-menu {
  display: none;
  background: none;
  padding: 0;
  border: none;
  outline: none;
  overflow: visible;
  max-height: none;
  opacity: 1;
  align-items: flex-end;
  width: 100%;
}
.order-float .order-menu .order-btn {
  flex: 0 0 auto;
  width: auto;
}
.order-float .order-menu.open {
  display: flex;
  max-height: none;
  opacity: 1;
}
.order-btn:focus-visible {
  outline: none;
}
.order-float-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 16px 28px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(198,40,40,0.4);
}
.order-float-btn:hover { background: var(--red-light); }

@media (max-width: 600px) {
  .order-float { bottom: 16px; right: 16px; }
  .order-float .order-menu { min-width: 200px; }
}

/* ---------- Location Picker Overlay ---------- */
#location-picker {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #1C1C1A;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: lp-in 0.4s ease;
  overflow-y: auto;
  overscroll-behavior: none;
}
.lp-inner {
  padding: 32px 24px 48px;
  margin: 0 auto;
}
#location-picker::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
#location-picker.lp-closing {
  animation: lp-out 0.35s ease forwards;
}
@keyframes lp-in  { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
@keyframes lp-out { from { opacity: 1; } to { opacity: 0; } }

.lp-inner {
  text-align: center;
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.lp-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(200,169,110,0.2);
}
.lp-title {
  font-family: var(--font-head);
  font-size: 3rem;
  color: #F5F0E8;
  letter-spacing: 4px;
  margin: 0 0 4px;
  line-height: 1;
}
.lp-title span { color: var(--yellow); }
.lp-sub {
  color: rgba(245,240,232,0.45);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 24px;
}

/* zip search */
.lp-zip-row {
  display: flex;
  gap: 0;
  margin-bottom: 6px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(245,240,232,0.2);
}
.lp-zip-input {
  flex: 1;
  background: #fff;
  border: none;
  color: #1C1C1A;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 18px;
  outline: none;
}
.lp-zip-input::placeholder { color: rgba(0,0,0,0.3); }
.lp-zip-input:focus { background: rgba(255,255,255,0.9); }
.lp-zip-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 13px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.lp-zip-btn:hover { background: var(--blue-dark); }
.lp-zip-btn:disabled { opacity: 0.5; cursor: default; }
.lp-zip-status {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  min-height: 1.4em;
  margin: 0 0 18px;
  letter-spacing: 0.5px;
}

/* divider */
.lp-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(245,240,232,0.3);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.lp-divider::before, .lp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245,240,232,0.12);
}

/* cards */
.lp-cards {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 14px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.lp-card:hover, .lp-card:focus-visible {
  background: #fff;
  border-color: var(--yellow);
  transform: translateX(4px);
  outline: none;
}
.lp-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: left;
}
.lp-card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.lp-card-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #1C1C1A;
  letter-spacing: 1.5px;
}
.lp-card-addr {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.55);
}
.lp-card-phone {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.65);
  font-weight: 500;
}
.lp-card-hours {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.45);
}
.lp-card--nearest {
  border-color: var(--yellow) !important;
  background: rgba(200,169,110,0.08) !important;
}
.lp-card--nearest .lp-card-name { color: var(--yellow-dark); }
.lp-online-badge {
  font-size: 0.65rem;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  background: var(--red);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lp-nearest-badge {
  font-size: 0.65rem;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  background: var(--yellow);
  color: #1C1C1A;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- Contact page ---------- */
.contact-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 60px;
}
.contact-hero-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
}
.contact-hero-title {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--white);
  letter-spacing: 4px;
  margin: 0;
  line-height: 1;
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.contact-split-left {
  background: #1C1C1A;
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-split-right {
  background: #f5f0e8;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-split-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.contact-split-heading {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
}
.contact-split-item { display: flex; flex-direction: column; gap: 6px; }
.contact-split-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.contact-split-right .contact-split-label { color: rgba(0,0,0,0.4); }
.contact-split-value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
}
.contact-split-right .contact-split-value { color: #1C1C1A; }
.contact-split-left a.contact-split-value { color: var(--yellow); }
@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-split-left, .contact-split-right { padding: 40px 24px; }
  .contact-hero-content { padding: 32px 24px; }
  .contact-hero-title { font-size: 2.8rem; }
}

/* ---------- Menu page location line ---------- */
.page-hero-location {
  font-size: 0.95rem;
  color: var(--yellow);
  letter-spacing: 1px;
  margin: 0 0 6px;
  opacity: 0.85;
}

/* ---------- Nav location indicator ---------- */
.nav-loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(249,201,0,0.12);
  border: 1px solid rgba(249,201,0,0.35);
  border-radius: 20px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-loc-btn svg {
  width: 14px;
  height: 14px;
  fill: var(--yellow);
  flex-shrink: 0;
}
.nav-loc-btn:hover { background: rgba(249,201,0,0.22); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
