/* =========================================================
   Inspection Tags — v2 stylesheet (matching real site)
   ========================================================= */

:root {
  --red: #e20928;
  --red-dark: #b30720;
  --red-light: #ff1a35;
  --black: #000;
  --bg: #0a0a0a;
  --panel: #1a1a1a;
  --panel-2: #232323;
  --text: #ffffff;
  --muted: #b8b8b8;
  --border: #2a2a2a;

  --maxw: 1200px;
  --header-h: 84px;

  --font-display: "Raleway", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Raleway", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  line-height: 1.02;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand svg { width: 56px; height: 64px; flex-shrink: 0; }
.brand__logo {
  display: block;
  height: 56px;
  width: auto;
  flex-shrink: 0;
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
}
.brand__text small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: flex-end;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 6px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav__link[aria-current="page"]::after,
.nav__link:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--red);
}
.nav__caret { font-size: 9px; opacity: 0.9; }

.nav__has-children { position: relative; }
.nav__submenu {
  position: absolute;
  top: 100%;
  left: -12px;
  background: #000;
  border: 1px solid #1f1f1f;
  border-top: 2px solid var(--red);
  min-width: 220px;
  padding: 8px 0;
  display: none;
  z-index: 60;
}
.nav__has-children:hover .nav__submenu,
.nav__has-children:focus-within .nav__submenu { display: block; }
.nav__submenu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.nav__submenu a:hover { color: var(--red); }

.tel {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: right;
  color: #fff;
  line-height: 1.2;
}
.tel small { display: block; font-size: 11px; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  padding: 12px 22px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: center;
  line-height: 1.1;
}
.btn:hover { background: var(--red-dark); }
.btn--lg { font-size: 15px; padding: 16px 28px; }
.btn--block { width: 100%; }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn--outline:hover { background: #fff; color: var(--red); border-color: #fff; }
.btn--ghost-red {
  background: transparent;
  color: #fff;
  border: 1px solid var(--red);
}
.btn--ghost-red:hover { background: var(--red); }

/* Mobile nav — hidden everywhere by default; shown only on small screens when toggled open */
.nav-mobile { display: none; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 980px) {
  .nav__toggle { display: block; }
  .nav__list, .tel, .nav__cta { display: none; }
  .nav-mobile { display: none; background: #000; border-top: 1px solid #1f1f1f; padding: 12px 24px 24px; }
  .nav-mobile.is-open { display: block; }
  .nav-mobile a {
    display: block; padding: 12px 0;
    font-family: var(--font-display); text-transform: uppercase;
    font-weight: 700; letter-spacing: 0.06em; color: #fff;
    border-bottom: 1px solid #1a1a1a;
  }
  .nav-mobile a.is-sub { padding-left: 16px; font-size: 13px; opacity: 0.85; }
  .nav-mobile .tel { display: block; text-align: left; margin-top: 12px; }
  .nav-mobile .btn { margin-top: 12px; display: inline-flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 460px;
  background: #111;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.65) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 90px 24px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero__copy { max-width: 540px; }
.hero__eyebrow {
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 6px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 18px;
  line-height: 1;
}
.hero__sub {
  max-width: 480px;
  color: #e6e6e6;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__media { display: grid; place-items: center; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero__media { display: none; }
}

/* =========================================================
   Red bands
   ========================================================= */
.band {
  background: var(--red);
  color: #fff;
  padding: 36px 0;
  text-align: center;
}
.band h2 { margin: 0 0 6px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.band p { margin: 0 auto; max-width: 760px; opacity: 0.95; font-size: 1rem; }

.band-stats { background: var(--red); color: #fff; padding: 28px 0; }
.band-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.band-stats__item { text-align: center; }
.band-stats__item h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.band-stats__item p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.95;
  line-height: 1.35;
}
@media (max-width: 760px) { .band-stats__grid { grid-template-columns: 1fr 1fr; } }

.section { padding: 72px 0; background: var(--bg); }
.section--black { background: #000; }
.section--panel { background: var(--panel); }
.section--red { background: var(--red); color: #fff; }

.section-title {
  text-align: center;
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}
.section-title small {
  display: block;
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Industry button grid */
.linkgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.linkgrid--4 { grid-template-columns: repeat(4, 1fr); }
.linkgrid__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--red);
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  transition: background 0.15s;
}
.linkgrid__item::before { content: "›"; color: var(--red); font-weight: 800; font-size: 18px; }
.linkgrid__item:hover { background: var(--red); }
.linkgrid__item:hover::before { color: #fff; }
@media (max-width: 760px) { .linkgrid, .linkgrid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .linkgrid, .linkgrid--4 { grid-template-columns: 1fr; } }

/* Photo grid (industries with photos) */
.photogrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 28px;
}
.photogrid__item {
  position: relative;
  aspect-ratio: 16/10;
  background: #1a1a1a;
  overflow: hidden;
  display: block;
}
.photogrid__item .photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.55);
  transition: filter 0.25s;
}
.photogrid__item:hover .photo { filter: grayscale(0) brightness(0.8); }
.photogrid__item .label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  z-index: 2;
}
@media (max-width: 760px) { .photogrid { grid-template-columns: 1fr 1fr; } }

/* Tag bar with 3 product CTAs over photo */
.tagbar {
  position: relative;
  min-height: 240px;
  background: #111;
  display: flex;
  align-items: center;
  padding: 70px 24px;
  overflow: hidden;
}
.tagbar__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.6) brightness(0.45);
}
.tagbar__inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  align-items: center;
}
.tagbar .btn { padding: 16px 30px; font-size: 15px; }

