/* ==========================================================================
   Bricker Builds — PPC landing page styles
   Brand tokens taken verbatim from brickerbuilds.com live CSS custom properties.
   Mobile-first. Static CSS only, no framework.
   ========================================================================== */

:root {
  /* --- Brand (verified from client site) --- */
  --bb-black: #000000;
  --bb-white: #ffffff;
  --bb-yellow: #fad107;
  --bb-yellow-dim: #e3bd05;
  --bb-yellow-light: #fbda39;
  --bb-panel: #181717;
  --bb-panel-2: #0e0e0e;
  --bb-border: #45433f;
  --bb-red: #ad0500;
  --bb-text-dim: #d9d9d9;
  --bb-text-muted: #9a9894;

  /* --- Type --- */
  --font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --tracking-head: 0.15em;
  --tracking-body: 0.05em;
  --tracking-btn: 0.3em;

  /* --- Layout --- */
  --max: 1200px;
  --max-wide: 1420px;
  --gutter: 20px;
  --radius: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bb-black);
  color: var(--bb-white);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: var(--tracking-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bb-yellow); }

h1, h2, h3, h4 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: var(--tracking-head);
  margin: 0 0 0.6em;
}

h1 { font-size: 32px; letter-spacing: 0.06em; }
h2 { font-size: 24px; }
h3 { font-size: 17px; }

p { margin: 0 0 1.1em; }

sup { font-size: 0.55em; line-height: 0; vertical-align: super; font-weight: inherit; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--wide { max-width: var(--max-wide); }

section { padding: 56px 0; position: relative; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: var(--tracking-btn);
  text-transform: uppercase;
  color: var(--bb-yellow);
  margin-bottom: 16px;
}
.eyebrow--muted { color: var(--bb-text-muted); }

.lede { font-size: 17px; line-height: 1.65; color: var(--bb-text-dim); max-width: 68ch; }
.center .lede { margin-left: auto; margin-right: auto; }

.center { text-align: center; }

/* --- Stud texture, used sparingly as a brand cue --- */
.studs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(250, 209, 7, 0.16) 1.6px, transparent 1.7px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.studs > * { position: relative; z-index: 1; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: var(--tracking-btn);
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  min-height: 52px;
}

.btn--primary { background: var(--bb-yellow); color: var(--bb-black); border-color: var(--bb-yellow); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--bb-yellow-light); border-color: var(--bb-yellow-light); }

.btn--ghost { background: transparent; color: var(--bb-white); border-color: var(--bb-border); }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--bb-white); }

.btn--block { display: flex; width: 100%; }

:focus-visible { outline: 3px solid var(--bb-yellow); outline-offset: 2px; }

/* ==========================================================================
   Labels for unapproved / missing content
   ========================================================================== */

.flag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.35;
  padding: 5px 9px;
  border: 1.5px solid var(--bb-yellow);
  color: var(--bb-yellow);
  background: rgba(250, 209, 7, 0.09);
  margin-bottom: 12px;
}
.flag--asset { border-color: #7f7cf5; color: #a8a5ff; background: rgba(127,124,245,0.1); }

.ph {
  border: 2px dashed var(--bb-border);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    var(--bb-panel-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 18px;
  min-height: 190px;
  gap: 8px;
}
.ph__tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: #a8a5ff; border: 1.5px solid #7f7cf5; padding: 4px 8px;
}
.ph__txt { font-size: 13px; color: var(--bb-text-muted); line-height: 1.5; max-width: 34ch; margin: 0; }

/* ==========================================================================
   Nav
   ========================================================================== */

.topbar {
  background: var(--bb-yellow);
  color: var(--bb-black);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  line-height: 1.4;
}

.nav {
  background: var(--bb-black);
  border-bottom: 1px solid var(--bb-border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.nav__logo img { width: 132px; }
.nav__cta { font-size: 10.5px; letter-spacing: .16em; padding: 12px 14px; min-height: 44px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { padding: 34px 0 44px; overflow: hidden; }
.hero__grid { display: grid; gap: 32px; }

.hero h1 { margin-bottom: 18px; }
.hero h1 .hl { color: var(--bb-yellow); display: block; }

.hero__sub { font-size: 16px; color: var(--bb-text-dim); margin-bottom: 24px; max-width: 52ch; }

.hero__art { position: relative; margin: 4px 0 8px; }
.hero__art img { width: 100%; max-width: 420px; margin: 0 auto; filter: drop-shadow(0 24px 50px rgba(250,209,7,0.14)); }
.hero__artcap {
  text-align: center; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bb-text-muted); margin-top: 10px;
}

/* Three-fact strip */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--bb-border); margin-bottom: 26px; }
.facts__i { padding: 16px 10px; text-align: center; border-right: 1px solid var(--bb-border); }
.facts__i:last-child { border-right: 0; }
.facts__n { display: block; font-size: 20px; font-weight: 800; color: var(--bb-yellow); letter-spacing: 0.02em; line-height: 1.1; }
.facts__l { display: block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bb-text-muted); margin-top: 6px; line-height: 1.4; }

