/* HF Clarke Industrial Inc. — minimal stylesheet */

:root {
  --yellow: #ffd72f;
  --blue: #0071a1;
  --text: #1f1f1f;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: var(--blue); }
a:hover, a:focus { text-decoration: underline; }

/* Header with logo */
.site-header {
  padding: 1.25rem 1.5rem;
}

.brand { display: inline-block; }

.brand img {
  width: 373px;
  max-width: 100%;
  height: auto;
}

/* Yellow bands (hero and footer) */
.band-yellow {
  background: var(--yellow);
  color: var(--blue);
  padding: 2rem 1.5rem;
  text-align: center;
}

.band-yellow a { color: var(--blue); }

/* Hero section */
.hero-image {
  max-width: 1024px;
  margin: 0 auto 1.5rem;
}

.hero-tagline {
  margin: 0.5rem 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.hero-phone {
  margin: 0.5rem 0;
  font-size: 2rem;
  font-weight: bold;
}

.hero-email {
  margin: 0.5rem 0 0;
  font-size: 1.3rem;
  font-weight: bold;
}

/* Main content container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.company-name {
  text-align: center;
  font-size: 2rem;
  margin: 1rem 0 2.5rem;
}

/* Product rows — 2 columns, alternating image/text positions */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

.product-row--reverse .product-image { order: 2; }
.product-row--reverse .product-text  { order: 1; }

.product-image { margin: 0; }

.product-text {
  text-align: center;
}

.product-text h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.product-text p {
  margin: 0.35rem 0;
  font-weight: bold;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
}

.site-footer h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.site-footer h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.25rem;
}

.site-footer p {
  margin: 0.25rem 0;
  font-weight: bold;
}

/* Mobile */
@media (max-width: 700px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .product-row--reverse .product-image,
  .product-row--reverse .product-text { order: initial; }

  .hero-phone { font-size: 1.5rem; }
  .hero-tagline, .hero-email { font-size: 1rem; }
  .company-name { font-size: 1.5rem; }
}
