:root{
  --bg:#0b1220;
  --surface:#0f172a;
  --surface2:#111c33;
  --text:#e5e7eb;
  --muted:#a8b0c2;
  --brand:#fbbf24;
  --accent:#60a5fa;
  --border:rgba(255,255,255,.12);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(96,165,250,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(251,191,36,.14), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.6;
}

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

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo img {
    width: 100%;
    max-width: 120px;
}
.brand-title {
    font-weight: 500;
    letter-spacing: .2px;
    font-size: 12px;
    line-height: normal;
}
.brand-subtitle{font-size:10px; color:var(--muted)}

.nav{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
}

.hero{
  padding:56px 0 22px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:start;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.1;
}
.hero p{color:var(--muted); font-size:16px; margin:0 0 14px}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap; margin:18px 0 10px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background: rgba(96,165,250,.18);
  border:1px solid rgba(96,165,250,.35);
  color:var(--text);
  font-weight:650;
  box-shadow: var(--shadow);
  text-decoration:none;
}
.button:hover{background: rgba(96,165,250,.26); text-decoration:none}
.button-ghost{
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  box-shadow:none;
}
.fineprint{font-size:12px; color:rgba(229,231,235,.75)}

.hero-card .callout{
  background: linear-gradient(180deg, rgba(251,191,36,.12), rgba(255,255,255,.04));
  border:1px solid rgba(251,191,36,.28);
  border-radius:16px;
  padding:16px;
  box-shadow: var(--shadow);
}
.callout-title{font-weight:750; margin:0 0 10px}
.callout-list{margin:0; padding-left:18px; color:rgba(229,231,235,.9)}
.callout-list li{margin:6px 0}

.section{
  padding:46px 0;
}
.section-muted{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section h2{
  margin:0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
}
.section-lead{
  margin:0 0 20px;
  color:var(--muted);
}

.prose{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.prose p{margin:0 0 12px; color:rgba(229,231,235,.92)}
.prose p:last-child{margin-bottom:0}

.grid{
  display:grid;
  gap:14px;
  margin-top:16px;
}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr));}

.panel{
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}
.panel h3{margin:0 0 8px; font-size:18px}
.panel p{margin:0; color:var(--muted)}
.bullets{margin:0; padding-left:18px; color:rgba(229,231,235,.9)}
.bullets li{margin:8px 0}

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.card{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}

/* Food images: filled (no gray bars) but less “zoomed in” */
.card-media{
  height:260px;
  background: rgba(255,255,255,.06);
  overflow:hidden;
}
.card-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transform: scale(1.03); /* slightly less zoom than default cover */
}
.card-media.has-image .media-placeholder{display:none}

.media-placeholder{
  font-weight:800;
  letter-spacing:.4px;
  color: rgba(229,231,235,.9);
  text-transform: uppercase;
  font-size:14px;
  border:1px dashed rgba(255,255,255,.25);
  padding:10px 12px;
  border-radius:12px;
}

.card-body{padding:14px 14px 16px}
.card h3{margin:0 0 10px; font-size:20px}
.meta-label{font-size:12px; color:rgba(229,231,235,.7); text-transform:uppercase; letter-spacing:.18em}
.meta p{margin:6px 0 0; color:var(--muted)}
.warning{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  background: rgba(239,68,68,.12);
  border:1px solid rgba(239,68,68,.26);
}
.warning-title{font-weight:750; margin:0 0 6px}
.warning p{margin:0; color:rgba(229,231,235,.92)}

.footer-note{
  margin-top:18px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(251,191,36,.26);
  background: rgba(251,191,36,.08);
}
.footer-note p{margin:0; color:rgba(229,231,235,.92)}

.site-footer{
  padding:26px 0;
}
.footer-inner{
  border-top:1px solid var(--border);
  padding-top:16px;
  color:var(--muted);
}
.small{margin:6px 0 0; font-size:12px}
.copyright{margin:0}

@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
  .nav{justify-content:flex-start}
}

/* Smaller screens: header/nav wrap cleanly + image height */
@media (max-width: 600px){
  .header-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .nav{
    width:100%;
    flex-wrap:wrap;
    gap:10px 14px;
  }
  .brand{width:100%}
  .hero{padding-top:26px}

  .card-media{height:210px}
  .card-media img{transform: scale(1.01)}
}