.hero__cta { margin-bottom: 22px; }
@media (min-width: 900px) { .hero__cta { display: none; } }

.trustline { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bb-text-muted); margin-top: 22px; line-height: 1.7; }
.trustline b { color: var(--bb-white); font-weight: 700; }

/* ==========================================================================
   Form
   ========================================================================== */

.formcard { background: var(--bb-panel); border: 1px solid var(--bb-border); padding: 24px 20px; }
.formcard__h { font-size: 19px; margin-bottom: 6px; }
.formcard__sub { font-size: 13px; color: var(--bb-text-muted); margin-bottom: 20px; letter-spacing: 0.02em; }

.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 7px; color: var(--bb-text-dim);
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 16px; /* 16px minimum prevents iOS zoom on focus */
  line-height: 1.4;
  color: var(--bb-white);
  background: var(--bb-black);
  border: 1px solid var(--bb-border);
  border-radius: var(--radius);
  padding: 13px 14px;
  min-height: 50px;
  appearance: none;
}
.field textarea { min-height: 92px; resize: vertical; }
.field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--bb-yellow) 50%), linear-gradient(135deg, var(--bb-yellow) 50%, transparent 50%);
  background-position: calc(100% - 20px) 22px, calc(100% - 14px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--bb-yellow); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: #6d6b67; }

.field--err input, .field--err select, .field--err textarea { border-color: #ff6a55; }
.err { display: none; font-size: 12px; color: #ff8a78; margin-top: 6px; letter-spacing: 0.02em; text-transform: none; font-weight: 400; }
.field--err .err { display: block; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__foot { font-size: 11.5px; color: var(--bb-text-muted); margin-top: 14px; line-height: 1.6; letter-spacing: 0.02em; }

.orcall { text-align: center; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--bb-border); }
.orcall__t { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bb-text-muted); margin-bottom: 10px; }

/* ==========================================================================
   The minimum — lead USP section
   ========================================================================== */

.minimum { background: var(--bb-panel-2); border-top: 1px solid var(--bb-border); border-bottom: 1px solid var(--bb-border); }
.minimum__grid { display: grid; gap: 30px; align-items: center; }

.bignum {
  font-size: 108px; font-weight: 800; line-height: 0.85; color: var(--bb-yellow);
  letter-spacing: -0.02em; margin: 0 0 6px;
}
.bignum__u { display: block; font-size: 13px; letter-spacing: var(--tracking-btn); text-transform: uppercase; color: var(--bb-white); margin-top: 14px; }

.compare { border: 1px solid var(--bb-border); background: var(--bb-black); }
.compare__r { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--bb-border); }
.compare__r:last-child { border-bottom: 0; }
.compare__r--us { background: rgba(250, 209, 7, 0.08); }
.compare__n { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bb-text-dim); }
.compare__r--us .compare__n { color: var(--bb-white); font-weight: 700; }
.compare__v { font-size: 20px; font-weight: 800; color: var(--bb-text-muted); white-space: nowrap; }
.compare__r--us .compare__v { color: var(--bb-yellow); }
.compare__cap { font-size: 11.5px; color: var(--bb-text-muted); padding: 12px 18px; border-top: 1px solid var(--bb-border); line-height: 1.55; }

/* ==========================================================================
   Gallery of real kits
   ========================================================================== */

