/* =============================================
   HIBACHI EXPRESS — STYLESHEET
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fire:    #e84118;
  --fire-dk: #c0392b;
  --gold:    #f39c12;
  --charcoal:#1a1a1a;
  --dark:    #111111;
  --mid:     #2c2c2c;
  --smoke:   #444444;
  --light:   #f5f0eb;
  --white:   #ffffff;
  --text:    #333333;
  --text-lt: #666666;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);

  --nav-h: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── UTILITIES ── */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.section { padding-block: 96px; }

.section__header { text-align: center; max-width: 640px; margin-inline: auto; margin-bottom: 64px; }
.section__header--light .section__title { color: var(--white); }

.section__eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: .75rem;
}
.section__eyebrow--light { color: var(--gold); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--white); }

.section__desc { color: var(--text-lt); font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--fire);
  color: var(--white);
  border-color: var(--fire);
}
.btn--primary:hover {
  background: var(--fire-dk);
  border-color: var(--fire-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,65,24,.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(17,17,17,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav__logo-fire { font-size: 1.2rem; }

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--fire) !important;
  color: var(--white) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav__cta:hover {
  background: var(--fire-dk) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.hibachi.express/food.jpeg');
  background-size: cover;
  background-position: center 40%;
  animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
  from { filter: brightness(1); }
  to   { filter: brightness(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.72) 0%,
    rgba(15,4,0,.62) 50%,
    rgba(0,0,0,.78) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero__eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}
.hero__title em {
  font-style: normal;
  color: var(--fire);
  display: block;
}

.hero__sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.8);
  font-weight: 300;
  letter-spacing: .06em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s .6s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollBob 1.5s ease-in-out infinite;
}

@keyframes scrollBob {
  0%, 100% { top: 5px; opacity: 1; }
  50%       { top: 18px; opacity: .3; }
}

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

/* ── BANNER ── */
.banner {
  background: var(--fire);
  padding: 1rem 0;
  overflow: hidden;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
}
.banner__sep { opacity: .5; }

/* ── ABOUT ── */
.about { background: var(--light); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual { position: relative; }

.about__img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about__img--1 {
  grid-column: 1 / 3;
  height: 280px;
  padding: 0;
}
.about__img--1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: var(--radius);
}
.about__img--2 {
  grid-column: 1 / 3;
  height: 170px;
  padding: 0;
}
.about__img--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: var(--radius);
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--fire);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about__badge-num { font-size: 1.8rem; line-height: 1; }
.about__badge-text { font-size: .55rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.about__text .section__eyebrow { text-align: left; }
.about__text .section__title { text-align: left; }

.about__text p {
  color: var(--text-lt);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about__features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,65,24,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about__feature strong { display: block; font-weight: 600; color: var(--charcoal); }
.about__feature p { margin: 0; font-size: .9rem; color: var(--text-lt); }

/* ── MENU ── */
.menu { background: var(--white); }

.menu__tabs {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu__tab {
  padding: .65rem 1.5rem;
  border-radius: 50px;
  border: 2px solid #e0d8d0;
  background: none;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-lt);
  cursor: pointer;
  transition: all .2s;
}
.menu__tab:hover { border-color: var(--fire); color: var(--fire); }
.menu__tab.active {
  background: var(--fire);
  border-color: var(--fire);
  color: var(--white);
}

.menu__panel { display: none; }
.menu__panel.active { display: block; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.menu__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu__card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.menu__card:hover .menu__card-img img {
  transform: scale(1.06);
}

.menu__card-body { padding: 1.25rem; }

.menu__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .5rem;
}

.menu__card-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.menu__price {
  font-weight: 700;
  color: var(--fire);
  font-size: .9rem;
  white-space: nowrap;
}

.menu__card-body p {
  font-size: .875rem;
  color: var(--text-lt);
  line-height: 1.55;
  margin-bottom: .75rem;
}

.menu__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fire);
  background: rgba(232,65,24,.1);
  padding: .2rem .65rem;
  border-radius: 50px;
}

.menu__cta {
  margin-top: 64px;
  text-align: center;
}
.menu__cta p {
  color: var(--text-lt);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

/* ── GALLERY / EXPERIENCE ── */
.gallery {
  background: var(--dark);
  padding-block: 96px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 260px;
  gap: 14px;
}

.gallery__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gallery__photo--tall {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.gallery__photo:nth-child(2) {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.gallery__photo:nth-child(3) {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}
.gallery__photo--wide {
  grid-row: 2 / 3;
  grid-column: 1 / 4;
}

.gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery__photo:hover img { transform: scale(1.05); }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .01em;
}
.gallery__photo--wide .gallery__caption { font-size: 1.3rem; }

/* ── WHY ── */
.why { background: var(--light); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.why__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.why__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.why__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .5rem;
}

.why__card p {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.6;
}

/* ── CONTACT ── */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section__eyebrow,
.contact__info .section__title { text-align: left; }

.contact__info > p {
  color: var(--text-lt);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(232,65,24,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .2rem;
}

.contact__detail p, .contact__detail a {
  color: var(--text-lt);
  font-size: .95rem;
}
.contact__detail a:hover { color: var(--fire); }

.contact__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}
.contact__actions .btn--outline {
  color: var(--charcoal);
  border-color: #ccc;
}
.contact__actions .btn--outline:hover {
  border-color: var(--fire);
  color: var(--fire);
  background: rgba(232,65,24,.05);
}

.contact__map {
  align-self: stretch;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.footer__address {
  margin-top: .5rem;
  font-size: .85rem;
}

.footer__links h4,
.footer__contact h4,
.footer__payments h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__links a { font-size: .9rem; transition: color .2s; }
.footer__links a:hover { color: var(--fire); }

.footer__contact p, .footer__contact a {
  font-size: .9rem;
  display: block;
  margin-bottom: .4rem;
  transition: color .2s;
}
.footer__contact a:hover { color: var(--fire); }

.footer__cards {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.card-badge {
  display: inline-block;
  padding: .25rem .6rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255,255,255,.7);
}

.footer__bottom {
  padding-block: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .about__badge { right: 0; }

  .footer__inner { grid-template-columns: 1fr 1fr; }

  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px 220px; }
  .gallery__photo--tall { grid-column: 1 / 2; grid-row: 1 / 2; }
  .gallery__photo:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .gallery__photo:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery__photo--wide { grid-column: 1 / 3; grid-row: 3 / 4; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .section { padding-block: 64px; }

  .nav__links {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0;
    background: rgba(17,17,17,.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.2rem; }
  .nav__cta { padding: .75rem 2rem; }

  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero__title { font-size: clamp(3rem, 16vw, 5rem); }

  .banner__inner { gap: 1rem; font-size: .8rem; }
  .banner__sep { display: none; }

  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 220px); }
  .gallery__photo--tall,
  .gallery__photo:nth-child(2),
  .gallery__photo:nth-child(3),
  .gallery__photo--wide { grid-column: 1; grid-row: auto; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .contact__actions { flex-direction: column; }
}
