/* bestdalycityrestaurant.com — editorial guide, zero external assets */
:root {
  --paper: #faf7f2;
  --card: #fffdfa;
  --ink: #26221c;
  --muted: #6b6257;
  --line: #e7e0d6;
  --accent: #b45309;
  --accent-soft: #f59e0b;
  --teal: #0f766e;
  --teal-deep: #134e4a;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", Charter, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}
.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; flex-wrap: wrap; }
.brand {
  font-family: var(--serif);
  font-size: 19px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.01em; line-height: 1.1;
}
.brand:hover { text-decoration: none; }
.brand span { display: block; font-size: 12px; font-weight: 400; color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; }
.site-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-nav a { color: var(--ink); font-size: 15px; font-weight: 500; padding: 4px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--teal-deep); border-bottom-color: var(--accent-soft); text-decoration: none; }

/* hero (index) */
.hero {
  background:
    radial-gradient(600px 220px at 85% -20%, rgba(245, 158, 11, 0.35), transparent 65%),
    linear-gradient(135deg, var(--teal-deep), var(--teal) 55%, #115e59);
  color: #f6fbf9;
  padding: 64px 0 58px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  margin: 14px 0 16px;
  max-width: 20ch;
}
.hero .lede { font-size: 18px; max-width: 62ch; color: rgba(246, 251, 249, 0.92); margin: 0; }
.kicker {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12.5px;
  color: var(--accent-soft); font-weight: 700; margin: 0;
}
.hero .kicker { color: #fcd34d; }

/* page head (subpages) */
.page-head { padding: 46px 0 6px; }
.page-head h1 { font-family: var(--serif); font-size: clamp(28px, 4.5vw, 40px); margin: 12px 0 0; }
.page-head .kicker { color: var(--accent); }

/* content */
main { padding-bottom: 40px; }
.intro { max-width: 74ch; margin: 28px 0 8px; }
.intro p { margin: 0 0 14px; }
.intro h2, h2.section-title { margin-top: 34px; }
h2 { font-family: var(--serif); font-size: 26px; line-height: 1.25; margin: 40px 0 14px; }
.group-note { color: var(--muted); margin: -4px 0 18px; max-width: 74ch; }
.closing { max-width: 74ch; margin-top: 30px; }

/* cards */
.group { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px; margin: 18px 0 8px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 20px 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: 0 6px 22px rgba(38, 34, 28, 0.09); transform: translateY(-1px); }
.card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.card h3 { font-family: var(--serif); font-size: 19.5px; line-height: 1.25; margin: 0; }
.badge {
  white-space: nowrap;
  background: #fef3c7; color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 999px;
  font-size: 13px; font-weight: 700;
  padding: 2px 10px;
}
.badge-sub { font-weight: 500; color: #a16207; }
.tags { display: flex; gap: 8px; margin: 0; }
.tag {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--teal-deep);
  border: 1px solid #cbd9d5; background: #f2f7f5;
  border-radius: 999px; padding: 1px 10px;
}
.tag-price { color: var(--accent); border-color: #f3d9bd; background: #fdf6ec; }
.writeup { margin: 0; color: #3d362d; }
.meta { margin: auto 0 0; font-size: 14px; color: var(--muted); line-height: 1.9; }
.meta .m-addr { display: block; }
.meta a { color: var(--teal); }

/* faq */
.faq { max-width: 74ch; }
.qa { border-bottom: 1px solid var(--line); padding: 6px 0 14px; margin-top: 10px; }
.qa h3 { font-family: var(--serif); font-size: 18.5px; margin: 8px 0 4px; }
.qa p { margin: 0; color: #3d362d; }
.related { margin-top: 26px; font-size: 15px; }

/* methodology + footer */
.method {
  margin-top: 44px; padding: 22px 24px;
  background: #f3efe7; border: 1px solid var(--line); border-radius: 12px;
  max-width: 80ch;
}
.method h2 { margin-top: 0; font-size: 20px; }
.method p { margin: 0; font-size: 15px; color: #4c443a; }
.site-footer { border-top: 1px solid var(--line); background: #f5f1e9; margin-top: 40px; }
.site-footer .site-nav { padding: 22px 20px 8px; }
.disclaimer { max-width: 78ch; font-size: 13.5px; color: var(--muted); padding: 0 20px; margin: 8px auto; }
.copy { font-size: 13.5px; color: var(--muted); padding: 0 20px 26px; margin: 4px auto; }
.site-footer .wrap, .site-footer .head-row { max-width: 980px; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding: 44px 0 40px; }
  .head-row { justify-content: flex-start; }
}