.kits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.kit {
  background: var(--bb-panel);
  border: 1px solid var(--bb-border);
  padding: 16px 14px 14px;
  text-align: center;
}
.kit img { width: 100%; max-width: 210px; margin: 0 auto 12px; }
.kit__n, .kit__d { display: block; }
.kit__n { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bb-white); }
.kit__d { font-size: 11.5px; color: var(--bb-text-muted); margin-top: 4px; letter-spacing: 0.02em; }

/* ==========================================================================
   Generic card grids
   ========================================================================== */

.grid { display: grid; gap: 16px; }
.card { background: var(--bb-panel); border: 1px solid var(--bb-border); padding: 24px 20px; }
.card__i { width: 34px; height: 34px; margin-bottom: 14px; color: var(--bb-yellow); }
.card h3 { margin-bottom: 8px; font-size: 14px; }
.card p { font-size: 14px; color: var(--bb-text-dim); line-height: 1.6; margin: 0; }

/* Use-case chips */
.uses { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.use {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--bb-border); padding: 9px 13px; color: var(--bb-text-dim);
}

/* Process */
.steps { display: grid; gap: 20px; counter-reset: s; }
.step { border: 1px solid var(--bb-border); background: var(--bb-panel); }
.step__body { padding: 22px 20px; }
.step__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: var(--bb-yellow); color: var(--bb-black);
  font-weight: 800; font-size: 15px; margin-bottom: 14px;
}
.step h3 { font-size: 14px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--bb-text-dim); margin: 0; }
.step .ph { border-left: 0; border-right: 0; border-top: 0; min-height: 160px; }

/* Pricing / timeline */
.price { display: grid; gap: 16px; }
.pricecard { border: 1px solid var(--bb-border); background: var(--bb-panel); padding: 24px 20px; }
.pricecard--lead { border-color: var(--bb-yellow); }
.pricecard__t { font-size: 12px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bb-yellow); margin-bottom: 14px; }
.pricecard dl { margin: 0; }
.pricecard dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bb-text-muted); margin-top: 14px; }
.pricecard dt:first-child { margin-top: 0; }
.pricecard dd { margin: 4px 0 0; font-size: 17px; font-weight: 700; color: var(--bb-white); }

.honest { border: 1px solid var(--bb-border); border-left: 3px solid var(--bb-yellow); background: var(--bb-panel-2); padding: 22px 20px; margin-top: 22px; }
.honest h3 { font-size: 13px; margin-bottom: 10px; }
.honest p { font-size: 14px; color: var(--bb-text-dim); margin: 0 0 10px; }

/* Client row */
.clients { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.client {
  border: 1px solid var(--bb-border); padding: 14px 18px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bb-white);
}

/* FAQ */
.faq { border-top: 1px solid var(--bb-border); }
.faq details { border-bottom: 1px solid var(--bb-border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative;
  font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--bb-yellow); line-height: 1;
}
.faq details[open] summary::after { content: "\2013"; }
.faq__a { padding: 0 0 22px; font-size: 14.5px; color: var(--bb-text-dim); line-height: 1.7; }
.faq__a p { margin-bottom: 0.9em; }

/* Final CTA */
.final { background: var(--bb-panel-2); border-top: 1px solid var(--bb-border); }
.final__grid { display: grid; gap: 30px; }

/* Footer */
.foot { border-top: 1px solid var(--bb-border); padding: 34px 0 110px; font-size: 12px; color: var(--bb-text-muted); line-height: 1.7; }
.foot img { width: 130px; margin-bottom: 18px; opacity: 0.85; }
.foot p { margin-bottom: 0.8em; }

/* Sticky mobile CTA */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--bb-black); border-top: 1px solid var(--bb-border);
  padding: 10px var(--gutter); display: flex; gap: 10px;
  transform: translateY(110%); transition: transform .22s ease;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.sticky.is-on { transform: translateY(0); }
