/* ============================================================
   Sakura Ramen & Sushi — style.css
   Japanese zen modern: merah #c0392b + putih #f5f5f5 di navy #1a1a2e
   ============================================================ */

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

:root {
  --primary: #c0392b;
  --accent:  #f5f5f5;
  --bg:      #1a1a2e;
  --bg2:     #16213e;
  --bg3:     #0f3460;
  --text:    #ffffff;
  --muted:   #9aa0b8;
  --gold:    #e8c97e;
  --border:  rgba(192,57,43,0.25);
  --r:       6px;
  --rl:      14px;
  --shadow:  0 4px 28px rgba(0,0,0,0.45);
  --tr:      0.28s ease;
  --font:    -apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  --dbar:    38px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  padding-top: var(--dbar);
}

/* ---------- Demo Bar ---------- */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  height: var(--dbar);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.demo-bar a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.demo-bar a:hover { color: var(--gold); }

/* ---------- Typography ---------- */
h1 { font-size: clamp(1.9rem,5vw,3.4rem); }
h2 { font-size: clamp(1.4rem,3.5vw,2.3rem); }
h3 { font-size: clamp(1.05rem,2.5vw,1.45rem); }
h4 { font-size: 1.05rem; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; letter-spacing: -.01em; }
p  { color: var(--muted); line-height: 1.8; }
a  { text-decoration: none; color: inherit; transition: color var(--tr); }
ul { list-style: none; }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---------- Utility ---------- */
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.divider { width: 44px; height: 3px; background: var(--primary); border-radius: 2px; margin: 14px 0; }
.divider.c { margin: 14px auto; }
.text-center { text-align: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r);
  font-size: 15px; font-weight: 600; letter-spacing: .03em;
  border: none; cursor: pointer; transition: all var(--tr);
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #a93226; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,.4); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: var(--dbar);
  z-index: 1000;
  background: rgba(26,26,46,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text span:first-child { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.logo-text span:last-child  { font-size: 11px; color: var(--primary); letter-spacing: .08em; text-transform: uppercase; }

#nav-toggle { display: none; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
}
.nav-burger span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: .04em; position: relative; padding-bottom: 3px; }
.nav-links a::after { content:''; position: absolute; bottom:0; left:0; width:0; height:2px; background: var(--primary); transition: width var(--tr); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 8px 20px !important; background: var(--primary) !important; color: #fff !important; border-radius: var(--r); }
.nav-cta:hover { background: #a93226 !important; }
.nav-cta::after { display: none !important; }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0;
    background: var(--bg2); flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
    border-bottom: 0 solid var(--border);
  }
  .nav-links a { padding: 14px 22px; border-bottom: 1px solid var(--border); font-size: 15px; }
  .nav-links a::after { display: none; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  #nav-toggle:checked ~ .nav-links { max-height: 420px; border-bottom-width: 2px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 68% 38%, rgba(192,57,43,.13) 0%, transparent 68%),
    radial-gradient(ellipse 55% 50% at 15% 75%, rgba(15,52,96,.5) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg) 0%, #0d0d20 100%);
}
.hero-sakura-bg {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  opacity: .09; pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hero-eyebrow-line { width: 30px; height: 2px; background: var(--primary); flex-shrink: 0; }
.hero-eyebrow span { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); }
.hero h1 { margin-bottom: 6px; }
.hero-jp { display: block; font-size: clamp(.9rem,2vw,1.25rem); font-weight: 300; letter-spacing: .3em; color: var(--gold); margin-bottom: 6px; }
.hero-sub { font-size: clamp(.95rem,2.2vw,1.2rem); color: var(--muted); margin: 18px 0 32px; max-width: 460px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section { padding: 76px 0; }
.sec-hdr { margin-bottom: 44px; }
.sec-hdr.c { text-align: center; }

/* ============================================================
   FEATURED DISHES
   ============================================================ */
.dishes-grid { display: grid; gap: 22px; }
.dish-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  display: grid;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dish-visual {
  background: var(--bg3); min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.dish-info { padding: 22px; }
.dish-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 6px; }
.dish-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.dish-desc { font-size: 14px; margin-bottom: 14px; }
.dish-price { font-size: 1.15rem; font-weight: 800; color: var(--gold); }

/* ============================================================
   EXPERIENCE GRID
   ============================================================ */
.exp-grid { display: grid; gap: 32px; align-items: center; }
.exp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.exp-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 22px 18px; text-align: center;
}
.exp-card-icon { width: 46px; height: 46px; margin: 0 auto 10px; }
.exp-card h4 { font-size: .95rem; margin-bottom: 6px; }
.exp-card p { font-size: 13px; }
.exp-big {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 38px; position: relative; overflow: hidden;
}
.exp-big::before {
  content:''; position: absolute; top:-40px; right:-40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,.14) 0%, transparent 70%);
}
.exp-big h2 { margin-bottom: 14px; }
.exp-big p  { margin-bottom: 20px; }

/* ============================================================
   HOURS
   ============================================================ */
