/* WebCo neutral content prototype — structural CSS only.
   Deliberately no brand palette, no custom fonts, no decoration:
   this presents content and strategy, not visual design. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  color: #111;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: #111; color: #fff; padding: .6rem 1rem; z-index: 10;
}
.skip-link:focus { left: 0; }

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid #111; outline-offset: 2px;
}

/* Preview notice */
.preview-notice {
  background: #111; color: #fff;
  font-size: .85rem; text-align: center;
  padding: .5rem .75rem;
}
.preview-notice a { color: #fff; }

/* Layout */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1rem; }
main { display: block; }
section { padding: 2.25rem 0; }
section + section { border-top: 1px solid #e5e5e5; }
.prose { max-width: 68ch; }

/* Header / nav */
header.site {
  border-bottom: 1px solid #ddd;
}
.site-bar {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .5rem 1rem; padding: .8rem 0;
}
.brand { font-weight: 700; font-size: 1.1rem; text-decoration: none; color: #111; }
nav.main ul {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: .25rem 1.1rem; margin: 0; padding: 0;
}
nav.main a { color: #111; text-decoration: none; padding: .3rem 0; }
nav.main a:hover, nav.main a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
.header-call { white-space: nowrap; font-weight: 600; color: #111; }

/* Hero */
.hero { position: relative; }
.hero img { width: 100%; max-height: 430px; object-fit: cover; }
.hero-text { padding: 1.5rem 0 0; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.2; margin: 0 0 .6rem; }
h2 { font-size: clamp(1.25rem, 3vw, 1.6rem); margin: 0 0 .75rem; }
h3 { font-size: 1.05rem; margin: 0 0 .4rem; }
p { margin: 0 0 1rem; }

/* CTA */
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.1rem 0; }
.btn {
  display: inline-block; padding: .65rem 1.1rem; border: 2px solid #111;
  text-decoration: none; color: #111; background: #fff; font-weight: 600;
}
.btn.primary { background: #111; color: #fff; }
.btn:hover { text-decoration: underline; }

/* Cards */
.cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}
.card { border: 1px solid #ddd; }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card .card-body { padding: .9rem 1rem 1.1rem; }
figure { margin: 0; }
figcaption { font-size: .8rem; color: #555; padding-top: .35rem; }

/* Menu lists */
.menu-cat { max-width: 46rem; }
.menu-item {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .45rem 0; border-bottom: 1px dotted #ccc;
}
.menu-item .price { white-space: nowrap; font-variant-numeric: tabular-nums; }
.note { font-size: .9rem; color: #444; background: #f4f4f4; padding: .7rem .9rem; }

/* Utility */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* Tables */
table { border-collapse: collapse; }
caption { text-align: left; font-weight: 600; padding-bottom: .4rem; }
th, td { border: 1px solid #ccc; padding: .5rem .8rem; text-align: left; }

/* Gallery */
.gallery {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.gallery img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }

/* FAQ */
dl.faq dt { font-weight: 600; margin-top: 1rem; }
dl.faq dd { margin: .25rem 0 0; }

/* Footer */
footer.site {
  border-top: 1px solid #ddd; margin-top: 2.5rem;
  padding: 1.5rem 0 2rem; font-size: .9rem; color: #333;
}
.stock-notice {
  font-size: .85rem; color: #444; background: #f4f4f4;
  padding: .7rem .9rem; margin-bottom: 1rem;
}
footer.site a { color: #111; }

@media (max-width: 640px) {
  .site-bar { flex-direction: column; align-items: flex-start; }
  .hero img { max-height: 300px; }
}