.sticky .btn { flex: 1; font-size: 12px; letter-spacing: 0.18em; padding: 14px 12px; min-height: 48px; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 600px) {
  h1 { font-size: 42px; }
  h2 { font-size: 28px; }
  .kits { grid-template-columns: repeat(3, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .price { grid-template-columns: repeat(2, 1fr); }
  .formcard { padding: 30px 26px; }
  .fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
}

@media (min-width: 900px) {
  section { padding: 78px 0; }
  h1 { font-size: 50px; }
  h2 { font-size: 32px; }
  h3 { font-size: 18px; }
  .lede { font-size: 18px; }

  .nav__cta { font-size: 13px; letter-spacing: .3em; padding: 16px 26px; min-height: 52px; }
  .nav__inner { min-height: 74px; }
  .nav__logo img { width: 180px; }

  .hero { padding: 56px 0 68px; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
  /* Cap the hero render so the copy column stays close in height to the form
     column, instead of leaving a long void beside it. */
  .hero__art img { max-width: 100%; max-height: 430px; width: auto; }
  .facts__n { font-size: 24px; }

  .minimum__grid { grid-template-columns: 0.85fr 1.15fr; gap: 54px; }
  .bignum { font-size: 150px; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .price { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .final__grid { grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }

  .sticky { display: none; }
  .foot { padding-bottom: 44px; }

  .narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
}

@media (min-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ==========================================================================
   Photography — real Bricker Builds product and workshop shots
   ========================================================================== */

figure { margin: 0; }

.shot { border: 1px solid var(--bd-x, var(--bb-border)); background: var(--bb-panel); }
.shot img { width: 100%; }
.shot figcaption {
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--bb-text-muted);
  border-top: 1px solid var(--bb-border);
  letter-spacing: .02em;
}
.shot figcaption b { color: var(--bb-white); font-weight: 700; }

/* Full-bleed image band, used once for rhythm between dense sections */
.band { position: relative; padding: 0; border-top: 1px solid var(--bb-border); border-bottom: 1px solid var(--bb-border); }
.band img { width: 100%; height: 260px; object-fit: cover; display: block; }
.band__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,0) 100%);
  padding: 40px 20px 18px;
}
.band__cap p { margin: 0 auto; max-width: var(--max); font-size: 13px; color: var(--bb-text-dim); letter-spacing: .02em; }
.band__cap b { color: var(--bb-white); }

/* Craft section: one large proof shot plus a supporting trio */
.craft { display: grid; gap: 16px; }
.craft__trio { display: grid; gap: 16px; grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .craft__trio { grid-template-columns: repeat(3, 1fr); }
  .band img { height: 340px; }
}

@media (min-width: 900px) {
  .craft { grid-template-columns: 1.15fr 1fr; align-items: start; }
  .craft__trio { grid-template-columns: 1fr; }
  /* Texture shots crop happily; product and diagram shots are on white and must
     not be cut, so they letterbox onto white instead. */
  .craft__trio .shot img { height: 196px; object-fit: cover; }
  .craft__trio .shot--fit img { object-fit: contain; background: #fff; }
  .band img { height: 420px; }
}


/* ==========================================================================
   v2 rebuild — full-width hero, projects, use cases, team, process
   ========================================================================== */

/* --- Full-width centred hero with background photograph --- */
.herofull {
  position: relative;
  padding: 54px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--bb-border);
  isolation: isolate;
}
.herofull__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("/assets/img/hero-bg.webp?v=13");
  background-size: cover;
  background-position: center;
}
/* Keeps the workbench readable as texture while the copy stays legible.
   The hero SUBJECT is the kit render in front, not the background. */
.herofull__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(130% 100% at 50% 10%, rgba(0,0,0,.42) 0%, rgba(0,0,0,.72) 60%, rgba(0,0,0,.96) 100%),
    rgba(0,0,0,.22);
}
.herofull__inner { max-width: 920px; margin: 0 auto; text-align: center; }
/* The background is deliberately bright now, so the copy carries its own
   legibility rather than relying on a heavy scrim over the whole image. */
.herofull h1,
.herofull__sub,
.herofull .strip,
.herofull .eyebrow,
.herofull .priceline { text-shadow: 0 2px 16px rgba(0,0,0,.9), 0 1px 3px rgba(0,0,0,.8); }
.herofull h1 { font-size: 30px; margin-bottom: 18px; }
.herofull h1 .hl { color: var(--bb-yellow); display: block; }
.herofull__sub { font-size: 17px; color: var(--bb-text-dim); margin: 0 auto 20px; max-width: 60ch; }

.strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 0;
  margin: 0 auto 20px; font-size: 11px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--bb-white);
}
.strip span { padding: 0 16px; border-right: 1px solid var(--bb-border); line-height: 1.3; }
.strip span:last-child { border-right: 0; }

.priceline {
  font-size: 13.5px; color: var(--bb-text-muted); max-width: 60ch;
  margin: 16px auto 0; line-height: 1.6;
}
.priceline b { color: var(--bb-white); font-weight: 700; }

.heroshot { margin: 26px auto 0; max-width: 620px; }
.heroshot img { width: 100%; filter: drop-shadow(0 24px 46px rgba(0,0,0,.8)); }
.heroshot figcaption {
  margin-top: 12px; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bb-text-muted); text-align: center;
}

/* --- Client logo row --- */
.logorow { padding: 30px 0; border-bottom: 1px solid var(--bb-border); background: var(--bb-panel-2); }
.logorow__t {
  text-align: center; font-size: 10.5px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bb-text-muted); margin-bottom: 18px;
}

/* --- Project evidence cards --- */
.projects { display: grid; gap: 20px; }
.proj { border: 1px solid var(--bb-border); background: var(--bb-panel); display: flex; flex-direction: column; }
.proj__img { background: var(--bb-panel-2); padding: 22px; text-align: center; border-bottom: 1px solid var(--bb-border); }
.proj__img img { width: 100%; max-width: 240px; margin: 0 auto; }
.proj__body { padding: 20px; flex: 1; }
.proj h3 { font-size: 14px; margin-bottom: 4px; }
.proj__kind { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bb-yellow); margin-bottom: 14px; }
.proj dl { margin: 0; font-size: 13.5px; }
.proj dt {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bb-text-muted); margin-top: 12px;
}
.proj dt:first-child { margin-top: 0; }
.proj dd { margin: 3px 0 0; color: var(--bb-text-dim); line-height: 1.5; }
.proj dd.tbc { color: #a8a5ff; font-size: 12px; }

/* --- Use cases --- */
.uc { border: 1px solid var(--bb-border); background: var(--bb-panel); overflow: hidden; }
.uc img { width: 100%; height: 190px; object-fit: cover; display: block; border-bottom: 1px solid var(--bb-border); }
.uc__body { padding: 22px 20px; }
.uc h3 { font-size: 14px; margin-bottom: 10px; }
.uc p { font-size: 14px; color: var(--bb-text-dim); margin: 0; }

/* --- Team --- */
.team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.member { text-align: center; }
.member img {
  width: 100%; max-width: 128px; margin: 0 auto 12px;
  border: 1px solid var(--bb-border);
}
.member__n { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.member__r { font-size: 11.5px; color: var(--bb-text-muted); margin-top: 3px; line-height: 1.45; }
.member__b { font-size: 12.5px; color: var(--bb-text-dim); margin-top: 8px; line-height: 1.5; }

/* --- Four-step process --- */
.flow { display: grid; gap: 16px; }
.flowstep { border: 1px solid var(--bb-border); background: var(--bb-panel); padding: 22px 20px; }
.flowstep__n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; background: var(--bb-yellow); color: var(--bb-black);
  font-weight: 800; font-size: 14px; margin-bottom: 14px;
}
.flowstep h3 { font-size: 13.5px; margin-bottom: 8px; }
.flowstep p { font-size: 13.5px; color: var(--bb-text-dim); margin: 0; }

/* --- Final form section --- */
.formwrap { max-width: 720px; margin: 0 auto; }
.filefield {
  border: 1px dashed var(--bb-border); padding: 14px;
  font-size: 13px; color: var(--bb-text-muted);
}
/* Native file inputs render ~30px tall, under the 44px tap-target minimum. */
.filefield input { border: 0; padding: 12px 0; min-height: 44px; font-size: 14px; width: 100%; }
.filefield input::file-selector-button {
  font-family: var(--font); font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--bb-yellow); color: var(--bb-black);
  border: 0; border-radius: 0; padding: 11px 16px; margin-right: 12px;
  min-height: 44px; cursor: pointer;
}

