/* JTEK — one stylesheet, no frameworks. Palette pulled from the logo. */

:root {
  --orange:      #f2a01e;   /* logo amber */
  --orange-dark: #d6860c;
  --gray:        #8c8c8c;   /* logo wordmark gray */
  --ink:         #2b2b2b;
  --ink-soft:    #54565a;
  --faint:       #8a8d92;
  --bg:          #ffffff;
  --bg-alt:      #f4f4f5;
  --rule:        #e4e4e7;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--orange-dark); }
a:hover { text-decoration: underline; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link { display: inline-flex; align-items: center; }
.logo { height: 30px; width: auto; display: block; }
.topbar nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 24px;
}
.topbar nav a:hover { color: var(--ink); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #20242b url("hero.jpg") center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 23, 28, 0.86) 0%, rgba(20, 23, 28, 0.62) 48%, rgba(20, 23, 28, 0.34) 100%);
}
.hero-content {
  position: relative;
  padding: 96px 24px 104px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 16px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin: 0 0 22px;
}
.hero-sub {
  color: #d9dbe0;
  font-size: 1.1rem;
  max-width: 52ch;
  margin: 0 0 32px;
}

/* ---------- Button ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #1c1c1c;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn:hover { background: var(--orange-dark); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* ---------- Intro ---------- */
.intro { padding: 56px 0 8px; }
.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* ---------- Blocks ---------- */
.block {
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  margin-top: 44px;
}
.block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.block h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--orange);
  margin-top: 10px;
  border-radius: 2px;
}
.block p { color: var(--ink-soft); margin: 0 0 20px; }

.thing { margin-bottom: 32px; }
.thing:last-child { margin-bottom: 0; }
.thing h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.thing p { margin: 0 0 16px; }
.thing p:last-child { margin-bottom: 0; }

/* Service lists */
.services-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.services-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}
.services-list strong { color: var(--ink); font-weight: 700; }

/* ---------- Contact ---------- */
.contact .email { font-size: 1.3rem; margin-top: 12px; }
.contact .email a { font-weight: 700; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--rule);
  background: var(--bg-alt);
  margin-top: 44px;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.logo-foot { height: 26px; width: auto; opacity: 0.85; }
footer p { color: var(--faint); font-size: 0.9rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  body { font-size: 17px; }
  .hero-content { padding: 72px 24px 76px; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(20,23,28,0.88), rgba(20,23,28,0.7));
  }
  .topbar nav a { margin-left: 16px; font-size: 0.9rem; }
}
