:root {
  --ink: #211713;
  --muted: #6f625c;
  --cream: #fff8eb;
  --paper: #ffffff;
  --orange: #f36f2a;
  --red: #c92f24;
  --yellow: #f7bd45;
  --green: #1f8a5b;
  --charcoal: #181311;
  --line: rgba(33, 23, 19, 0.12);
  --shadow: 0 24px 70px rgba(65, 34, 18, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 235, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 28px rgba(201, 47, 36, 0.26);
  font-size: 0.86rem;
}

.brand-text {
  font-size: 1.05rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
  transition: 0.2s ease;
}

.nav-menu a:hover {
  color: var(--ink);
  background: rgba(243, 111, 42, 0.1);
}

.nav-menu .nav-cta {
  color: #fff;
  background: var(--ink);
  padding-inline: 18px;
}

.nav-menu .nav-cta:hover {
  color: #fff;
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.shape-one {
  width: 420px;
  height: 420px;
  background: rgba(247, 189, 69, 0.32);
  right: -120px;
  top: 40px;
}

.shape-two {
  width: 260px;
  height: 260px;
  background: rgba(31, 138, 91, 0.16);
  left: -80px;
  bottom: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4.3rem);
}

h3 {
  margin-bottom: 8px;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 16px 32px rgba(201, 47, 36, 0.24);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 620px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
}

.hero-stats strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-card {
  position: relative;
  min-height: 550px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 42px;
  background: radial-gradient(circle at top, #fff8ef, #f5d8b2 56%, #d9582c);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bowl-visual {
  position: relative;
  height: 350px;
  margin-top: 32px;
}

.steam {
  position: absolute;
  top: 6px;
  width: 24px;
  height: 98px;
  border-radius: 999px;
  border-left: 4px solid rgba(255, 255, 255, 0.82);
  animation: steam 3s ease-in-out infinite;
}

.steam-a { left: 31%; }
.steam-b { left: 48%; animation-delay: 0.4s; }
.steam-c { left: 63%; animation-delay: 0.8s; }

.bowl-top {
  position: absolute;
  left: 50%;
  bottom: 88px;
  width: 310px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #ffe1a6;
  border: 16px solid #fff4e8;
  box-shadow: inset 0 -18px 22px rgba(164, 86, 35, 0.18), 0 24px 38px rgba(91, 45, 24, 0.18);
  overflow: hidden;
}

.bowl-base {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 300px;
  height: 130px;
  transform: translateX(-50%);
  border-radius: 22px 22px 120px 120px;
  background: linear-gradient(180deg, #ffffff, #f0dfc9);
  box-shadow: 0 18px 36px rgba(72, 36, 18, 0.18);
}

.noodle {
  position: absolute;
  left: 26px;
  right: 26px;
  height: 18px;
  border: 6px solid #f6a13b;
  border-left: 0;
  border-right: 0;
  border-radius: 50%;
}

.noodle-1 { top: 38px; transform: rotate(-8deg); }
.noodle-2 { top: 70px; transform: rotate(7deg); }
.noodle-3 { top: 100px; transform: rotate(-3deg); }

.topping {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.topping-red { background: var(--red); left: 72px; top: 30px; }
.topping-green { background: var(--green); right: 78px; top: 54px; }
.topping-yellow { background: var(--yellow); left: 144px; top: 88px; }

.feature-ticket {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border-radius: 26px;
  color: #fff;
  background: rgba(24, 19, 17, 0.86);
  backdrop-filter: blur(12px);
}

.feature-ticket span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-ticket strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.2;
}

.feature-ticket p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

@keyframes steam {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.38; }
  50% { transform: translateY(-18px) scaleX(1.25); opacity: 0.85; }
}

.section {
  padding: 86px 0;
}

.intro-strip {
  padding: 34px 0;
  background: var(--charcoal);
  color: #fff;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.strip-grid div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.market-grid p,
.contact-info p {
  color: var(--muted);
  font-size: 1.03rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  color: var(--red);
  font-weight: 800;
  border-bottom: 2px solid rgba(201, 47, 36, 0.25);
}

.image-panel {
  position: relative;
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.restaurant-panel {
  background:
    linear-gradient(135deg, rgba(24, 19, 17, 0.04), rgba(24, 19, 17, 0.2)),
    radial-gradient(circle at 22% 30%, #f7bd45 0 7%, transparent 8%),
    radial-gradient(circle at 72% 38%, #c92f24 0 6%, transparent 7%),
    radial-gradient(circle at 48% 65%, #1f8a5b 0 8%, transparent 9%),
    linear-gradient(135deg, #ffe1a6, #e8763a 52%, #64271f);
}

.restaurant-panel::before {
  content: "";
  position: absolute;
  inset: 70px 54px;
  border: 18px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: inset 0 -40px 0 rgba(255, 255, 255, 0.24);
}

.panel-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 19, 17, 0.82);
  font-weight: 800;
}

.warm-section {
  background: #fff0d8;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.kit-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(65, 34, 18, 0.08);
}

.kit-top {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.kit-top.spicy { background: var(--red); }
.kit-top.savory { background: var(--ink); }
.kit-top.bright { background: var(--green); }

.kit-card p {
  color: var(--muted);
}

.kit-card span {
  display: block;
  margin-top: 20px;
  font-weight: 800;
  color: var(--orange);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--paper);
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab-btn.active {
  color: #fff;
  background: var(--ink);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.menu-item.hidden {
  display: none;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
}

.menu-item strong {
  color: var(--red);
  font-size: 1.15rem;
}

.market-section {
  color: #fff;
  background: linear-gradient(135deg, #211713, #3a2018 58%, #8d2b21);
}

.market-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.market-grid .eyebrow,
.market-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.market-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.schedule-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.schedule-list li {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.schedule-list span {
  display: inline-flex;
  width: 48px;
  margin-right: 10px;
  color: var(--yellow);
  font-weight: 900;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 50px;
}

.info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.info-block p {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--cream);
  box-shadow: 0 22px 58px rgba(65, 34, 18, 0.08);
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(243, 111, 42, 0.7);
  box-shadow: 0 0 0 4px rgba(243, 111, 42, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.84);
}

.footer-meta p {
  margin: 0 0 8px;
}

.footer-disclosure {
  margin: 26px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    background: rgba(255, 248, 235, 0.97);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1.45rem;
    color: var(--ink);
  }

  .hero-grid,
  .split-section,
  .market-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-card {
    min-height: 500px;
  }

  .strip-grid,
  .kit-grid,
  .menu-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    width: min(100% - 24px, 1180px);
    min-height: 68px;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .hero {
    padding: 42px 0 56px;
  }

  .hero-actions,
  .menu-tabs {
    flex-direction: column;
  }

  .btn,
  .tab-btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 430px;
    padding: 18px;
    border-radius: 30px;
  }

  .bowl-visual {
    height: 280px;
    margin-top: 10px;
  }

  .bowl-top {
    width: 245px;
    height: 120px;
    bottom: 72px;
  }

  .bowl-base {
    width: 235px;
    height: 105px;
    bottom: 30px;
  }

  .feature-ticket {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .image-panel {
    min-height: 320px;
  }

  .restaurant-panel::before {
    inset: 52px 36px;
    border-width: 13px;
  }

  .menu-item {
    flex-direction: column;
  }

  .contact-form {
    padding: 20px;
  }
}
