/* ===== UGLY DUMPLING — BRAND STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red:       #C0392B;
  --red-dark:  #922B21;
  --red-light: #E74C3C;
  --cream:     #FDF6EC;
  --dark:      #1A1008;
  --charcoal:  #2C2416;
  --gold:      #D4A843;
  --gray:      #6B6055;
  --light-gray:#F5EEE6;
  --white:     #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--red-light); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none; font-size: .875rem;
  font-weight: 500; letter-spacing: .5px;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600 !important; transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-light) !important; }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--dark) 0%, #3B1F10 50%, #1A0A04 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(192,57,43,.25) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.4);
  color: var(--gold); font-size: .75rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 100px; margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 28px;
  position: relative;
}
.hero h1 em { color: var(--red-light); font-style: normal; }
.hero p {
  font-size: 1.2rem; color: rgba(255,255,255,.7);
  max-width: 580px; margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .2s; letter-spacing: .3px;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.4); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 2px solid rgba(255,255,255,.3);
  transition: all .2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.07); }

/* ── SECTION WRAPPERS ── */
section { padding: 96px 24px; }
.container { max-width: 1160px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 20px; color: var(--dark);
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 10px; color: var(--dark);
}
.lead {
  font-size: 1.1rem; color: var(--gray);
  max-width: 640px; line-height: 1.85;
}

/* ── INTRO ── */
.intro { background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.intro-visual {
  background: linear-gradient(135deg, var(--charcoal), var(--red-dark));
  border-radius: 16px; height: 440px;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem; flex-direction: column; gap: 8px;
}
.intro-visual p { color: rgba(255,255,255,.5); font-size: .85rem; letter-spacing: 1px; }
.intro-text p { color: var(--gray); margin-bottom: 20px; line-height: 1.9; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.stat { padding: 24px; background: var(--light-gray); border-radius: 12px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--red); display: block; line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--gray); margin-top: 4px; font-weight: 500; }

