:root {
  --bg: #080808;
  --panel: #111111;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --line: rgba(255,255,255,.12);
  --blue: #2b73ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(18px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
}

.brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -2px;
}
.brand span {
  display: block;
  font-size: 10px;
  letter-spacing: 7px;
  font-weight: 700;
  margin-top: -8px;
}

nav { display: flex; gap: 22px; color: var(--muted); font-size: 14px; }
nav a:hover { color: #fff; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 120px clamp(18px, 5vw, 72px) 70px;
  background-image: url("assets/dfq-printing-shop.jpg");
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.25) 100%),
    linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,0) 38%);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7d7d7;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  letter-spacing: -3px;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -1.5px;
}
h3 { margin-bottom: 8px; font-size: 20px; }
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
}
.primary { background: var(--blue); color: #fff; }
.primary:hover { filter: brightness(1.12); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.08); }
.secondary:hover { background: rgba(255,255,255,.14); }

.section {
  padding: 78px clamp(18px, 5vw, 72px);
}
.section-heading { max-width: 680px; margin-bottom: 30px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cards article {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.cards p, .quote-band p { color: var(--muted); margin-bottom: 0; }

.quote-band {
  margin: 0 clamp(18px, 5vw, 72px) 70px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #111, #171717);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.quote-band div { max-width: 760px; }

footer {
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-band { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 620px) {
  nav { display: none; }
  .cards { grid-template-columns: 1fr; }
  h1 { letter-spacing: -2px; }
}
