/* ============================================================
   KIYOSHI BISTRO — Main Stylesheet
   Colors inspired by the new dine-in menu design
   ============================================================ */

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

/* ── Variables ── */
:root {
  --bg-dark:    #0b0b17;
  --bg-mid:     #111124;
  --bg-card:    #17172e;
  --gold:       #c9a256;
  --gold-light: #e8c97a;
  --gold-dark:  #8c6e2f;
  --blue:       #2a5fa5;
  --blue-bg:    #d6e4f5;
  --text:       #f2ede4;
  --muted:      #8a7f6e;
  --border:     rgba(201,162,86,.18);
  --border-hi:  rgba(201,162,86,.45);
  --radius:     6px;
  --ease:       all .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg-dark);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: var(--gold); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ────────────────────────────────────────────
   NAV
──────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(11,11,23,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-brand img {
  height: 44px; width: auto; border-radius: 3px;
}
.nav-brand-sub {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.nav-links {
  display: flex; list-style: none; gap: 4px; align-items: center;
}
.nav-links a {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  padding: 8px 13px; border-radius: var(--radius);
  transition: var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); background: rgba(201,162,86,.09); }

/* Hamburger */
.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-ham span { display: block; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--ease); }

/* Mobile drawer */
.nav-drawer {
  display: none; flex-direction: column;
  background: var(--bg-mid); border-top: 1px solid var(--border);
  padding: 12px 24px 24px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--muted); font-weight: 600; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  transition: var(--ease);
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--gold); }

/* ────────────────────────────────────────────
   HERO (home page)
──────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 130px 24px 80px;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(42,95,165,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(201,162,86,.06) 0%, transparent 50%),
    radial-gradient(ellipse at center top, #161630 0%, var(--bg-dark) 65%);
}
.hero-logo { margin-bottom: 28px; }
.hero-logo img {
  height: 180px; width: auto; border-radius: 8px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(201,162,86,.12);
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.4rem,6vw,4.4rem);
  color: var(--text); margin-bottom: 18px;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); font-weight: 300;
  max-width: 540px; margin: 0 auto 38px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 13px 30px;
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--ease); cursor: pointer;
}
.btn-gold {
  background: var(--gold); color: #0b0b17;
}
.btn-gold:hover { background: var(--gold-light); color: #0b0b17; transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--gold); color: var(--gold); background: transparent;
}
.btn-ghost:hover { background: rgba(201,162,86,.1); color: var(--gold-light); transform: translateY(-2px); }

/* ────────────────────────────────────────────
   PAGE HEADER (interior pages)
──────────────────────────────────────────── */
.page-hdr {
  padding: 140px 24px 60px; text-align: center;
  background:
    radial-gradient(ellipse at center top, #161630 0%, var(--bg-dark) 70%);
  border-bottom: 1px solid var(--border);
}
.page-hdr-eye {
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.page-hdr h1 {
  font-size: clamp(2rem,5vw,3.4rem); color: var(--text); margin-bottom: 10px;
}
.page-hdr p {
  color: var(--muted); font-size: .95rem; font-weight: 300;
  max-width: 520px; margin: 0 auto;
}

/* ────────────────────────────────────────────
   DECORATIVE DIVIDER
──────────────────────────────────────────── */
.orn { display: flex; align-items: center; gap: 14px; margin: 36px 0; }
.orn::before, .orn::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-hi), transparent);
}
.orn-diamond {
  width: 9px; height: 9px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ────────────────────────────────────────────
   HOME — QUICK INFO CARDS
──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 22px;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 30px 26px; text-align: center;
  transition: var(--ease);
}
.card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.card-icon { font-size: 1.9rem; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; color: var(--gold); margin-bottom: 10px; }
.card p, .card address {
  color: var(--muted); font-style: normal; font-size: .9rem; line-height: 1.85;
}
.card a { color: var(--gold); }

/* ────────────────────────────────────────────
   MENU SECTIONS
──────────────────────────────────────────── */
.menu-sec { margin-bottom: 68px; }

.menu-sec-hdr { margin-bottom: 28px; }

.menu-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem,3vw,1.9rem);
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.menu-sec-title::before {
  content: '◆'; font-size: .65em; color: var(--gold-dark); flex-shrink: 0;
}
.menu-sec-note {
  margin-top: 8px; font-size: .82rem; color: var(--muted); font-style: italic;
}

/* Items grid */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px,1fr));
  gap: 1px;
}
.menu-items.one-col   { grid-template-columns: 1fr; }
.menu-items.three-col { grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); }

.mi {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 13px 14px; border-radius: var(--radius); gap: 14px;
  transition: var(--ease);
}
.mi:hover { background: rgba(201,162,86,.05); }