/* Two-up split content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }
.split h2 { margin-bottom: 18px; }
.split ul { padding-left: 0; margin: 0; list-style: none; }
.split li {
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
  color: #d8d8d8;
  font-size: 15px;
  line-height: 1.5;
}
.split li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 10px;
  top: 4px;
}
.split li strong { color: #fff; font-weight: 700; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > *:first-child { order: 0; }
}

/* features grid (red band 3-col) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.features > div { padding: 0 16px; border-right: 1px solid rgba(255,255,255,0.25); }
.features > div:last-child { border-right: 0; }
.features h4 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.features p { margin: 0 0 18px; font-size: 0.9rem; line-height: 1.4; opacity: 0.95; }
.features p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; }
  .features > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; }
  .features > div:last-child { border-bottom: 0; }
}

/* Mission / What you get two-col on red */
.twocol-red {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.twocol-red h3 { color: var(--red); margin-bottom: 12px; }
@media (max-width: 760px) { .twocol-red { grid-template-columns: 1fr; gap: 32px; } }

/* Photo strip */
.photostrip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 24px;
}
.photostrip .photo {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}
@media (max-width: 760px) { .photostrip { grid-template-columns: repeat(3, 1fr); } }

/* Sample pack callout */
.sample {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  flex-wrap: wrap;
}
.sample__img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #2a2a2a;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 4px solid #1a1a1a;
}
.sample h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
/* Whole section as a single clickable link to /request-a-sample-pack/ */
.sample--link {
  text-decoration: none;
  color: inherit;
}
.sample--link:hover .sample__cta { text-decoration: underline; }
.sample__cta { color: var(--red); }
.sample h2 a { color: var(--red); }
.sample h2 a:hover { color: #fff; }

/* =========================================================
   Contact / Quote form
   ========================================================= */
.contact {
  background: #1a1a1a;
  padding: 72px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 32px; } }

.contact h2 { margin-bottom: 18px; }
.contact__addr { display: grid; gap: 14px; margin-bottom: 24px; }
.contact__addr-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: #d8d8d8;
}
.contact__icon {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact__icon svg { width: 18px; height: 18px; fill: var(--red); }

.contact__map {
  width: 100%;
  aspect-ratio: 16/10;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}
.contact__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.7) invert(0.92) hue-rotate(180deg) contrast(0.85); }

