/* Salomon the Handyman — blueprint utility: graph-paper navy + safety orange */
:root {
  --bg: #122336;
  --ink: #eaf1f8;
  --muted: #93a7bb;
  --accent: #ff7a1a;
  --accent-ink: #1c1206;
  --surface: #1a3049;
  --paper: #f4f0e6;
  --line: rgba(234, 241, 248, 0.16);
  --font-display: "Rubik", sans-serif;
  --font-body: "Rubik", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

body {
  background:
    linear-gradient(rgba(18, 35, 54, 0.96), rgba(18, 35, 54, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(120, 170, 220, 0.18) 27px 28px),
    repeating-linear-gradient(90deg, transparent 0 27px, rgba(120, 170, 220, 0.18) 27px 28px);
  background-attachment: fixed;
}

/* bar */
.bar { position: sticky; top: 0; z-index: 40; background: rgba(18, 35, 54, 0.95); border-bottom: 2px solid var(--accent); }
.bar-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; }
.mark { font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; letter-spacing: 0.03em; text-decoration: none; color: var(--accent); }
.mark span { display: block; font-family: var(--mono); font-weight: 400; font-size: 0.56rem; letter-spacing: 0.22em; color: var(--muted); }
.bar nav ul { display: flex; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.bar nav a { text-decoration: none; font-weight: 500; font-size: 0.92rem; }
.bar nav a:hover { color: var(--accent); }
.nav-btn { display: none; border: 1px solid var(--line); background: none; color: var(--ink); padding: 0.35rem 0.9rem; border-radius: 6px; }
.bar-call { font-family: var(--mono); font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }

/* hero */
.hero { padding: 3.8rem 0 4.2rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
.kicker { font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; color: var(--accent); }
.hero h1 { font-weight: 900; font-size: clamp(2.3rem, 6.5vw, 4rem); line-height: 1.04; margin: 0.6rem 0 1rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.lede { max-width: 46ch; color: var(--muted); }
.lede strong { color: var(--ink); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.3rem; }
.btn { display: inline-block; text-decoration: none; font-weight: 700; padding: 0.85rem 1.5rem; border-radius: 8px; }
.btn-orange { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 22px rgba(255, 122, 26, 0.3); }
.btn-orange:hover { background: #ff9346; }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.pay { display: flex; gap: 0.5rem; list-style: none; margin: 1.2rem 0 0; padding: 0; }
.pay li { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; border: 1px dashed var(--line); border-radius: 6px; padding: 0.3rem 0.7rem; color: var(--muted); }

.hero-photo { margin: 0; position: relative; }
.hero-photo img {
  width: 100%; height: 24rem; object-fit: cover; border-radius: 6px;
  border: 1px solid var(--line); box-shadow: 12px 12px 0 rgba(255, 122, 26, 0.25), 0 24px 50px rgba(0, 0, 0, 0.45);
}
.stamp {
  position: absolute; top: 1rem; right: -0.6rem; transform: rotate(4deg);
  font-family: var(--mono); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em;
  background: var(--paper); color: #6b3d0d; border: 2px solid #b0611c;
  padding: 0.45rem 0.8rem;
}

/* jobs */
.jobs { padding: 3.8rem 0; border-top: 1px solid var(--line); }
h2 { font-weight: 900; font-size: clamp(1.7rem, 4.5vw, 2.4rem); }
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.8rem 0 1rem; }
.job-grid article {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 1.3rem;
  position: relative; overflow: hidden;
}
.job-grid article::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 14px, transparent 14px 24px);
}
.job-grid h3 { font-size: 1.08rem; font-weight: 700; color: var(--accent); margin-top: 0.3rem; }
.job-grid p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.job-note { color: var(--muted); }

/* how — work ticket */
.how { padding: 3.5rem 0; background: var(--surface); border-block: 1px solid var(--line); }
.ticket { list-style: none; counter-reset: none; margin: 1.8rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ticket li { background: var(--paper); color: #2b2417; border-radius: 6px; padding: 1.3rem 1.4rem; position: relative; }
.ticket li::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; top: 2.7rem;
  border-bottom: 1px dashed rgba(43, 36, 23, 0.4);
}
.ticket span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; color: #a05a14; }
.ticket strong { display: block; font-size: 1.1rem; margin: 0.7rem 0 0.3rem; }
.ticket p { margin: 0; font-size: 0.92rem; color: #5c503c; }

/* trust */
.trust { padding: 3.8rem 0; }
.trust-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.trust p { color: var(--muted); max-width: 50ch; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 0; }
.facts div { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 1.1rem; }
.facts dt { font-weight: 900; font-size: 1.5rem; color: var(--accent); }
.facts dd { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 1.4rem 0 5.5rem; font-size: 0.9rem; color: var(--muted); }
.foot a { color: var(--accent); }
.foot-demo { font-size: 0.78rem; }

.sticky-call {
  position: fixed; left: 1rem; right: 1rem; bottom: 0.8rem; z-index: 60;
  background: var(--accent); color: var(--accent-ink); text-align: center; text-decoration: none;
  font-weight: 700; padding: 0.95rem; border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); display: none;
}

@media (max-width: 900px) {
  .hero-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-photo img { height: 16rem; }
  .job-grid, .ticket { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .bar nav ul {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 0; padding: 0.5rem 1.25rem 1rem;
  }
  body.nav-open .bar nav ul { display: flex; }
  .bar nav ul a { display: block; padding: 0.6rem 0; }
  .nav-btn { display: block; }
  .bar-call { display: none; }
  .sticky-call { display: block; }
}
