/* PuuhaPete — rakennus. Checker-levy, keltainen, grafiitti. */
:root {
  --steel: #2c3036;
  --plate: #3a4048;
  --yellow: #f5c400;
  --ink: #111214;
  --paper: #ecece8;
  --header: 3.8rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  margin: 0;
  font-family: Impact, "Arial Black", "Oswald", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
}
.skip-link { position: absolute; left: -999px; }
.checker {
  background-color: var(--steel);
  background-image:
    linear-gradient(45deg, #32383f 25%, transparent 25%),
    linear-gradient(-45deg, #32383f 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #32383f 75%),
    linear-gradient(-45deg, transparent 75%, #32383f 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}
.site-header { position: sticky; top: 0; z-index: 8; background: var(--ink); color: var(--yellow); }
.header-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1rem;
  min-height: var(--header); display: flex; align-items: center; gap: .8rem;
}
.wordmark { color: var(--yellow); text-decoration: none; letter-spacing: .08em; font-size: 1.15rem; }
.nav-desktop { display: none; gap: 1rem; margin-left: auto; }
.nav-desktop a { color: #fff; text-decoration: none; font-family: system-ui, sans-serif; font-weight: 700; font-size: .85rem; }
.btn {
  display: inline-block; text-decoration: none; padding: .65rem 1rem;
  background: var(--yellow); color: #111; font-family: inherit; border: 0; cursor: pointer;
}
.btn-ghost { background: transparent; color: var(--yellow); box-shadow: inset 0 0 0 2px var(--yellow); }
.nav-toggle { margin-left: auto; background: none; border: 0; color: var(--yellow); font-size: 1.4rem; }
.nav-drawer { display: none; flex-direction: column; padding: .5rem 1rem 1rem; background: #000; }
.nav-drawer.is-open { display: flex; }
.nav-drawer a { color: var(--yellow); text-decoration: none; padding: .4rem 0; font-family: system-ui, sans-serif; }
@media (min-width: 820px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-drawer { display: none !important; }
}
.hero { min-height: 78vh; position: relative; color: #fff; display: grid; align-items: end; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,.78)); }
.hero-copy { position: relative; padding: 2rem 1.2rem 2.4rem; max-width: 40rem; }
.hero-copy h1 { font-size: clamp(2.6rem, 8vw, 5rem); line-height: .9; margin: .2rem 0 .5rem; text-transform: uppercase; }
.hero-copy p { font-family: system-ui, sans-serif; font-weight: 500; max-width: 28rem; }
.kicker { font-family: system-ui, sans-serif; color: var(--yellow); letter-spacing: .2em; text-transform: uppercase; font-size: .72rem; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 2.8rem 1.2rem; }
.jobs { display: grid; gap: 0; }
@media (min-width: 700px) { .jobs { grid-template-columns: 1fr 1fr; } }
.job {
  padding: 1.2rem 1.15rem; border: 3px solid #111;
  font-family: system-ui, sans-serif;
}
.job:nth-child(odd) { background: var(--yellow); }
.job h3 { font-family: Impact, "Arial Black", sans-serif; margin: 0 0 .3rem; text-transform: uppercase; }
.plate-band { min-height: 8rem; }
.split { display: grid; gap: 1.2rem; }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; align-items: center; } }
.split img { width: 100%; height: 22rem; object-fit: cover; }
.split p, .split li { font-family: system-ui, sans-serif; }
.contact-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.box { background: #111; color: #eee; padding: 1.3rem; }
.box a { color: var(--yellow); font-weight: 800; font-family: system-ui, sans-serif; }
.form label { display: block; margin-bottom: .6rem; font-family: system-ui, sans-serif; }
.form input, .form textarea {
  width: 100%; background: #222; color: #fff; border: 2px solid var(--yellow);
  padding: .55rem; font: inherit;
}
.site-footer { background: #000; color: #888; padding: 1.2rem; font-family: system-ui, sans-serif; font-size: .85rem; display: flex; justify-content: space-between; flex-wrap: wrap; }
.site-footer a { color: var(--yellow); }