.qform {
  border: 1px solid var(--red);
  box-shadow: 0 0 28px rgba(227, 0, 27, 0.18);
  padding: 24px;
  background: #1a1a1a;
}
.qform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.qform input, .qform textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  background: #fff;
  color: #111;
  font-family: var(--font-body);
  font-size: 14px;
}
.qform textarea { min-height: 100px; resize: vertical; }
.qform__field { margin-bottom: 12px; }
.qform__captcha {
  width: 304px;
  max-width: 100%;
  height: 78px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  margin-bottom: 16px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 14px;
}
.qform__captcha::before {
  content: "I'm not a robot";
  font-size: 14px;
  color: #444;
  font-family: var(--font-body);
  padding-left: 36px;
  position: relative;
}
.qform__captcha::after {
  content: "reCAPTCHA";
  position: absolute;
  bottom: 6px;
  right: 50px;
  font-size: 8px;
  color: #888;
}
.qform__captcha-box {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border: 2px solid #c1c1c1;
  background: #fff;
}
.qform__captcha-logo {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  position: relative;
}
.qform__actions { display: flex; justify-content: flex-end; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: #000;
  color: #d0d0d0;
  padding: 56px 0 28px;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { color: #c0c0c0; font-size: 14px; }
.footer a:hover { color: var(--red); }
.footer__signup { margin-top: 48px; }
.footer__signup p { font-size: 13px; color: #a0a0a0; margin: 0 0 12px; }
.footer__signup form {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 480px;
}
.footer__signup input {
  padding: 14px 16px;
  border: 0;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: #111;
}
.footer__signup .btn { padding: 14px 36px; }
.footer__brandbar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px dashed #2a2a2a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.footer__brandbar svg { width: 100px; height: 50px; }
.footer__legal {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) { .footer__cols { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   Page header (small) for sub-pages
   ========================================================= */
.pageheader {
  padding: 56px 0 28px;
  background: var(--bg);
  text-align: center;
  border-top: 3px solid var(--red);
}
.pageheader h1 { margin: 0; }

/* product display container */
.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .product-showcase { grid-template-columns: 1fr; } }

/* Tag mockup container */
.tags { display: grid; place-items: center; }
.tags svg { width: 100%; max-width: 380px; height: auto; }

/* Tag cluster (overlapping multi-tag composition) */
.tagcluster {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1.2/1;
  margin: 0 auto;
}
.tagcluster svg { width: 100%; height: auto; }

.tagcluster-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

/* ===== Photo backgrounds (placeholder until real photos uploaded) ===== */
/* Subtle dark industrial-feeling backgrounds via CSS gradients — no junky striped boxes */
.hero__bg {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(60,60,60,0.7) 0%, rgba(0,0,0,0.95) 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 60px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 80px),
    #0a0a0a;
}
.hero__bg--pipework {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(80,80,80,0.4) 0%, rgba(0,0,0,0.95) 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 4px, transparent 4px 40px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 6px, transparent 6px 60px),
    linear-gradient(180deg, #1a1a1a, #050505);
}
.hero__bg--bespoke-tags,
.hero__bg--tear-off-tags,
.hero__bg--information-tags,
.hero__bg--oil-gas, .hero__bg--engineering, .hero__bg--mro, .hero__bg--rail,
.hero__bg--construction, .hero__bg--steel, .hero__bg--aviation,
.hero__bg--warehousing, .hero__bg--horticulture {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(70,70,70,0.5) 0%, rgba(0,0,0,0.95) 65%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.02) 0 3px, transparent 3px 50px),
    linear-gradient(180deg, #161616, #050505);
}

.tagbar__bg {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(60,60,60,0.5), rgba(0,0,0,0.95) 70%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 3px, transparent 3px 50px),
    #0a0a0a;
}

.photogrid__item .photo {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(80,80,80,0.5), rgba(0,0,0,0.9) 70%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 3px, transparent 3px 30px),
    #1a1a1a;
  filter: brightness(0.75);
  transition: filter 0.25s;
}
.photogrid__item:hover .photo { filter: brightness(1); }

.photostrip .photo {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(70,70,70,0.5), rgba(0,0,0,0.9) 70%),
    repeating-linear-gradient(60deg, rgba(255,255,255,0.025) 0 3px, transparent 3px 24px),
    #1a1a1a;
}

