/* Base */
* { box-sizing: border-box; }
html, body { height: 100%;  }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0b1220;
  background: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --primary: #0f766e;
  --primary-600: #0d5f58;
  --primary-100: #ccfbf1;
  --text: #0b1220;
  --muted: #556070;
  --surface: #ffffff;
  --border: #e5e7eb;
  --ring: #a7f3d0;
  --accent: #f59e0b;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #111827;
  color: #fff;
  border-radius: 8px;
}

/* Header */
/* Header layout: stack on mobile, inline on desktop */
.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  height: auto;
  padding: 8px 0;
  flex-direction: column;
}

.header-announce {
  margin: 0;
  font-size: 14px;
  color: #0b5d56;
}

/* Mobile gutters */
@media (max-width: 600px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .header-inner { padding: 10px; }
}

@media (min-width: 900px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    height: 64px;
    padding: 0;
  }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu { position: static; display: flex; gap: 8px; padding: 0; box-shadow: none; border: none; background: transparent; }
  .nav-menu a:hover { background: transparent; color: var(--primary); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #111827;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 12px; border-radius: 10px; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary-600); box-shadow: 0 8px 16px -8px rgba(15,118,110,.6); }
.btn-primary:hover { background: #0e6a62; }
.btn-ghost { background: transparent; }

/* Hero */
.hero {
  background: radial-gradient(1000px 600px at 85% -200px, var(--primary-100), transparent 60%), #ecfeff;
  border-bottom: 1px solid var(--border);
}
.hero-inner { display: grid; gap: 32px; padding: 56px 0; align-items: center; }
.hero-copy h1 { font-size: 40px; line-height: 1.1; margin: 0 0 12px; letter-spacing: -0.02em; }
.lead { color: var(--muted); margin: 0 0 16px; font-size: 18px; }
.hero-cta { display: flex; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.hero-points { color: #0b5d56; display: grid; gap: 6px; padding: 0; margin: 0; list-style: none; }
.hero-media { display: grid; place-items: center; }
.hero-card { width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: 0 30px 60px -24px rgba(0,0,0,.25); }
.hero-card .dish { padding: 14px 12px; border: 1px dashed #e5e7eb; border-radius: 12px; margin: 10px 0; background: #fafafa; }
.hero-wave { height: 16px; background: linear-gradient(90deg, rgba(15,118,110,.25) 0%, rgba(15,118,110,0) 100%); opacity: .5; }

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 80px 0;
  }
  .hero-copy h1 { font-size: 56px; }
  .lead { font-size: 20px; }
}

/* Sections */
.section { padding: 56px 0; }
.section-title { font-size: 28px; margin: 0 0 20px; letter-spacing: -0.01em; }
.muted { color: var(--muted); }

/* How it works */
.steps { display: grid; gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: 0 10px 30px -18px rgba(0,0,0,.2); }
.step-icon { font-size: 22px; }
.step h3 { margin: 8px 0; }

@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* Cuisines grid */
.grid { display: grid; gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; transition: transform .12s ease, box-shadow .2s ease; box-shadow: 0 8px 24px -16px rgba(0,0,0,.25); }
.card:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(0,0,0,.3); }
.card-emoji { font-size: 28px; }

@media (min-width: 720px) { .grid { grid-template-columns: repeat(3, 1fr); } }

/* Vendors */
.vendors-inner { display: grid; gap: 20px; align-items: center; }
.vendors-copy .vendors-points { list-style: none; padding: 0; margin: 12px 0 20px; display: grid; gap: 6px; }
.vendors-card { background: linear-gradient(180deg, #ecfeff, #fff); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: inset 0 0 0 1px rgba(15,118,110,.08), 0 16px 40px -20px rgba(0,0,0,.3); }
.vendor-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { background: #ffffffa6; border: 1px solid var(--border); border-radius: 14px; padding: 12px; text-align: center; }
.stat-num { display: block; font-weight: 800; font-size: 22px; }
.stat-label { color: var(--muted); font-size: 12px; }

@media (min-width: 900px) {
  .vendors-inner { grid-template-columns: 1.1fr 1fr; }
}

/* Testimonials */
.quotes { display: grid; gap: 16px; }
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.quote blockquote { margin: 0 0 8px; color: #1f2937; }
.quote figcaption { color: var(--muted); }

@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* Newsletter */
.newsletter-inner { display: grid; gap: 16px; align-items: center; }
.newsletter-form { display: grid; gap: 8px; grid-template-columns: 1fr auto; align-items: center; }
.newsletter-form input {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.form-message { grid-column: 1 / -1; min-height: 20px; margin: 0; font-size: 14px; }
.form-message.success { color: #065f46; }
.form-message.error { color: #b91c1c; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #ffffff; }
.footer-inner { display: grid; gap: 16px; padding: 24px 0; align-items: start; }
.footer-brand .brand { font-size: 18px; }
.footer-links { list-style: none; display: grid; gap: 8px; padding: 0; margin: 0; }
.footer-links a { color: #111827; text-decoration: none; }
.footer-links a:hover { color: var(--primary); }
.footer-meta { display: flex; gap: 12px; align-items: center; color: var(--muted); }
.footer-meta a { color: var(--muted); text-decoration: none; }

@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation-duration: 0.001ms !important; }
}
.brand-logo { height: 70px; width: auto; display: block; }