/* ── MENU GRID ── */
.menu-section { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px; margin-top: 56px;
}
.menu-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(0,0,0,.06);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.1); }
.menu-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.menu-card-img.xlb   { background: linear-gradient(135deg,#2C1810,#7B2D1E); }
.menu-card-img.dim   { background: linear-gradient(135deg,#1A2C1A,#2D6A2D); }
.menu-card-img.wok   { background: linear-gradient(135deg,#1A1A2C,#2D3A7B); }
.menu-card-img.boba  { background: linear-gradient(135deg,#2C1A2C,#7B2D6A); }
.menu-card-body { padding: 28px; }
.menu-card-body h3 { margin-bottom: 8px; }
.menu-card-body p { font-size: .9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.menu-card-body a {
  color: var(--red); font-weight: 600; font-size: .875rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.menu-card-body a:hover { color: var(--red-light); }

/* ── MENU DETAIL TABLE ── */
.menu-detail { background: var(--white); }
.menu-detail-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3B1510 100%);
  padding: 72px 24px; text-align: center; color: var(--white);
}
.menu-detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  margin-bottom: 16px;
}
.menu-detail-hero p { color: rgba(255,255,255,.7); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.menu-items { display: flex; flex-direction: column; gap: 48px; margin-top: 48px; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: start;
  padding-bottom: 40px; border-bottom: 1px solid var(--light-gray);
}
.menu-item:last-child { border-bottom: none; }
.item-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.item-desc { color: var(--gray); font-size: .95rem; line-height: 1.8; }
.item-tags { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.tag {
  font-size: .7rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.tag-hot  { background: #FEE2E2; color: #991B1B; }
.tag-new  { background: #D1FAE5; color: #065F46; }
.tag-veg  { background: #ECFDF5; color: #064E3B; }
.tag-prem { background: #FEF3C7; color: #92400E; }
.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--red); white-space: nowrap;
}

/* ── LOCATIONS ── */
.locations-section { background: var(--charcoal); }
.locations-section h2 { color: var(--white); }
.locations-section .lead { color: rgba(255,255,255,.6); }
.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px; margin-top: 52px;
}
.loc-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 28px;
  transition: all .2s;
}
.loc-card:hover { background: rgba(255,255,255,.1); border-color: var(--red); }
.loc-state {
  font-size: .65rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.loc-card h3 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }
.loc-card p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.6; }
.loc-card a {
  display: inline-block; margin-top: 16px;
  color: var(--red-light); font-size: .85rem; font-weight: 600;
  text-decoration: none;
}
.loc-card a:hover { color: var(--white); }

/* ── HAPPY HOUR ── */
.happy-hour { background: var(--red-dark); color: var(--white); }
.happy-hour h2 { color: var(--white); }
.happy-hour .lead { color: rgba(255,255,255,.75); }
.hh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 52px; }
.hh-time {
  background: rgba(255,255,255,.1); border-radius: 14px;
  padding: 32px; border: 1px solid rgba(255,255,255,.15);
}
.hh-time h3 { color: var(--gold); margin-bottom: 8px; }
.hh-time p { color: rgba(255,255,255,.75); }
.hh-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.hh-table th {
  text-align: left; padding: 10px 16px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hh-table td { padding: 14px 16px; color: rgba(255,255,255,.85); font-size: .95rem; }
.hh-table tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,.07); }
.hh-sale { color: var(--gold); font-weight: 700; }
.hh-orig { color: rgba(255,255,255,.35); text-decoration: line-through; font-size: .85rem; }

/* ── BLOG ── */
.blog-section { background: var(--light-gray); }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 28px; margin-top: 52px;
}
.blog-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(0,0,0,.06);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.blog-card-img {
  height: 160px; display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
}
.blog-card-img.b1 { background: linear-gradient(135deg,#2C1008,#922B21); }
.blog-card-img.b2 { background: linear-gradient(135deg,#082C28,#1A7A6E); }
.blog-card-img.b3 { background: linear-gradient(135deg,#082008,#2D7A1A); }
.blog-card-img.b4 { background: linear-gradient(135deg,#28082C,#7A1A7A); }
.blog-card-img.b5 { background: linear-gradient(135deg,#2C2408,#7A6A1A); }
.blog-card-img.b6 { background: linear-gradient(135deg,#08202C,#1A5A7A); }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: .75rem; color: var(--gray); margin-bottom: 8px; font-weight: 500; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: .875rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.blog-card-body a {
  color: var(--red); font-size: .85rem; font-weight: 600;
  text-decoration: none;
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 52px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--light-gray); padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--light-gray); }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;
}
.faq-a { color: var(--gray); line-height: 1.8; font-size: .95rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--dark));
  padding: 96px 24px; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.65); max-width: 500px; margin: 0 auto 40px; }

/* ── FOOTER ── */
footer {
  background: #0E0804; padding: 64px 24px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr 1fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-contact-list { list-style: none; }
.footer-contact-list li { color: rgba(255,255,255,.55); font-size: .875rem; margin-bottom: 10px; line-height: 1.5; }
.footer-contact-list a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-brand .nav-logo { font-size: 1.4rem; display: block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: .875rem; line-height: 1.8; }
.footer-col h4 {
  color: var(--gold); font-size: .75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.45); font-size: .875rem; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto; padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .8rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3B1510 100%);
  padding: 80px 24px 72px; text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  color: var(--white); margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,.65); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ── LOCATION DETAIL ── */
.loc-detail-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; margin-top: 48px; }
.loc-info-card {
  background: var(--light-gray); border-radius: 16px; padding: 32px;
  position: sticky; top: 88px; height: fit-content;
}
.loc-info-card h3 { margin-bottom: 20px; }
.loc-info-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.07);
  font-size: .9rem;
}
.loc-info-row:last-child { border-bottom: none; }
.loc-info-label { font-weight: 600; min-width: 80px; color: var(--charcoal); }
.loc-info-val { color: var(--gray); }
.delivery-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.badge {
  padding: 6px 14px; border-radius: 100px;
  font-size: .75rem; font-weight: 700; border: 1.5px solid;
}
.badge-ue { color: #06C167; border-color: #06C167; }
.badge-dd { color: #FF3008; border-color: #FF3008; }
.badge-gh { color: #F96604; border-color: #F96604; }
.menu-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.menu-table caption {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  text-align: left; padding: 0 0 16px;
  color: var(--dark);
}
.menu-table th {
  text-align: left; padding: 10px 14px;
  font-size: .75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray);
  background: var(--light-gray); border-bottom: 2px solid rgba(0,0,0,.08);
}
.menu-table td { padding: 13px 14px; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .925rem; }
.menu-table tr:last-child td { border-bottom: none; }
.menu-table tr:hover td { background: rgba(192,57,43,.03); }
.price-cell { font-weight: 700; color: var(--red); font-size: 1rem; }

/* ── ABOUT ── */
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.value-card {
  padding: 32px; border-radius: 14px;
  border: 1px solid rgba(0,0,0,.07); background: var(--white);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .intro-grid, .hh-grid, .loc-detail-grid,
  .footer-inner, .value-grid { grid-template-columns: 1fr; }
  .loc-info-card { position: static; }
  .footer-inner { gap: 32px; }
}

/* ── FOOTER DISCLAIMER ── */
.footer-disclaimer {
  max-width: 1160px; margin: 16px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.footer-disclaimer p {
  color: rgba(255,255,255,.35);
  font-size: .78rem;
  line-height: 1.7;
  margin: 0;
}
.footer-disclaimer strong { color: rgba(255,255,255,.5); }
.footer-disclaimer a { color: rgba(255,255,255,.4); text-decoration: underline; }
.footer-disclaimer a:hover { color: rgba(255,255,255,.7); }