@media (min-width: 600px) {
  .projects { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .herofull { padding: 52px 0 56px; }
  .projects { grid-template-columns: repeat(4, 1fr); }
  .herofull h1 { font-size: 52px; }
  .herofull__sub { font-size: 18px; }
  .projects { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(4, 1fr); }
  .team { grid-template-columns: repeat(5, 1fr); }
  .heroshot { max-width: 720px; }
}


/* ==========================================================================
   Range gallery + full-width team band
   ========================================================================== */

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gallery figure { position: relative; margin: 0; border: 1px solid var(--bb-border); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 12px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 10%, rgba(0,0,0,0) 100%);
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bb-white); line-height: 1.35;
}

/* Full-bleed team band — trimmed to a wide crop so it works edge to edge */
.teamband { position: relative; padding: 0; border-top: 1px solid var(--bb-border); border-bottom: 1px solid var(--bb-border); }
.teamband img { width: 100%; height: 320px; object-fit: cover; object-position: center 42%; display: block; }
.teamband__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.6) 60%, rgba(0,0,0,0) 100%);
  padding: 54px 20px 20px; text-align: center;
}
.teamband__cap p { margin: 0 auto; max-width: 62ch; font-size: 14px; color: var(--bb-text-dim); }
.teamband__cap b { color: var(--bb-white); }

@media (min-width: 600px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .teamband img { height: 440px; }
}

@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .teamband img { height: 580px; }
}


/* ==========================================================================
   Client logo wall
   ========================================================================== */

/* Flex rather than grid: an odd number of logos wraps centred instead of
   leaving a hole in the last row. */
.logowall { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 1040px; margin: 0 auto; }
.logonote {
  max-width: 900px; margin: 16px auto 0; text-align: center;
  font-size: 12px; color: var(--bb-text-muted); line-height: 1.6;
}

/* Hero eyebrow */
.herofull .eyebrow { color: var(--bb-yellow); margin-bottom: 14px; }



/* ==========================================================================
   Full-width collage strip · step imagery · real client logos
   ========================================================================== */

.collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.collage figure { margin: 0; }
.collage img {
  width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover; display: block;
  border: 1px solid var(--bb-border);
}
.collage figcaption {
  margin-top: 9px; font-size: 10px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bb-text-muted); text-align: center;
}
.collage__hint {
  text-align: center; font-size: 13px; color: var(--bb-text-muted);
  line-height: 1.6; max-width: 62ch; margin: 30px auto 0;
}

/* Step imagery inside the four-step flow */
.flowstep { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.flowstep img { width: 100%; height: 168px; object-fit: cover; border-bottom: 1px solid var(--bb-border); }
.flowstep .ph { min-height: 168px; border: 0; border-bottom: 1px solid var(--bb-border); }
.flowstep__body { padding: 20px; }

/* Client logos */

@media (min-width: 700px) { .collage { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1000px) { .collage { gap: 18px; } .collage figcaption { font-size: 10.5px; } }


/* Numbered step label — "01 · Share" */
.stepnum { color: var(--bb-yellow); font-weight: 800; letter-spacing: .12em; }
.flowstep h3 { font-size: 14px; letter-spacing: .1em; margin-bottom: 10px; }


/* Conceptual illustration marker — never let a mockup read as a photograph */
.illus { position: relative; }
.illus figcaption, .flowstep .illuslabel {
  font-size: 9.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bb-text-muted);
}
.illuslabel {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(0,0,0,.72); border: 1px solid var(--bb-border);
  padding: 4px 8px; color: var(--bb-text-muted);
  font-size: 9.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.flowstep { position: relative; }


/* Four project cards — avoid an orphan on the second row */
@media (min-width: 900px) { .projects { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 600px) and (max-width: 899px) { .projects { grid-template-columns: repeat(2, 1fr); } }


/* ==========================================================================
   Verified buyer reviews
   ========================================================================== */

.rating { text-align: center; margin-bottom: 30px; }
.rating__n { font-size: 52px; font-weight: 800; color: var(--bb-yellow); line-height: 1; letter-spacing: -0.01em; }
.rating__stars { font-size: 20px; color: var(--bb-yellow); letter-spacing: .18em; margin: 10px 0 8px; }
.rating__c { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--bb-text-muted); }

.revs { display: grid; gap: 16px; }
.rev { border: 1px solid var(--bb-border); background: var(--bb-panel); padding: 22px 20px; display: flex; flex-direction: column; }
.rev__q { font-size: 15px; line-height: 1.65; color: var(--bb-text-dim); margin: 0 0 16px; flex: 1; }
.rev__w { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.rev__n { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--bb-white); }
.rev__v { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--bb-yellow); border: 1px solid var(--bb-yellow); padding: 3px 7px; }
.rev__d { font-size: 11.5px; color: var(--bb-text-muted); }
/* Honesty note under the reviews. It is a caption belonging to the reviews
   above, not a lead-in to the FAQ below, so it carries a hairline that binds it
   upward and real space beneath it. On mobile it runs six lines, and centred
   copy that deep makes the eye hunt for each line start — so it left-aligns
   below 700px and holds a comfortable measure above. */
.revnote {
  font-size: 13px;
  color: var(--bb-text-muted);
  line-height: 1.7;
  max-width: 66ch;
  margin: 26px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--bb-border);
  text-align: left;
}