.sample__img {
  background:
    radial-gradient(circle at 50% 50%, rgba(80,80,80,0.6), #0a0a0a 75%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 3px, transparent 3px 16px),
    #1a1a1a;
}

.section-lede {
  text-align: center;
  max-width: 760px;
  margin: 8px auto 0;
  color: #cfcfcf;
  font-size: 1.05rem;
}

.hero--small { min-height: 320px; }
.hero--small .hero__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.hero__inner--centered { grid-template-columns: 1fr; text-align: center; }
.hero__inner--centered .hero__copy { margin: 0 auto; }

.tagbar--lg { min-height: 280px; padding: 90px 24px; }

/* Twocol-red used inside non-red sections — recolor */
.section .twocol-red h3 { color: var(--red); }

/* =========================================================
   Home hero — left-aligned stack on a single full-width column,
   matching real site
   ========================================================= */
.hero--home .hero__inner {
  grid-template-columns: 1fr;
  padding: 80px 24px 70px;
  min-height: 540px;
  align-items: center;
}
.hero--home .hero__bg::after {
  background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.6) 100%);
}
.hero__copy--centered {
  max-width: 760px;
  margin: 0;
}
.hero__stack {
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero__stack-top {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  line-height: 0.98;
}
.hero__stack-main {
  color: var(--red);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-top: 2px;
}
.hero__tagline {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  margin: 0 0 26px;
}

/* White CTA variant — matches "REQUEST SAMPLE PACK" button */
.btn--white {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.btn--white:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* =========================================================
   "Durable Bespoke Tags" — 3-col layout (Mission | image | What You Get)
   ========================================================= */
.bespoke-cols {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.bespoke-col h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.bespoke-col p {
  color: #d6d6d6;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
.bespoke-col em { color: #fff; font-style: italic; }
.bespoke-col--media .ph--tagcluster {
  aspect-ratio: 1 / 0.78;
  width: 100%;
}

@media (max-width: 900px) {
  .bespoke-cols { grid-template-columns: 1fr; gap: 32px; text-align: center; }
}

/* =========================================================
   Features section (red band: "Designed with tough environments...")
   ========================================================= */
.features-section { padding: 64px 0 70px; }
.features-section .container { max-width: 1320px; }
.features-section__title {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 28px;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}
.features-section__cta {
  text-align: center;
  margin: 0 auto 48px;
}
.features--divided {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}
.features--divided .features__col {
  padding: 50px 40px;
  text-align: center;
  border-right: 4px solid #fff;
}
.features--divided .features__col:last-child { border-right: 0; }
.features--divided h4 {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.features--divided h4 + p {
  margin: 0 0 36px;
  font-size: 1rem;
  line-height: 1.55;
  color: #fff;
  opacity: 1;
}
.features--divided .features__col > *:last-child { margin-bottom: 0; }

@media (max-width: 820px) {
  .features--divided { grid-template-columns: 1fr; gap: 32px; }
  .features--divided .features__col { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 28px; }
  .features--divided .features__col:last-child { border-bottom: 0; }
}

/* =========================================================
   Real photography overrides — sourced from the live site
   (inspectiontags.co.uk WordPress export). Applied after the
   gradient placeholders so they win the cascade.
   ========================================================= */

/* Industry + product hero backgrounds: dark overlay for legibility */
.hero__bg--pipework,
.hero__bg--bespoke-tags,
.hero__bg--tear-off-tags,
.hero__bg--information-tags,
.hero__bg--oil-gas, .hero__bg--engineering, .hero__bg--mro, .hero__bg--rail,
.hero__bg--construction, .hero__bg--steel, .hero__bg--aviation,
.hero__bg--warehousing, .hero__bg--horticulture {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Each hero uses the same photo the live site uses on the matching page.
   Where the live site has no industry-specific photo (mro, warehousing,
   horticulture), it falls back to the dark oil-rig "industrial-bg" shot. */
.hero__bg--pipework         { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/pipework.jpg"); }
.hero__bg--bespoke-tags     { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/blueprints.jpg"); }
.hero__bg--tear-off-tags    { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/engineering.jpg"); }
.hero__bg--information-tags { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/rail.jpg"); }
.hero__bg--oil-gas          { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/oil-gas.jpg"); }
.hero__bg--engineering      { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/engineering.jpg"); }
.hero__bg--mro              { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/industrial-bg.jpg"); }
.hero__bg--rail             { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/rail.jpg"); }
.hero__bg--construction     { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/blueprints.jpg"); }
.hero__bg--steel            { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/steel.jpg"); }
.hero__bg--aviation         { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/aviation.jpg"); }
.hero__bg--warehousing      { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/industrial-bg.jpg"); }
.hero__bg--horticulture     { background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url("../img/industrial-bg.jpg"); }

/* Tagbar (red CTA strip with dark pipework backdrop), shown on every
   industry page + home + inspection-tags overview. The base .tagbar__bg
   rule already applies grayscale(0.6) brightness(0.45) for legibility.
   The base rule's `background:` shorthand resets background-size, so
   we re-declare it here. */
.tagbar__bg--pipework {
  background-image: url("../img/pipework.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Free sample pack image on home — closed-folder sticker shot from
   uploads/2022/10/Sample-Pack-Sticker.png. The PNG already has its own
   circular gray border, so we drop the parent's nested circle/border
   and let the PNG show full size. */
.sample__img--samplepack {
  background-image: url("../img/sample-pack.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 0;
  width: 320px;
  height: 320px;
}
.sample h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

/* Real tag photos that replaced the inline SVG illustrations.
   Sit cleanly in .hero__media (hero) and .tags (body section) slots. */
.hero__media .hero__tag,
.tags .hero__tag {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

/* =========================================================
   Home hero — two-column with tag carousel on the right
   (matches live inspectiontags.co.uk hero)
   ========================================================= */
.hero--home .hero__inner--two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero--home .hero__copy {
  text-align: left;
  max-width: none;
}
.hero__carousel {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: center;
  aspect-ratio: 4 / 3;
}
.hero__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.5));
}
.hero__carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  font-family: inherit;
}
.hero__carousel-arrow:hover { color: var(--red); }
.hero__carousel-arrow--prev { left: -10px; }
.hero__carousel-arrow--next { right: -10px; }

@media (max-width: 880px) {
  .hero__inner--two-col {
    grid-template-columns: 1fr;
    padding: 60px 24px 48px;
  }
  .hero__carousel { max-width: 380px; }
}

/* =========================================================
   Industry sub-page enrichments — intro lede, applications list,
   tag spotlight (3-up). Uses existing .section / .split patterns.
   ========================================================= */
.industry-intro {
  padding: 60px 24px 30px;
  text-align: center;
}
.industry-intro p {
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.industry-intro p strong { color: #fff; }

.tag-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.tag-spotlight__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
}
.tag-spotlight__item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}
.tag-spotlight__item h3 {
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 0.02em;
}
.tag-spotlight__item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .tag-spotlight { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tag-spotlight { grid-template-columns: 1fr; }
}

/* Industries overview page — intro band over the photogrid */
.industries-intro {
  padding: 64px 24px 24px;
  text-align: center;
}
.industries-intro h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 18px;
  color: #fff;
}
.industries-intro p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Map placeholder shown on local preview (iframe activates on prod via JS) */
.contact__map {
  position: relative;
}
.contact__map iframe:not([src]),
.contact__map iframe[src=""] {
  display: none;
}
.contact__map iframe[data-src]:not([src]) ~ .contact__map-stub,
.contact__map:has(iframe[data-src]:not([src]))::after {
  content: "Map loads on production";
  display: grid;
  place-items: center;
  background: #1a1a1a;
  color: #888;
  font-size: 0.85rem;
  text-align: center;
  height: 100%;
  min-height: 200px;
}

/* =========================================================
   Request a Sample Pack page (white body, two-column form)
   ========================================================= */
.sample-page {
  background: #fff;
  color: #111;
  padding: 80px 0;
}
.sample-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.sample-page__title {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #111;
}
.sample-page__intro {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
  margin: 0 0 28px;
  max-width: 520px;
}
.sample-page__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin: 0 0 28px;
  color: #111;
}
.sample-page__phone-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--red);
}
.sample-page__phone-icon svg {
  width: 24px;
  height: 24px;
}
.sample-page__img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 4px;
  margin-top: 4px;
}

/* Sample-pack form (light theme) */
.sform { display: grid; gap: 18px; }
.sform__label {
  display: grid;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.sform__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  background: #fff;
  font: inherit;
  font-weight: 400;
  color: #111;
}
.sform__input:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  border-color: var(--red);
}
.sform__input--addr { min-height: 96px; resize: vertical; }
.sform__input--msg { min-height: 120px; resize: vertical; }
.sform__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9f9fa;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 12px 14px;
  width: fit-content;
  font-size: 0.85rem;
  color: #555;
}
.sform__captcha-box {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #b0b0b0;
  border-radius: 2px;
  background: #fff;
}
.sform__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .sample-page { padding: 48px 0; }
  .sample-page__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Industries grid tiles (home page) */
.photogrid__item .photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photogrid__item .photo--oil-gas      { background-image: url("../img/oil-gas.jpg"); }
.photogrid__item .photo--engineering  { background-image: url("../img/engineering.jpg"); }
.photogrid__item .photo--mro          { background-image: url("../img/mro.jpg"); }
.photogrid__item .photo--rail         { background-image: url("../img/rail.jpg"); }
.photogrid__item .photo--construction { background-image: url("../img/construction.jpg"); }
.photogrid__item .photo--steel        { background-image: url("../img/steel.jpg"); }
.photogrid__item .photo--aviation     { background-image: url("../img/aviation.jpg"); }
.photogrid__item .photo--warehousing  { background-image: url("../img/warehousing.jpg"); }
.photogrid__item .photo--horticulture { background-image: url("../img/horticulture.jpg"); }

/* Photo strip on inspection-tags overview page (6 product tag photos) */
.photostrip .photo {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
}
.photostrip .photo--strip1 { background-image: url("../img/bespoke-tags.png"); }
.photostrip .photo--strip2 { background-image: url("../img/information-tags.png"); }
.photostrip .photo--strip3 { background-image: url("../img/tear-off-tags.png"); }
.photostrip .photo--strip4 { background-image: url("../img/tear-off-green.png"); }
.photostrip .photo--strip5 { background-image: url("../img/info-tags-yellow.png"); }
.photostrip .photo--strip6 { background-image: url("../img/mccoy-tags.png"); }

/* Tag-cluster <img> on home: ensure the swap-in image fills the slot */
.bespoke-col--media .ph--tagcluster {
  display: block;
  object-fit: contain;
  background: transparent;
  height: auto;
}

/* =========================================================
   Our Reach — landing page grid + city cards
   ========================================================= */
.reach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.reach-card {
  position: relative;
  display: block;
  min-height: 280px;
  border: 1px solid var(--border);
  background: #111;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.reach-card:hover { border-color: var(--red); transform: translateY(-2px); }
.reach-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(0.3);
  transition: filter 0.2s;
}
/* Stronger gradient so titles, eyebrow and CTA all sit on a dark backdrop and pop */
.reach-card .reach-card__bg.hero__bg--oil-gas {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.92) 100%), url("../img/oil-gas.jpg");
}
.reach-card .reach-card__bg.hero__bg--engineering {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.92) 100%), url("../img/engineering.jpg");
}
.reach-card .reach-card__bg.hero__bg--pipework {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.92) 100%), url("../img/pipework.jpg");
}
/* Slight text-shadow so the white title and eyebrow always read clean even on highlights */
.reach-card h3,
.reach-card p,
.reach-card__eyebrow,
.reach-card__more { text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.reach-card:hover .reach-card__bg { filter: grayscale(0); }
.reach-card__inner {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}
.reach-card__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 8px;
}
.reach-card h3 { color: #fff; margin: 0 0 8px; font-size: 1.8rem; }
.reach-card p { color: var(--muted); margin: 0 0 16px; font-size: 0.95rem; }
.reach-card__more {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.reach-card:hover .reach-card__more { color: var(--red); }

.reach-industries {
  border: 1px solid var(--border);
  padding: 28px;
  background: #0d0d0d;
}
.reach-industries__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.reach-industries__list a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.reach-industries__list a:hover { color: var(--red); }

/* =========================================================
   Build Your Quote — multi-step form
   ========================================================= */
.bquote {
  background: #0d0d0d;
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bquote--done { text-align: center; padding: 48px 32px; }
.bquote--done h3 { margin-bottom: 12px; }
.bquote--done p { color: var(--muted); margin: 0; }

.bquote__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bquote__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.bquote__bar {
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
}
.bquote__bar span {
  display: block;
  height: 100%;
  background: var(--red);
  transition: width 0.25s ease;
}

.bquote__step h3 { font-size: 1.4rem; margin-bottom: 10px; color: #fff; }
.bquote__lead { color: var(--muted); margin: 0 0 18px; font-size: 0.95rem; }
.bquote__sublabel {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.bquote__group + .bquote__group { margin-top: 24px; }

.bquote__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bquote__chip {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 16px;
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.bquote__chip:hover { border-color: #fff; }
.bquote__chip.is-selected {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.bquote__chip:disabled { opacity: 0.5; cursor: not-allowed; }

.bquote__tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.bquote__tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #111;
  border: 1px solid var(--border);
  padding: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  color: #fff;
  transition: border-color 0.15s, transform 0.15s;
}
.bquote__tag img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}
.bquote__tag span {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}
.bquote__tag:hover { border-color: #fff; transform: translateY(-2px); }
.bquote__tag.is-selected { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }

.bquote__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bquote__fields label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bquote__fields label > span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.bquote__field--full { grid-column: 1 / -1; }
.bquote__fields input,
.bquote__fields textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  background: #0a0a0a;
  border: 1px solid var(--border);
  color: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.bquote__fields input:focus,
.bquote__fields textarea:focus { border-color: var(--red); }
.bquote__fields textarea { resize: vertical; }

.bquote__error {
  background: rgba(226, 9, 40, 0.1);
  border: 1px solid var(--red);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.bquote__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.bquote__actions .btn { min-width: 120px; }

@media (max-width: 600px) {
  .bquote__fields { grid-template-columns: 1fr; }
  .bquote__field--full { grid-column: auto; }
  .bquote__tags { grid-template-columns: repeat(2, 1fr); }
}
