:root {
  --primary: #d32f2f;
  --accent: #ff8f00;
  --bg: #fff8f0;
  --text: #1a1a1a;
  --white: #ffffff;
  --light: #fff3e0;
  --border: #e0c8a0;
  --muted: #6b5a4e;
  --shadow: 0 4px 20px rgba(211,47,47,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 36px;
}

/* DEMO BAR */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.demo-bar a { color: #ffe082; text-decoration: underline; margin: 0 4px; }
.demo-bar a:hover { color: var(--white); }

/* BASE */
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.2; font-weight: 900; }

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); text-decoration: none; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }

.section { padding: 64px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--primary); color: var(--white); }

.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--muted); font-size: 1rem; margin-bottom: 40px; }
.section-dark .section-sub { color: #ffcc80; }

/* HEADER */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 36px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text strong { display: block; font-size: 1rem; font-weight: 900; color: var(--primary); }
.logo-text span { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

#nav-toggle { display: none; }
.nav-label {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; width: 32px; padding: 4px;
}
.nav-label span { display: block; height: 3px; background: var(--primary); border-radius: 2px; transition: all 0.25s; }
#nav-toggle:checked ~ .nav-label span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
#nav-toggle:checked ~ .nav-label span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .nav-label span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.main-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 16px 0;
}
#nav-toggle:checked ~ .main-nav { display: block; }
.main-nav ul { display: flex; flex-direction: column; }
.main-nav a {
  display: block; padding: 12px 24px;
  font-weight: 700; font-size: 0.95rem;
  color: var(--text);
  border-left: 4px solid transparent;
  transition: all 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary); border-left-color: var(--primary);
  background: var(--light); text-decoration: none;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #b71c1c 40%, var(--accent) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; background: rgba(255,255,255,0.06); border-radius: 50%;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  gap: 32px; align-items: center; text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2); color: #ffe082;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 18px;
  border-radius: 50px; border: 1px solid rgba(255,255,255,0.3);
}
.hero h1 { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 900; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero h1 span { color: #ffe082; }
.hero-desc { font-size: 1.05rem; max-width: 540px; opacity: 0.92; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: #ffe082; }
.hero-stat span { font-size: 0.8rem; opacity: 0.85; }

/* Bowl Illustration */
.hero-bowl { width: 200px; height: 200px; position: relative; margin: 0 auto; }
.bowl-outer {
  width: 200px; height: 120px;
  background: linear-gradient(180deg, #fff8f0 60%, #e0c8a0 100%);
  border-radius: 0 0 100px 100px;
  position: absolute; bottom: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  overflow: hidden;
}
.bowl-soup {
  position: absolute; top: 8px; left: 8px; right: 8px; height: 60px;
  background: linear-gradient(180deg, #bf360c 0%, #8d2c0a 100%);
  border-radius: 0 0 80px 80px;
}
.bowl-ball {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6d4c41, #3e2723);
  box-shadow: inset -3px -3px 8px rgba(0,0,0,0.4);
}
.b1 { width: 36px; height: 36px; top: -18px; left: 30px; }
.b2 { width: 30px; height: 30px; top: -12px; left: 70px; }
.b3 { width: 34px; height: 34px; top: -16px; right: 30px; }
.b4 { width: 24px; height: 24px; top: -8px; left: 50%; }
.bowl-rim {
  width: 200px; height: 20px;
  background: linear-gradient(180deg, #f5deb3 0%, #d2a679 100%);
  border-radius: 12px 12px 0 0;
  position: absolute; top: 100px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.steam { position: absolute; top: 0; left: 50%; transform: translateX(-50%); display: flex; gap: 16px; }
.steam span {
  display: block; width: 4px; height: 40px;
  background: rgba(255,255,255,0.4); border-radius: 4px;
  animation: steamRise 1.8s ease-in-out infinite;
}
.steam span:nth-child(2) { animation-delay: 0.4s; height: 32px; }
.steam span:nth-child(3) { animation-delay: 0.8s; height: 36px; }
@keyframes steamRise {
  0% { transform: scaleY(0.3) translateY(0); opacity: 0.5; }
  50% { opacity: 0.8; }
  100% { transform: scaleY(1.2) translateY(-20px); opacity: 0; }
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #b71c1c 60%, var(--accent) 100%);
  color: var(--white); padding: 56px 0 48px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; background: rgba(255,255,255,0.06); border-radius: 50%;
}
.page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.8rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; opacity: 0.88; max-width: 480px; margin: 0 auto; }

/* BREADCRUMB */
.breadcrumb { padding: 14px 0; font-size: 0.82rem; color: var(--muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.feature-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07); border-top: 4px solid var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; color: var(--primary); }
.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* MENU CARDS */
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.menu-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08); transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-visual { height: 160px; position: relative; overflow: hidden; }
.menu-body { padding: 20px; }
.menu-body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.menu-body p { font-size: 0.87rem; color: var(--muted); margin-bottom: 12px; }
.menu-price { display: flex; align-items: center; justify-content: space-between; }
.price-tag { font-size: 1.2rem; font-weight: 900; color: var(--primary); }
.badge-hot { background: var(--primary); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.badge-new { background: var(--accent); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }

/* FULL MENU PAGE */
.menu-page-section { padding: 48px 0; }
.menu-category-title {
  font-size: 1.4rem; font-weight: 900; color: var(--primary);
  padding-bottom: 12px; border-bottom: 3px solid var(--accent);
  margin-bottom: 24px; display: flex; align-items: center; gap: 12px;
}
.menu-cat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.menu-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.menu-item {
  background: var(--white); border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); border-left: 4px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-item:hover { border-left-color: var(--primary); box-shadow: 0 4px 16px rgba(211,47,47,0.12); }
.menu-item-info h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.menu-item-info p { font-size: 0.83rem; color: var(--muted); }
.menu-item-right { text-align: right; flex-shrink: 0; }
.menu-item-price { font-size: 1.05rem; font-weight: 900; color: var(--primary); white-space: nowrap; }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 10px; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--primary), var(--accent)); border-radius: 2px;
}
.timeline-item { position: relative; padding: 0 0 36px 24px; }
.timeline-item::before {
  content: ''; position: absolute; left: -30px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--primary); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.timeline-item h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.value-card {
  background: var(--white); border-radius: 16px; padding: 24px 20px;
  text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.value-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 6px; color: var(--primary); }
.value-card p { font-size: 0.8rem; color: var(--muted); }

/* AWARDS */
.awards-list { display: flex; flex-direction: column; gap: 12px; }
.award-item {
  background: rgba(255,255,255,0.15); border-radius: 12px; padding: 16px 20px;
  display: flex; gap: 16px; align-items: flex-start;
}
.award-year { font-size: 1.1rem; font-weight: 900; color: #ffe082; flex-shrink: 0; min-width: 48px; }
.award-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.award-item p { font-size: 0.82rem; opacity: 0.8; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 3px 16px rgba(0,0,0,0.12); aspect-ratio: 1; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-visual { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white); padding: 24px 14px 14px;
  font-size: 0.83rem; font-weight: 700;
}
.gallery-section { margin-bottom: 48px; }
.gallery-section-title {
  font-size: 1.2rem; font-weight: 900; color: var(--text);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.gallery-section-title::after { content: ''; flex: 1; height: 2px; background: var(--border); border-radius: 1px; }
.gallery-label {
  display: inline-block; background: var(--light); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; padding: 4px 14px; border-radius: 50px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* FORM */
.form-card { background: var(--white); border-radius: 24px; padding: 32px 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border);
  border-radius: 10px; font-family: inherit; font-size: 0.93rem;
  background: var(--bg); color: var(--text); transition: border-color 0.2s; outline: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--primary); }
.form-row textarea { min-height: 100px; resize: vertical; }
.form-cols { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white); border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 800; cursor: pointer; transition: opacity 0.2s, transform 0.15s;
}
.form-submit:hover { opacity: 0.92; transform: translateY(-2px); }

.info-box {
  background: var(--light); border-radius: 16px; padding: 24px;
  border-left: 4px solid var(--accent); margin-bottom: 20px;
}
.info-box h3 { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.info-box ul { display: flex; flex-direction: column; gap: 8px; }
.info-box li { font-size: 0.88rem; color: var(--muted); padding-left: 16px; position: relative; }
.info-box li::before { content: '●'; position: absolute; left: 0; color: var(--accent); font-size: 0.5rem; top: 4px; }

/* MAP */
.map-placeholder {
  background: linear-gradient(135deg, #e8d5b7 0%, #c9a96e 100%);
  border-radius: 20px; height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--muted); font-weight: 700; position: relative; overflow: hidden;
}
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.map-info-item {
  background: var(--white); border-radius: 14px; padding: 20px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); text-align: center;
}
.map-info-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.map-info-item p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: var(--white); border-radius: 16px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 8px; }
.review-text { font-size: 0.9rem; color: var(--text); line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 700; color: var(--muted); }

/* CTA STRIP */
.cta-strip { background: linear-gradient(135deg, var(--primary), #b71c1c); color: var(--white); text-align: center; padding: 56px 0; }
.cta-strip h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.cta-strip p { opacity: 0.88; margin-bottom: 28px; font-size: 1rem; }

/* FOOTER */
.site-footer { background: #1a0a00; color: rgba(255,255,255,0.75); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand strong { display: block; font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-col p { font-size: 0.85rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.8rem; }
.footer-bottom span { color: var(--accent); }

/* MEDIA QUERIES */
@media (min-width: 600px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .form-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}
@media (min-width: 900px) {
  .nav-label { display: none; }
  #nav-toggle ~ .main-nav { display: block; position: static; border: none; box-shadow: none; padding: 0; background: none; }
  .main-nav ul { flex-direction: row; gap: 4px; }
  .main-nav a { padding: 8px 16px; border-left: none; border-radius: 8px; }
  .main-nav a:hover, .main-nav a.active { background: var(--light); border-left: none; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { flex-direction: row; text-align: left; justify-content: space-between; }
  .hero-cta { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { padding-left: 48px; }
}
