* ============================================
   Hallden of America — Brochure Site Styles
   ============================================ */
 
/* --- Reset & Base --- */
 
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
}
 
a {
  color: #0073aa;
  text-decoration: none;
}
 
a:hover {
  text-decoration: underline;
}
 
p {
  margin-bottom: 1rem;
}
 
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
 
h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}
 
/* --- Header --- */
 
.site-header {
  padding: 2rem 0 1.5rem;
}
 
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
 
.site-branding {
  display: flex;
  flex-direction: column;
}
 
.site-logo-img {
  height: 60px;
  width: auto;
}
 
.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 0.5rem;
}
 
.site-nav {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
}
 
.site-nav a {
  color: #1a1a1a;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
}
 
.site-nav a:hover,
.site-nav a.active {
  color: #0073aa;
}
 
/* --- Home page: grid layout --- */
 
.home-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 2rem;
  column-gap: 1rem;
  max-width: 960px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
}
 
.home-guillotine {
  grid-column: 2 / 5;
  grid-row: 1;
}
 
.home-guillotine img {
  width: 100%;
  height: auto;
  display: block;
}
 
.home-text {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: center;
}
 
.home-rotary {
  grid-column: 3 / 6;
  grid-row: 2;
}
 
.home-rotary img {
  width: 100%;
  height: auto;
  display: block;
}
 
/* --- Inner pages (About, Services, Contact) --- */
 
.page-content {
  max-width: 800px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
}
 
.page-content ul {
  margin: 1rem 0 1rem 1.5rem;
}
 
.page-content li {
  margin-bottom: 0.5rem;
}
 
/* Contact page */
.contact-info p {
  margin-bottom: 0.25rem;
}
 
.contact-info .contact-group {
  margin-bottom: 1.5rem;
}
 
/* --- Footer --- */
 
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 2rem 0;
}
 
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
 
.site-footer p {
  font-size: 0.85rem;
  color: #777;
}
 
/* --- Mobile --- */
 
@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
 
  .home-grid {
    display: block;
  }
 
  .home-guillotine,
  .home-rotary {
    margin-bottom: 2rem;
  }
 
  .home-guillotine img,
  .home-rotary img {
    width: 100%;
  }
 
  .home-text {
    margin-bottom: 1.5rem;
  }
}
