/* Hard Work — justhardwork.com
   Brand palette lifted from the app: ink on concrete paper, one
   marking-orange accent, steel neutrals. */

:root {
  --ink: #1b1e22;
  --paper: #f2f2ee;
  --surface: #ffffff;
  --accent: #e2571e;
  --accent-ink: #b8410f;
  --line: #cdd0c8;
  --card-edge: #e4e5df;
  --manual: #6b6f6a;
  --calibrated: #2f7d4f;
  --beta: #9a6a00;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}

a { color: var(--accent-ink); }

img { max-width: 100%; display: block; border-radius: 12px; }

/* ---------- header / nav ---------- */

header.site {
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

header.site .bar {
  max-width: 1060px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

nav.main { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }

nav.main a {
  color: #d8d8d4;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 2px;
}

nav.main a:hover { color: #fff; }

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: #fff;
  padding: 72px 20px 84px;
}

.hero .inner { max-width: 1060px; margin: 0 auto; display: grid;
  grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

.hero h1 { font-size: 46px; line-height: 1.12; letter-spacing: -0.5px; }

.hero h1 em { color: var(--accent); font-style: normal; }

.hero p.lede { margin-top: 20px; font-size: 20px; color: #c9cbc6;
  max-width: 34em; }

.hero .cta-row { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  background: var(--accent-ink);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 17px;
}

.btn:hover { background: var(--accent); }

.btn.ghost {
  background: transparent;
  border: 1.5px solid #4a4e55;
  color: #e8e8e4;
}

.btn.ghost:hover { border-color: var(--accent); color: #fff; }

.hero .art img { box-shadow: 0 24px 60px rgba(0,0,0,0.45); }

.badge-note { margin-top: 14px; font-size: 13.5px; color: #8f938e; }

/* ---------- sections ---------- */

section.band { padding: 72px 20px; }

section.band.alt { background: var(--surface); border-top: 1px solid var(--card-edge);
  border-bottom: 1px solid var(--card-edge); }

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

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-ink);
}

h2 { font-size: 34px; line-height: 1.2; margin: 10px 0 18px; letter-spacing: -0.3px; }

h3 { font-size: 21px; margin: 26px 0 8px; }

.band p { max-width: 44em; color: #3a3e42; margin-bottom: 14px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.two-col.flip > .art { order: -1; }

/* ---------- cards ---------- */

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }

.card {
  background: var(--surface);
  border: 1px solid var(--card-edge);
  border-radius: 12px;
  padding: 22px;
}

.band.alt .card { background: var(--paper); }

.card .glyph { font-size: 26px; }

.card h4 { margin: 10px 0 6px; font-size: 17px; }

.card p { font-size: 15px; color: var(--manual); margin: 0; }

/* ---------- steps ---------- */

.steps { counter-reset: step; margin-top: 30px; display: grid; gap: 22px; }

.step {
  background: var(--surface);
  border: 1px solid var(--card-edge);
  border-radius: 12px;
  padding: 24px 24px 24px 76px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px; top: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-ink);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.step h4 { font-size: 18px; margin-bottom: 6px; }

.step p { margin: 0; color: #3a3e42; }

/* ---------- privacy strip ---------- */

.promise {
  background: var(--ink);
  color: #e8e8e4;
  border-radius: 14px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.promise h4 { color: #fff; font-size: 17px; margin-bottom: 6px; }

.promise p { color: #b9bcb7; font-size: 14.5px; margin: 0; max-width: none; }

.promise .check { color: var(--accent); font-weight: 800; margin-right: 6px; }

/* ---------- FAQ ---------- */

details {
  background: var(--surface);
  border: 1px solid var(--card-edge);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 10px;
}

details summary { font-weight: 700; cursor: pointer; font-size: 16.5px; }

details p { margin-top: 10px; }

/* ---------- gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }

.gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* ---------- legal / prose pages ---------- */

.prose { max-width: 760px; margin: 0 auto; padding: 56px 20px 80px; }

.prose h1 { font-size: 36px; margin-bottom: 8px; }

.prose .updated { color: var(--manual); font-size: 14px; margin-bottom: 28px; }

.prose h2 { font-size: 22px; margin: 34px 0 10px; }

.prose ul { margin: 0 0 14px 22px; }

.prose li { margin-bottom: 8px; }

/* ---------- footer ---------- */

footer.site {
  background: var(--ink);
  color: #9b9e99;
  padding: 44px 20px;
  font-size: 14.5px;
}

footer.site .inner { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }

footer.site a { color: #d8d8d4; text-decoration: none; }

footer.site a:hover { color: #fff; }

footer.site .copy { margin-left: auto; }

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .hero .inner, .two-col { grid-template-columns: 1fr; }
  .two-col.flip > .art { order: 0; }
  .cards, .promise, .gallery { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}

@media (max-width: 560px) {
  .cards, .promise, .gallery { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 56px; }
  footer.site .copy { margin-left: 0; }
}

img { background: var(--line); min-height: 60px; }
