/* HibachiPassion — Hibachi at Home Columbus Ohio */
:root {
    --primary-color: #ff5a1f;
    --primary-dark: #d8401a;
    --accent-color: #ffb627;
    --red: #c8231c;
    --dark-color: #151313;
    --dark-2: #221d1b;
    --ink: #2a2522;
    --muted: #6d625b;
    --cream: #fff8f0;
    --sand: #f6ebdf;
    --line: #eadccd;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(21, 19, 19, 0.12);
    --transition: all 0.25s ease;
    --font-head: "Oswald", "Arial Narrow", Arial, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); }
h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.15;
    color: var(--dark-color);
    margin: 0 0 0.6em;
    letter-spacing: 0.3px;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--white); padding: 8px 14px; z-index: 999; }
.skip-link:focus { left: 10px; }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--dark-color); color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.topbar .container { display: flex; justify-content: space-between; gap: 12px; padding-top: 6px; padding-bottom: 6px; flex-wrap: wrap; }
.topbar a { color: var(--accent-color); text-decoration: none; }
.topbar span { white-space: nowrap; }

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(21, 19, 19, 0.96);
    border-bottom: 3px solid var(--primary-color);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 16px; }
.logo a { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; transition: opacity 0.3s; }
.logo a:hover { opacity: 0.85; }
.logo img { width: 60px; height: 60px; }
.logo-text { font-family: var(--font-head); font-size: 1.45rem; line-height: 1; text-transform: uppercase; }
.logo-text small { display: block; font-family: var(--font-body); font-size: 0.66rem; letter-spacing: 1px; color: var(--accent-color); margin-top: 4px; white-space: nowrap; }

.main-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; align-items: center; }
.main-nav a {
    color: rgba(255,255,255,0.88); text-decoration: none; font-weight: 600; font-size: 0.95rem;
    padding: 8px 9px; border-radius: 8px; transition: var(--transition); white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--accent-color); }
.main-nav .nav-cta a { background: var(--primary-color); color: var(--white); padding: 10px 18px; }
.main-nav .nav-cta a:hover { background: var(--primary-dark); color: var(--white); }
.nav-toggle {
    display: none; background: none; border: 2px solid rgba(255,255,255,0.4); color: var(--white);
    border-radius: 8px; padding: 8px 10px; cursor: pointer; font-size: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; font-weight: 700; text-decoration: none; border-radius: 999px;
    padding: 14px 28px; transition: var(--transition); border: 2px solid transparent; cursor: pointer;
    font-size: 1rem; text-align: center;
}
.btn-primary { background: var(--primary-color); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark-color); }
.btn-dark { background: var(--dark-color); color: var(--white); }
.btn-dark:hover { background: var(--red); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); min-height: min(88vh, 820px); display: flex; align-items: center; overflow: hidden; background: var(--dark-color); }
.hero-media, .hero-media video, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,8,8,0.88) 0%, rgba(10,8,8,0.55) 55%, rgba(10,8,8,0.25) 100%); }
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero h1 { color: var(--white); max-width: 760px; }
.hero h1 span { color: var(--primary-color); }
.hero .lead { font-size: 1.2rem; max-width: 620px; color: rgba(255,255,255,0.9); }
.eyebrow { display: inline-block; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.82rem; color: var(--accent-color); margin-bottom: 12px; }
.hero-facts { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; font-size: 0.95rem; }
.hero-facts div { border-left: 3px solid var(--primary-color); padding-left: 10px; }
.hero-facts strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }

.page-hero { position: relative; color: var(--white); padding: 90px 0 70px; background: var(--dark-color); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.38; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4.8vw, 3.2rem); }
.page-hero p { max-width: 720px; font-size: 1.1rem; color: rgba(255,255,255,0.9); }
.breadcrumb { font-size: 0.88rem; margin-bottom: 14px; color: rgba(255,255,255,0.75); }
.breadcrumb a { color: var(--accent-color); text-decoration: none; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--dark-color); color: rgba(255,255,255,0.86); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
    background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}
.section-dark .card { background: var(--dark-2); color: rgba(255,255,255,0.85); box-shadow: none; }
.card .icon { font-size: 2rem; margin-bottom: 8px; }
.rounded-img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.img-tall { aspect-ratio: 4 / 5; }
.img-wide { aspect-ratio: 16 / 10; }

