/* Bolt & Flow — trade services concept. Industrial safety-signage read:
   square corners everywhere, hard offset shadows (no blur), hazard-stripe
   dividers, condensed uppercase display type + monospace labels. No pill
   buttons, no sticky blurred nav, no soft rounded cards — deliberately
   unlike SiteMzansi's own agency look and unlike the other two concepts. */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --bg: #0b0c0e;
  --bg-raised: #16181d;
  --text: #f3f4f1;
  --text-dim: #9a9ea8;
  --accent: #ffb020;
  --accent-ink: #14100a;
  --border: #ffffff22;
  --max: 1200px;
  --display: 'Oswald', Impact, "Arial Narrow", sans-serif;
  --mono: 'JetBrains Mono', "Courier New", monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  line-height: 1.55;
  font-size: 0.96rem;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.1rem); margin-bottom: 2rem; }
p { margin: 0; color: var(--text-dim); }
/* height:auto is required here — without it, the width/height HTML
   attributes on <img> map to literal CSS width/height presentational
   hints, and since nothing else declares 'height', that hint's raw pixel
   value wins even after max-width or aspect-ratio shrink the width,
   stretching every image out of proportion. */
img { max-width: 100%; width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.topbar {
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.topbar a { color: var(--accent-ink); text-decoration: underline; }

/* Hazard stripe: a repeating signature bar, this site's one recognizable
   motif, used sparingly (under the nav, above the footer) rather than
   as a wallpaper. */
.hazard {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--accent) 0 14px, #14100a 14px 28px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 0;
  border: 2px solid var(--text);
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  box-shadow: 5px 5px 0 0 var(--border);
  transition: box-shadow 0.15s, transform 0.15s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 0 var(--border); }
.btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 0 var(--border); }
.btn--primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent-ink); box-shadow: 5px 5px 0 0 var(--accent-ink); }
.btn--primary:hover { box-shadow: 7px 7px 0 0 var(--accent-ink); }
.btn--ghost { background: none; border-color: var(--border); color: var(--text); }
.btn--call { background: var(--bg-raised); color: var(--text); border-color: var(--border); font-size: 0.9rem; box-shadow: none; }
.btn--call:hover { transform: none; box-shadow: none; border-color: var(--accent); }
.btn--call svg { width: 16px; height: 16px; }

.nav {
  border-bottom: 2px solid var(--text);
  background: var(--bg);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-right: auto;
  letter-spacing: 0.02em;
}
.nav__brand-accent { color: var(--accent); }
.nav__links { display: flex; gap: 1.75rem; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.nav__links a { padding-bottom: 3px; border-bottom: 2px solid transparent; }
.nav__links a:hover { border-color: var(--accent); }
@media (max-width: 760px) { .nav__links { display: none; } }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}
.hero__text p { margin-top: 1.1rem; font-size: 1.02rem; max-width: 44ch; line-height: 1.65; }
.hero__ctas { margin-top: 2rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Hero photo reads as a clipped work-order snapshot, not a banner image:
   small, tilted, thick-bordered, pinned top-right rather than dominating
   the section. Keeps a photo (unlike the restaurant concept) without
   repeating the guesthouse's full-bleed framed-print treatment. */
.hero__visual { justify-self: end; margin-top: 1.5rem; }
.hero__visual-frame {
  position: relative;
  width: min(280px, 100%);
  transform: rotate(3deg);
}
.hero__visual img {
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 0 var(--accent);
}
.hero__visual-tag {
  position: absolute;
  top: -14px;
  left: -14px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  transform: rotate(-6deg);
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { justify-self: start; }
}

.trust {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
}
.trust__item { display: flex; flex-direction: column; gap: 0.25rem; }
.trust__num { font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--accent); }
.trust__item span:last-child { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.02em; }
@media (max-width: 700px) { .trust { grid-template-columns: 1fr 1fr; } }

.services, .work, .quote { max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem; }

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.75rem;
  grid-column: span 1;
  transition: box-shadow 0.15s, transform 0.15s;
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}
.service:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--border); }
.service--wide { grid-column: span 2; }
.service__tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.service h3 { font-size: 1.15rem; margin-bottom: 0.6rem; text-transform: none; }
.service__more {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.service__more::after { content: ' ->'; }
.service:hover .service__more { color: var(--accent); }
@media (max-width: 820px) { .services__grid { grid-template-columns: 1fr; } .service--wide { grid-column: span 1; } }

.work__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.work__item {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}
.work__item img { aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--border); filter: grayscale(0.25) contrast(1.05); transition: box-shadow 0.15s, transform 0.15s; }
.work__item:hover img { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--border); }
.work__item__caption { display: block; margin-top: 0.75rem; font-size: 0.85rem; color: var(--text-dim); }
.work__item:hover .work__item__caption { color: var(--text); }
@media (max-width: 700px) { .work__grid { grid-template-columns: 1fr; } }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--bg-raised);
  border: 2px solid var(--text);
  border-top: 4px solid var(--accent);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.25rem;
  box-shadow: 8px 8px 0 0 var(--accent-ink);
}
.modal[hidden] { display: none; }
.modal__eyebrow {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.modal h3 { margin-bottom: 1.25rem; text-transform: none; }
.modal p { margin-top: 0; margin-bottom: 1rem; font-size: 0.95rem; }
.modal p:last-child { margin-bottom: 0; }
.modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 32px;
  height: 32px;
  border: 2px solid var(--text);
  background: var(--bg);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); }

.quote { border-top: 2px solid var(--text); }
.quote__inner { max-width: 480px; }
.quote__inner p { margin-top: 0.5rem; margin-bottom: 2rem; }
.quote__form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.78rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.03em; }
.field input, .field select {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--mono);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.quote__note { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.25rem; }

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--text);
  display: flex;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
}