.mi-info { flex: 1; }
.mi-name {
  font-family: 'Playfair Display', serif;
  font-size: .98rem; font-weight: 600; color: var(--text); margin-bottom: 3px;
}
.mi-name .badge {
  display: inline-block; font-size: .62rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 1px 7px; border-radius: 3px; margin-left: 7px;
  vertical-align: middle; font-family: 'Raleway', sans-serif;
}
.badge-new  { background: rgba(42,95,165,.2); color: #7aaadf; }
.badge-hot  { background: rgba(200,60,60,.2); color: #e08080; }
.badge-veg  { background: rgba(60,160,80,.2); color: #80cc88; }

.mi-desc {
  font-size: .8rem; color: var(--muted); line-height: 1.5; font-style: italic;
}

/* Spicy indicator */
.spicy-icon {
  display: inline-block; font-size: .8rem; margin-right: 4px;
  vertical-align: middle; line-height: 1;
}
.menu-legend {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-bottom: 18px; font-size: .78rem; color: var(--muted);
}
.menu-legend span { display: flex; align-items: center; gap: 5px; }
.mi-price {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: .93rem; color: var(--gold);
  white-space: nowrap; flex-shrink: 0; padding-top: 1px;
}

/* Sub-section within menu */
.menu-sub { margin-bottom: 36px; }
.menu-sub-title {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--text); font-style: italic;
  margin-bottom: 14px; padding-left: 12px;
  border-left: 2px solid var(--gold-dark);
}

/* Poke bowl cards */
.poke-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px,1fr));
  gap: 18px;
}
.poke-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px 20px; transition: var(--ease);
}
.poke-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.poke-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--text); margin-bottom: 7px;
}
.poke-card-desc {
  font-size: .8rem; color: var(--muted); line-height: 1.6;
  font-style: italic; margin-bottom: 12px;
}
.poke-card-price {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--gold);
}
.poke-card-sauce {
  font-size: .76rem; color: var(--gold-dark); font-style: italic;
  font-weight: 600; margin-top: 6px; letter-spacing: .03em;
}

/* Hibachi Bowl protein row */
.hibachi-bowl-proteins {
  display: flex; flex-wrap: wrap; gap: 16px; margin: 18px 0 12px;
}
.hibachi-bowl-protein {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 22px; text-align: center; flex: 1; min-width: 120px;
  transition: var(--ease);
}
.hibachi-bowl-protein:hover { border-color: var(--border-hi); }
.hibachi-bowl-protein-name {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--text); margin-bottom: 4px;
}
.hibachi-bowl-protein-price {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--gold);
}
.hibachi-bowl-desc {
  font-size: .85rem; color: var(--muted); font-style: italic; margin-bottom: 16px;
}
.addons-box {
  background: rgba(201,162,86,.07); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 20px; margin-top: 24px;
}
.addons-box-title {
  font-family: 'Playfair Display', serif; font-size: .9rem;
  color: var(--gold); margin-bottom: 10px; font-weight: 600;
}
.addons-list {
  display: flex; flex-wrap: wrap; gap: 8px 28px; list-style: none;
}
.addons-list li {
  font-size: .82rem; color: var(--muted);
}
.addons-list li strong { color: var(--text); }

/* Info box (e.g. hibachi includes) */
.info-box {
  background: rgba(201,162,86,.07); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 20px;
  margin-bottom: 22px;
  font-size: .87rem; color: var(--muted); font-style: italic; text-align: center;
}

/* Section title block */
.sec-title { text-align: center; margin-bottom: 44px; }
.sec-title .eye {
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block;
}
.sec-title h2 { font-size: clamp(1.7rem,4vw,2.7rem); color: var(--text); }

/* Signature dish cards */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 20px;
}
.sig-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px 22px; transition: var(--ease);
}
.sig-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.sig-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px;
}
.sig-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--text); font-weight: 600;
}
.sig-card-price {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--gold); flex-shrink: 0; padding-left: 12px;
}
.sig-card-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; font-style: italic; }

/* ────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact-block h3 {
  font-size: 1.35rem; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.cdet { display: flex; gap: 15px; margin-bottom: 18px; align-items: flex-start; }
.cdet-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.cdet-body h4 {
  font-family: 'Playfair Display', serif; font-size: .93rem; color: var(--text); margin-bottom: 3px;
}
.cdet-body p, .cdet-body address {
  font-size: .88rem; color: var(--muted); font-style: normal; line-height: 1.75;
}
.cdet-body a { color: var(--gold); }

.hours-tbl { width: 100%; border-collapse: collapse; }
.hours-tbl tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.hours-tbl td { padding: 9px 0; font-size: .88rem; }
.hours-tbl td:first-child { color: var(--muted); }
.hours-tbl td:last-child { color: var(--gold); text-align: right; font-weight: 600; }

.map-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; height: 280px; margin-top: 24px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: invert(88%) hue-rotate(180deg) saturate(.75) brightness(.88); }

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer {
  background: var(--bg-mid); border-top: 1px solid var(--border);
  padding: 52px 24px 30px; text-align: center;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { height: 52px; width: auto; border-radius: 4px; margin: 0 auto; }
.footer-tag { color: var(--muted); font-size: .85rem; margin-bottom: 20px; }
.footer-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 22px; list-style: none; margin-bottom: 20px;
}
.footer-nav a {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.footer-nav a:hover { color: var(--gold); }
.footer-sep { height: 1px; background: var(--border); max-width: 380px; margin: 18px auto; }
.footer-copy { font-size: .75rem; color: var(--muted); opacity: .65; }

.allergen {
  background: rgba(201,162,86,.06); border: 1px solid var(--border);
  border-radius: 6px; padding: 14px 18px; margin-top: 44px;
  font-size: .78rem; color: var(--muted); text-align: center;
  max-width: 820px; margin-left: auto; margin-right: auto;
}

/* Lunch special note box */
.lunch-note {
  background: rgba(42,95,165,.08); border: 1px solid rgba(42,95,165,.25);
  border-radius: 8px; padding: 16px 22px; margin-bottom: 30px;
  font-size: .88rem; color: var(--muted); font-style: italic;
}
.lunch-note strong { color: var(--text); font-style: normal; }

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid  { grid-template-columns: 1fr; }
  .menu-items    { grid-template-columns: 1fr; }
  .poke-grid     { grid-template-columns: 1fr; }
  .sig-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-logo img { height: 130px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 270px; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
}
