:root {
  --orange: #FF6B00;
  --black: #000000;
  --ink: #0d0d0d;
  --paper: #ffffff;
  --paper-alt: #f5f5f4;
  --text: #1a1a1a;
  --muted: #57534e;
  --line: #e7e5e4;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 1.1rem 1.5rem;
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { display: inline-flex; }
.brand img { display: block; height: 30px; width: auto; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.9rem 1.4rem; }
.site-nav a {
  color: #d6d3d1;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--paper); }

/* Hero */
.hero {
  background: var(--black);
  color: var(--paper);
  padding: 4.5rem 1.5rem 5.5rem;
}
.hero h1 {
  max-width: 20ch;
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.hero-lead {
  max-width: 60ch;
  margin: 0;
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  color: #d6d3d1;
  line-height: 1.55;
}

/* Sections */
.section { padding: 3.6rem 1.5rem; }
.section-alt { background: var(--paper-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-inner { max-width: 760px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.7rem;
}
.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.section p { margin: 0 0 0.9rem; font-size: 1.06rem; color: var(--muted); }
.section p:last-child { margin-bottom: 0; }

/* Products */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.6rem;
}
.product {
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  background: var(--paper);
  border-radius: 6px;
  padding: 1.3rem 1.4rem;
}
.product h3 { margin: 0 0 0.35rem; font-size: 1.2rem; font-weight: 700; color: var(--text); }
.product p { margin: 0 0 0.5rem; font-size: 1rem; }
.product-slogan { color: var(--text) !important; font-weight: 600; }
.product-link {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
}
.product-link:hover { text-decoration: underline; }

/* Contact */
.contact-link {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.2rem;
}
.contact-link:hover { text-decoration: underline; }
.contact-details {
  margin: 1.4rem 0 0;
  font-style: normal;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}
.contact-details a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-details a:hover { color: var(--orange); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--black);
  color: #a8a29e;
  padding: 1.6rem 1.5rem;
  text-align: center;
}
.site-footer p { margin: 0; font-size: 0.9rem; }

@media (min-width: 620px) {
  .products { grid-template-columns: 1fr 1fr; }
  .section { padding: 4.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .site-header { justify-content: center; text-align: center; }
  .site-nav { width: 100%; justify-content: center; gap: 0.6rem 1.1rem; }
  .site-nav a { font-size: 0.85rem; }
}