/* Space between the note and the FAQ heading. It was 0. */
.faqblock { margin-top: 52px; }

@media (min-width: 700px) {
  .revnote { text-align: center; }
  .faqblock { margin-top: 66px; }
}

.footlinks { margin: 6px 0; font-size: 12px; }
.footlinks a {
  color: var(--bb-text-dim); text-decoration: underline; text-underline-offset: 3px;
  display: inline-block; padding: 13px 2px; min-height: 44px; line-height: 18px;
}
.footlinks a:hover { color: var(--bb-yellow); }
.footlinks span { color: var(--bb-border); padding: 0 8px; }

@media (min-width: 700px) { .revs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .revs { grid-template-columns: repeat(3, 1fr); } }


/* The "your brand" kit box — compact, so it adds the aha without a full screen */
.herokit { margin: 26px auto 0; max-width: 340px; }
.herokit img { width: 100%; filter: drop-shadow(0 20px 44px rgba(0,0,0,.85)); }
.herokit figcaption {
  margin-top: 12px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bb-text-muted); text-align: center;
}
@media (min-width: 900px) { .herokit { max-width: 300px; } }

/* Five project cards in one clean row */
@media (min-width: 1100px) { .projects { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1100px) { .proj__body { padding: 18px 16px; } .proj dd { font-size: 13px; } }


/* ==========================================================================
   In-page section nav
   Anchor links only — nothing here leaves the page. On a paid-traffic page an
   outbound menu is a conversion leak; a jump menu is orientation.
   ========================================================================== */

.nav__links { display: none; }

/* The sticky bar would otherwise cover the heading a jump lands on */
#work, #uses, #why, #process, #pricing, #reviews { scroll-margin-top: 86px; }

@media (min-width: 1000px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
  }
  .nav__links a {
    color: var(--bb-text-dim);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color .15s ease, border-color .15s ease;
  }
  .nav__links a:hover,
  .nav__links a:focus-visible { color: var(--bb-white); border-bottom-color: var(--bb-yellow); }
}

@media (min-width: 1200px) {
  .nav__links a { font-size: 11px; padding: 14px 11px; }
}


/* ==========================================================================
   Hero layout — image beside the headline, never below the CTA
   ========================================================================== */

.herogrid { display: grid; gap: 0; }
.herogrid__lead { margin-bottom: 4px; }
.herocta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.herokit { margin: 18px auto 20px; max-width: 250px; }

@media (min-width: 900px) { .herofull h1 { font-size: 54px; } }
@media (min-width: 1200px) { .herofull h1 { font-size: 56px; } }


/* Hero strip + CTAs at desktop: fit the strip on one line, align the buttons */



/* ==========================================================================
   Hero: idea -> design -> boxed kit
   ========================================================================== */

.stages {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  justify-items: center;
  align-items: center;
  gap: 6px;
  margin: 4px auto 14px;
  max-width: 940px;
}
.stage { margin: 0; text-align: center; }
.stage img {
  height: 62px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.8));
}
.stage figcaption {
  margin-top: 10px; font-size: 12px; font-weight: 800; min-height: 38px;
  letter-spacing: .10em; text-transform: uppercase; color: var(--bb-white);
}
.stage__arrow { color: var(--bb-yellow); display: block; line-height: 0; padding: 0; }
.stage__arrow svg { width: 22px; height: 10px; }