/* ---------- Pricing ---------- */
.price-card { text-align: center; position: relative; }
.price-card .price { font-family: var(--font-head); font-size: 3rem; color: var(--primary-dark); line-height: 1; margin: 10px 0; }
.price-card .price small { font-size: 1rem; color: var(--muted); font-family: var(--font-body); }
.price-card.featured { border-top-color: var(--red); transform: translateY(-8px); }
.badge { display: inline-block; background: var(--red); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 999px; letter-spacing: 1px; text-transform: uppercase; }
.price-note { background: var(--white); border-left: 5px solid var(--accent-color); padding: 18px 22px; border-radius: 10px; margin-top: 28px; }
.check-list { list-style: none; padding: 0; margin: 0 0 1em; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.check-list li::before { content: "🔥"; position: absolute; left: 0; font-size: 0.95rem; }
.menu-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.menu-table th, .menu-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.menu-table th { background: var(--dark-color); color: var(--white); font-family: var(--font-head); font-weight: 500; letter-spacing: 0.5px; }
.menu-table td:last-child { font-weight: 700; color: var(--primary-dark); white-space: nowrap; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 70px; margin-bottom: 26px; }
.step::before {
    counter-increment: step; content: counter(step);
    position: absolute; left: 0; top: 0; width: 50px; height: 50px; border-radius: 50%;
    background: var(--primary-color); color: var(--white); font-family: var(--font-head); font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.gallery figure { margin: 0; border-radius: 12px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { padding: 10px 14px; font-size: 0.9rem; color: var(--muted); }

/* ---------- Areas ---------- */
.area-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; list-style: none; padding: 0; margin: 0; }
.area-list a, .area-list span {
    display: block; background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px;
    text-decoration: none; color: var(--ink); font-weight: 600; transition: var(--transition);
}
.area-list a:hover { border-color: var(--primary-color); color: var(--primary-dark); }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border-radius: 12px; margin-bottom: 12px; box-shadow: 0 4px 14px rgba(0,0,0,0.05); }
.faq-item summary {
    cursor: pointer; padding: 18px 50px 18px 22px; font-weight: 700; list-style: none; position: relative; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--primary-color); }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 18px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--red), var(--primary-color)); color: var(--white); padding: 60px 0; }
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band .btn-dark:hover { background: var(--white); color: var(--dark-color); }

/* ---------- Blog ---------- */
.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.post-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.post-card .post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-card h3 a { color: var(--dark-color); text-decoration: none; }
.post-card h3 a:hover { color: var(--primary-dark); }
.post-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 8px; }
.article { background: var(--white); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow); }
.article h2 { font-size: 1.7rem; margin-top: 1.4em; }
.article img { border-radius: 12px; margin: 10px 0 24px; }
.tldr { background: var(--sand); border-left: 5px solid var(--primary-color); padding: 18px 22px; border-radius: 10px; margin-bottom: 26px; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.contact-form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px; font: inherit;
    background: var(--cream); color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary-color); background: var(--white); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .agree { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 0.92rem; }
.contact-form .agree input { width: auto; margin-top: 5px; }
.contact-form button { margin-top: 8px; width: 100%; }
.terms-box { background: var(--sand); border-radius: 10px; padding: 16px 18px; font-size: 0.92rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list strong { display: block; font-family: var(--font-head); font-weight: 500; font-size: 1.05rem; color: var(--dark-color); }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); }

/* ---------- Footer ---------- */
footer { background: var(--dark-color); color: var(--white); padding: 3rem 0 1rem; margin-top: 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.2rem; }
.footer-section p, .footer-section a { color: rgba(255, 255, 255, 0.8); line-height: 1.8; }
.footer-section a { text-decoration: none; }
.footer-section a:hover { color: var(--accent-color); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.6); }
.footer-bottom p { margin-bottom: 0.5rem; }
.footer-partner { margin-top: 1rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }
.footer-partner a { color: var(--accent-color); text-decoration: none; transition: var(--transition); }
.footer-partner a:hover { color: var(--white); }
.lang-zh { display: none; }

/* ---------- Mobile call bar ---------- */
.mobile-bar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .price-card.featured { transform: none; }
}
@media (min-width: 1221px) { .nav-close { display: none !important; } }
@media (max-width: 1220px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed; top: 0; right: 0; height: 100dvh; width: min(320px, 85vw);
        background: var(--dark-color); transform: translateX(100%); transition: transform 0.3s ease;
        padding: 90px 20px 20px; overflow-y: auto; z-index: 150;
    }
    .main-nav.open { transform: translateX(0); box-shadow: -10px 0 30px rgba(0,0,0,0.4); }
    .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
    .main-nav a { display: block; padding: 12px 14px; font-size: 1.05rem; }
    .nav-close { position: absolute; top: 20px; right: 20px; }
}
@media (max-width: 720px) {
    body { font-size: 16px; padding-bottom: 62px; }
    section { padding: 56px 0; }
    .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
    .gallery figcaption { display: none; }
    .hero { min-height: 78vh; }
    .topbar .tb-hours { display: none; }
    .logo img { width: 48px; height: 48px; }
    .logo-text { font-size: 1.2rem; }
    .article { padding: 24px 18px; }
    .form-card { padding: 22px 16px; }
    .menu-table th, .menu-table td { padding: 11px 12px; }
    .mobile-bar {
        display: grid; grid-template-columns: 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
        box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
    }
    .mobile-bar a { padding: 16px 8px; text-align: center; font-weight: 700; color: var(--white); text-decoration: none; }
    .mobile-bar a:first-child { background: var(--dark-color); }
    .mobile-bar a:last-child { background: var(--primary-color); }
}