.hours-wrap { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hours-grid { display: grid; gap: 32px; align-items: center; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--muted); }
.hours-row .time { font-weight: 600; }
.hours-cta {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 34px 28px; text-align: center;
}
.hours-cta h3 { margin-bottom: 8px; }
.hours-cta p  { margin-bottom: 22px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #8e1f17 100%);
  text-align: center; padding: 76px 20px;
  position: relative; overflow: hidden;
}
.cta-banner::before { content:''; position: absolute; top:-60px; right:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.04); }
.cta-banner::after  { content:''; position: absolute; bottom:-80px; left:-40px; width:240px; height:240px; border-radius:50%; background:rgba(0,0,0,.1); }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner > .container > p { color: rgba(255,255,255,.82); margin-bottom: 30px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { border-color: #fff; color: #fff; }
.cta-banner .btn-outline:hover { background: #fff; color: var(--primary); }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  background: var(--bg2); padding: 76px 0 54px;
  text-align: center; border-bottom: 1px solid var(--border);
}
.cat-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 36px 0; }
.cat-btn {
  padding: 8px 20px; border-radius: 99px;
  font-size: 14px; font-weight: 600;
  background: var(--bg2); color: var(--muted);
  border: 1px solid var(--border); cursor: pointer;
  transition: all var(--tr);
}
.cat-btn:hover, .cat-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.menu-sec { padding: 54px 0; border-bottom: 1px solid var(--border); }
.menu-sec:last-of-type { border-bottom: none; }
.menu-sec-title { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.menu-sec-icon { width: 44px; height: 44px; flex-shrink: 0; }
.menu-sec-title h2 { font-size: 1.7rem; }
.menu-sec-title p  { font-size: 13px; color: var(--muted); }
.menu-grid { display: grid; gap: 14px; }
.menu-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color var(--tr);
}
.menu-item:hover { border-color: var(--primary); }
.menu-thumb {
  width: 60px; height: 60px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg3); display: flex; align-items: center; justify-content: center;
}
.menu-body { flex: 1; min-width: 0; }
.item-name { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.item-jp   { font-size: 11px; color: var(--gold); letter-spacing: .08em; }
.item-desc { font-size: 13px; color: var(--muted); margin-top: 4px; }
.item-price { font-size: 1rem; font-weight: 800; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; padding: 2px 7px; border-radius: 99px;
  text-transform: uppercase; margin-left: 6px; vertical-align: middle;
}
.badge-best { background: rgba(192,57,43,.15); color: var(--primary); }
.badge-halal { background: rgba(46,204,113,.15); color: #2ecc71; }
.badge-veg   { background: rgba(39,174,96,.15);  color: #27ae60; }
.badge-new   { background: rgba(232,201,126,.15); color: var(--gold); }

/* ============================================================
   TENTANG
   ============================================================ */
.story-grid { display: grid; gap: 44px; align-items: center; }
.story-visual {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); overflow: hidden;
  min-height: 340px; display: flex; align-items: center; justify-content: center;
}
.quote-box {
  padding: 20px 20px 20px 24px;
  background: var(--bg2); border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0; margin-top: 24px;
}
.quote-box p { font-style: italic; color: var(--text); font-size: 15px; }
.values-grid { display: grid; gap: 18px; }
.val-card {
  background: var(--bg2); border-left: 3px solid var(--primary);
  border-radius: 0 var(--rl) var(--rl) 0; padding: 22px;
}
.val-card h4 { margin-bottom: 6px; }
.team-grid { display: grid; gap: 20px; }
.team-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px 22px; text-align: center;
}
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--bg3); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--primary);
}
.team-card .role { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cert-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 26px 18px; text-align: center;
}
.cert-card h4 { font-size: 13px; margin-top: 10px; }

/* ============================================================
   GALERI
   ============================================================ */
.gallery-intro {
  padding: 76px 0 46px; text-align: center;
  background: var(--bg2); border-bottom: 1px solid var(--border);
}
.gallery-grid { display: grid; gap: 20px; padding: 56px 0; }
.gallery-item {
  border-radius: var(--rl); overflow: hidden;
  border: 1px solid var(--border); background: var(--bg2);
}
.gallery-item.featured { grid-column: 1 / -1; }
.g-visual {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg2); position: relative; overflow: hidden;
}
.g-caption { padding: 18px; }
.g-caption h3 { font-size: 15px; margin-bottom: 4px; }
.g-caption p  { font-size: 13px; }

/* ============================================================
   RESERVASI
   ============================================================ */
.res-layout { display: grid; gap: 44px; padding: 56px 0; }
.form-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 38px 30px;
}
.form-title { margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 7px; }
.form-label span { color: var(--primary); }
.form-ctrl {
  width: 100%; padding: 11px 15px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--text); font-size: 15px;
  font-family: var(--font); outline: none; transition: border-color var(--tr);
}
.form-ctrl:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,57,43,.15); }
.form-ctrl option { background: var(--bg2); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-group { display: flex; gap: 14px; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.radio-opt input { accent-color: var(--primary); width: 16px; height: 16px; }
.radio-opt span  { font-size: 14px; color: var(--muted); }
.btn-submit { width: 100%; padding: 15px; font-size: 16px; justify-content: center; }
.sidebar-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 26px 22px;
}
.info-card h4 { margin-bottom: 14px; }
.info-item { display: flex; gap: 10px; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { color: var(--primary); flex-shrink: 0; }
.policy-list li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--muted);
  display: flex; gap: 8px;
}
.policy-list li::before { content:'•'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.policy-list li:last-child { border-bottom: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0d0d1a; border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-grid { display: grid; gap: 36px; margin-bottom: 44px; }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 270px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); }
.footer-col ul li a:hover { color: var(--primary); }
.f-contact { display: flex; gap: 9px; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--muted);
}
.footer-bottom a { color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 540px) {
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .dishes-grid { grid-template-columns: repeat(3,1fr); }
  .exp-grid    { grid-template-columns: 1fr 1fr; }
  .hours-grid  { grid-template-columns: 1fr 1fr; }
  .story-grid  { grid-template-columns: 1fr 1fr; }
  .menu-grid   { grid-template-columns: repeat(3,1fr); }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .gallery-item.featured { grid-column: span 2; }
  .team-grid   { grid-template-columns: repeat(3,1fr); }
  .cert-grid   { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .res-layout  { grid-template-columns: 3fr 2fr; }
  .form-row-2  { grid-template-columns: 1fr 1fr; }
}