.stages__note {
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bb-text-muted); text-align: center; margin: 0 auto 20px;
}

@media (min-width: 560px) {
  .stages { gap: 10px; }
  .stage img { height: 96px; }
  .stage figcaption { font-size: 13px; letter-spacing: .12em; min-height: 0; }
  .stage__arrow svg { width: 40px; height: 16px; }
}
@media (min-width: 1100px) {
  .stage img { height: 140px; }
  .stages { gap: 18px; }
  .stage figcaption { font-size: 14px; }
}

/* ==========================================================================
   Reviews: masonry columns so five cards leave no empty cell
   ========================================================================== */

.revs { display: block; columns: 1; column-gap: 16px; }
.rev {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
}
.rev__body { padding: 22px 20px; }
.rev__q { flex: none; }

@media (min-width: 700px)  { .revs { columns: 2; } }
@media (min-width: 1050px) { .revs { columns: 3; } }


/* ==========================================================================
   Mid-page call to action, placed where cost has just been answered
   ========================================================================== */

.ctaband {
  background: var(--bb-panel);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
  padding: 44px 0;
}
.ctaband__inner { display: grid; gap: 24px; align-items: center; }
.ctaband h2 { font-size: 22px; margin-bottom: 12px; }
.ctaband .lede { font-size: 15.5px; margin: 0; max-width: 60ch; }
.ctaband__act { display: flex; flex-direction: column; gap: 10px; }
.ctaband__act .btn { width: 100%; }

@media (min-width: 860px) {
  .ctaband { padding: 56px 0; }
  .ctaband__inner { grid-template-columns: 1.25fr 0.75fr; gap: 48px; }
  .ctaband h2 { font-size: 28px; }
  .ctaband__act { max-width: 320px; margin-left: auto; }
}


/* ==========================================================================
   Use-case note · compact "one big piece" band inside pricing
   ========================================================================== */

#uses { scroll-margin-top: 86px; }
.uc h3 { font-size: 14px; margin-bottom: 10px; }
.ucnote { font-size: 12.5px; color: var(--bb-text-muted); line-height: 1.6; margin: 16px auto 0; max-width: 70ch; text-align: center; }

.also {
  display: grid; gap: 0; margin-top: 22px;
  border: 1px solid var(--bb-border); background: var(--bb-panel); overflow: hidden;
}
.also img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-bottom: 1px solid var(--bb-border); }
.also__body { padding: 22px 20px; }
.also__body h3 { font-size: 15px; margin-bottom: 10px; }
.also__body p { font-size: 14px; color: var(--bb-text-dim); line-height: 1.6; margin: 0 0 12px; }
.also__link {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bb-yellow); text-decoration: none;
}
.also__link:hover, .also__link:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

/* Secondary call path under the form */
.orcall .btn { width: 100%; }
.orcall__note { font-size: 12px; color: var(--bb-text-muted); line-height: 1.6; margin: 10px 0 0; }

@media (min-width: 600px) { .orcall .btn { width: auto; } }

@media (min-width: 900px) {
  .also { grid-template-columns: 0.42fr 0.58fr; align-items: stretch; }
  .also img { height: 100%; aspect-ratio: auto; border-bottom: 0; border-right: 1px solid var(--bb-border); }
  .also__body { padding: 28px 30px; }
}

/* Single kit price card, centred, once the sculpture card moved into the band below */
.price--one { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.price--one .pricecard dd { font-size: 17px; }

#range { scroll-margin-top: 86px; }


/* ==========================================================================
   Client credibility line
   Replaces the logo wall. Names are set as a statement rather than dropped
   into boxes: word-shaped slots read as a logo wall that failed to load.
   ========================================================================== */

.brandline {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center;
  gap: 10px 26px;
  max-width: 1060px; margin: 0 auto;
  font-size: 19px; font-weight: 700; line-height: 1.35;
  letter-spacing: .01em; color: var(--bb-white);
}

.brandline__more {
  margin: 14px 0 0;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bb-text-muted);
}

@media (min-width: 700px) { .brandline { font-size: 22px; gap: 12px 34px; } }
@media (min-width: 1000px) { .brandline { font-size: 25px; gap: 12px 40px; } }
