/*
 * Glypt fixture — minimal vanilla CSS, intentionally not Tailwind.
 *
 * Class names are deliberately distinctive (.site-nav, .hero-title, etc.)
 * so when Claude greps for them they uniquely identify source. Resist the
 * urge to consolidate utility classes — variety in selector style is part
 * of what makes this a useful fixture.
 *
 * No rounded corners (matches Glypt's house rule; the agent will inherit
 * the convention when editing).
 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.5;
}

a {
  color: inherit;
}

/* --- Top nav ----------------------------------------------------------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.site-nav-brand {
  font-weight: 600;
  text-decoration: none;
}

.site-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.site-nav-links a {
  text-decoration: none;
  color: #555;
}

.site-nav-links a:hover {
  color: #1a1a1a;
}

/* --- Main + hero ------------------------------------------------------- */

.site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero-title {
  font-size: 2.75rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-subline {
  font-size: 1.125rem;
  color: #666;
  margin: 0 auto 2rem;
  max-width: 38rem;
}

.hero-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

.hero-cta:hover {
  background: #c2410c;
}

/* --- Section titles ---------------------------------------------------- */

.section-title {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  font-weight: 600;
}

/* --- Products grid ----------------------------------------------------- */

.products {
  padding: 3rem 0;
}

.products-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 1.5rem;
}

.product-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.product-description {
  margin: 0;
  color: #666;
  font-size: 0.9375rem;
}

/* --- About section ----------------------------------------------------- */

.about {
  padding: 3rem 0;
}

.about-body {
  max-width: 42rem;
  color: #444;
  margin: 0;
}

/* --- Footer ------------------------------------------------------------ */

.site-footer {
  border-top: 1px solid #e0e0e0;
  margin-top: 4rem;
  padding: 2rem;
  text-align: center;
  background: #fff;
}

.site-footer-text {
  margin: 0;
  color: #888;
  font-size: 0.875rem;
}

/* --- Responsive (one breakpoint only) ---------------------------------- */

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2rem;
  }
}
