/* buildwithsteve — shared styles */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #F47920;
  --orange-dark: #d4621a;
  --orange-light: #FFF3E8;
  --black: #0a0a0a;
  --near-black: #1a1a1a;
  --dark-grey: #333333;
  --mid-grey: #666666;
  --light-grey: #f5f5f5;
  --border: #e5e5e5;
  --white: #ffffff;
  --red: #dc2626;
  --green: #16a34a;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 2px solid var(--black);
}

.nav-brand {
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.nav-brand span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-grey);
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-dark); }

/* FOOTER */
footer {
  background: var(--black);
  color: var(--white);
  padding: 48px;
  border-top: 4px solid var(--orange);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  color: var(--orange);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-tagline {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { color: #444; font-size: 13px; }

/* DIVIDERS */
.full-divider {
  width: 100%;
  height: 2px;
  background: var(--black);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
  letter-spacing: -0.3px;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,121,32,0.4);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* PAGE WRAP */
.page-wrap {
  padding-top: 64px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
