/* YO MOMO — design system */
@import url('../fonts/fonts.css');

:root {
  --cream: #fbf5ea;
  --cream-2: #f6ecd9;
  --paper: #ffffff;
  --ink: #221812;
  --muted: #6e5f55;
  --red: #c1272d;
  --red-dark: #9b1d23;
  --saffron: #f2a03d;
  --saffron-soft: #fbdfc2;
  --charcoal: #1d1512;
  --charcoal-2: #2a1f1a;
  --line: #e9dcc7;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(34, 24, 18, .09);
  --font-display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
li { margin-bottom: .35em; }
strong { font-weight: 600; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section.tight { padding: 52px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--saffron-soft);
  border-radius: 999px;
  padding: .35em 1em;
  margin-bottom: 14px;
}
.lead { font-size: 1.12rem; color: var(--muted); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .8em 1.7em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(193, 39, 45, .35); }
.btn-primary:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { border-color: var(--saffron); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--saffron); color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 245, 234, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--ink); letter-spacing: .01em; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand em { font-style: normal; color: var(--red); }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block;
  padding: .55em .85em;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { background: var(--cream-2); color: var(--red); }
.main-nav a[aria-current="page"] { color: var(--red); font-weight: 600; background: var(--saffron-soft); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 2px; border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .62; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20, 12, 9, .92) 8%, rgba(20, 12, 9, .55) 55%, rgba(20, 12, 9, .25) 100%);
}
.hero-inner { position: relative; padding: 110px 0 100px; max-width: 620px; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255, 255, 255, .86); font-size: 1.12rem; max-width: 34em; }
.hero .eyebrow { background: rgba(242, 160, 61, .18); color: var(--saffron); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-note { margin-top: 26px; font-size: .92rem; color: rgba(255, 255, 255, .65); }
.hero-note strong { color: var(--saffron); }

/* Feature strip */
.features { background: var(--paper); border-bottom: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 14px; background: var(--saffron-soft); display: flex; align-items: center; justify-content: center; }
.feature h3 { margin-bottom: .2em; font-size: 1.1rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card .thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { margin: 0; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 999px;
  background: var(--saffron-soft);
  color: #8a5a13;
}
.tag.veg { background: #e2f2df; color: #2e6b34; }
.tag.nonveg { background: #fbe3e1; color: var(--red-dark); }
.tag.spicy { background: #ffe9d6; color: #a44d00; }

/* Split (image + text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.checklist { list-style: none; padding: 0; margin: 18px 0 26px; }
.checklist li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: none;
}
.checklist li::after {
  content: "";
  position: absolute; left: 6px; top: 8px;
  width: 10px; height: 6px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

/* Dark band */
.band { background: var(--charcoal); color: #fff; }
.band h2, .band h3 { color: #fff; }
.band .lead { color: rgba(255, 255, 255, .75); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.band-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(242, 160, 61, .25);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.band-card p { color: rgba(255, 255, 255, .72); }
.band-card .more { font-family: var(--font-display); font-weight: 700; color: var(--saffron); }
.band-card .more:hover { color: #fff; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: .3em; }
.step p { margin: 0; color: var(--muted); font-size: .93rem; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--red);
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details .answer { padding: 0 22px 20px; color: var(--muted); }
.faq-list details .answer p:last-child { margin-bottom: 0; }

/* Visit / contact */
.visit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: stretch; }
.visit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}
.visit-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 22px; margin: 20px 0 0; }
.visit-card dt { font-weight: 600; color: var(--ink); }
.visit-card dd { margin: 0; color: var(--muted); }

/* CTA panel */
.cta-panel {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(155, 29, 35, .35);
}
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255, 255, 255, .85); max-width: 44em; margin-left: auto; margin-right: auto; }

/* Page hero (inner pages) */
.page-hero { background: var(--charcoal); color: #fff; padding: 68px 0; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero p { color: rgba(255, 255, 255, .78); max-width: 46em; margin-bottom: 0; font-size: 1.08rem; }
.page-hero .eyebrow { background: rgba(242, 160, 61, .18); color: var(--saffron); }
.crumbs { font-size: .88rem; color: rgba(255, 255, 255, .6); margin-bottom: 16px; }
.crumbs a { color: var(--saffron); }
.crumbs a:hover { color: #fff; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255, 255, 255, .72); padding: 60px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer .brand:hover { color: #fff; }
.site-footer h4 { color: var(--saffron); font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul a { color: rgba(255, 255, 255, .72); }
.site-footer ul a:hover { color: var(--saffron); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 22px; font-size: .84rem; color: rgba(255, 255, 255, .45); display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between; }
.footer-bottom .credits { max-width: 70ch; }

/* Gallery strip */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* Editorial guides */
.article-meta {
  margin-top: 18px !important;
  font-size: .92rem !important;
  color: rgba(255, 255, 255, .68) !important;
}
.article-meta a { color: var(--saffron); }
figure { margin: 0; }
figcaption {
  padding: 10px 4px 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}
.wide-figure { margin-top: 32px; }
.wide-figure img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(48, 31, 21, .06);
}
table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: .94rem;
}
th, td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
th {
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: .01em;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--cream-2); }
.definition-list {
  display: grid;
  grid-template-columns: minmax(130px, .35fr) 1fr;
  gap: 0;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.definition-list dt,
.definition-list dd {
  margin: 0;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}
.definition-list dt {
  background: var(--cream-2);
  color: var(--red-dark);
  font-weight: 800;
}
.definition-list dd { background: #fff; }
.definition-list dt:last-of-type,
.definition-list dd:last-of-type { border-bottom: 0; }
.callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--saffron);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff7e8;
  color: var(--charcoal);
}
.sources ul { padding-left: 1.25rem; }
.sources li { margin-bottom: .7rem; }
.related-reading { border-top: 1px solid var(--line); }
.site-footer h3 {
  color: var(--saffron);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.reverse > :first-child { order: 2; }
.reverse > :last-child { order: 1; }

/* Responsive */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .band-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reverse > :first-child,
  .reverse > :last-child { order: initial; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(34, 24, 18, .12);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 12px 18px 18px; gap: 2px; }
  .main-nav a { padding: .7em 1em; }
  .site-header .header-inner { position: relative; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .cards, .cards.three { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero-inner { padding: 84px 0 72px; }
  .cta-panel { padding: 42px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .visit-card { padding: 26px 22px; }
  .definition-list { grid-template-columns: 1fr; }
  .definition-list dt,
  .definition-list dd { border-bottom: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
