/* ── Contact (header) ────────────────────────────────────────────────── */
.contact-header {
  text-align: right;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.contact-header a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.contact-header a:hover { color: var(--gold-light); }

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 2rem 3rem;
  position: relative;
}

.hero .eyebrow { margin-bottom: 1.4rem; }

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}
h1 em {
  display: block;
  font-style: normal;
  color: var(--gold);
}

.tagline {
  margin-top: 2rem;
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--smoke);
  line-height: 1.7;
  font-weight: 300;
}

.thirty-years {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.35);
  border-radius: 2px;
  padding: 0.6rem 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.thirty-years::before {
  content: '◆';
  font-size: 0.55rem;
  color: var(--gold);
}

/* ── Products Section ────────────────────────────────────────────────── */
.coming {
  padding: 4rem 3rem;
  background: var(--steel);
  border-top: 2px solid var(--gold);
}

.coming-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(200,146,42,0.15);
  border: 1px solid rgba(200,146,42,0.15);
}

.product-card {
  background: var(--steel);
  padding: 1.8rem 1.6rem;
  transition: background 0.2s;
}
.product-card:hover { background: #213d5e; }

.product-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.product-card ul {
  list-style: none;
  padding: 0;
}
.product-card ul li {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.9;
  padding-left: 0.9rem;
  position: relative;
}
.product-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.3em;
}

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cta {
  padding: 3.5rem 3rem;
  text-align: center;
  border-top: 1px solid rgba(200,146,42,0.2);
}

.cta p {
  font-size: 1rem;
  color: var(--smoke);
  margin-bottom: 1.5rem;
}
.cta strong { color: var(--white); }

.cta-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  header        { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
  .contact-header { text-align: center; }
  .hero         { padding: 3rem 1.5rem; }
  .coming       { padding: 3rem 1.5rem; }
  .cta          { padding: 2.5rem 1.5rem; }
  footer        { padding: 1.5rem; flex-direction: column; text-align: center; }
}
