:root {
  --bg: #050607;
  --bg-soft: #101214;
  --panel: rgba(17, 19, 21, 0.9);
  --panel-solid: #14171a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f6f4ef;
  --muted: #b8b4ad;
  --muted-2: #89847c;
  --red: #e10600;
  --red-dark: #990b08;
  --green: #25c46b;
  --amber: #f0a11f;
  --steel: #7d858d;
  --warm: #d8c7a6;
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(225, 6, 0, 0.1), transparent 32%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 82px),
    linear-gradient(180deg, #050607 0%, #101214 48%, #08090a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(0, 0, 0, 0.3));
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar .container {
  width: min(100% - 56px, 1840px);
}

.topbar-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  justify-self: start;
}

.brand-mark {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong,
.footer strong {
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy span,
.footer span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  justify-self: center;
}

.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a[aria-current="page"] {
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.nav-cta-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 72px 0;
}

.page-top {
  padding: 86px 0 42px;
}

.page-card {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: end;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--panel-solid);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.page-card h1 {
  margin-bottom: 0;
  font-size: 64px;
}

.page-card-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.service-detail-section {
  padding-top: 34px;
}

.services-grid-page .service-card {
  min-height: 340px;
}

.render-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.render-hero-copy,
.render-hero-media,
.substrate-card,
.video-frame,
.system-product,
.system-product-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.render-hero-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.render-hero-copy h1 {
  font-size: 62px;
}

.render-hero-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.render-hero-media {
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018) 72%, rgba(255, 255, 255, 0.032)),
    var(--panel-solid);
}

.render-hero-media img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
  background: transparent;
}

.render-hero-media figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.012);
}

.system-products-section {
  padding-top: 72px;
}

.system-products-stack {
  display: grid;
  gap: 22px;
}

.system-product {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0;
  overflow: hidden;
}

.system-product-copy {
  padding: 30px;
}

.system-product-copy h3 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1;
}

.system-product-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.benefit-grid div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.benefit-grid strong {
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.system-product-visual {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-width: 0 0 0 1px;
  border-radius: 0;
  box-shadow: none;
}

.system-product-visual img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  max-height: 420px;
  object-fit: contain;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.system-product-visual div {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.system-product-visual span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-product-visual h4 {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1;
  font-family: "Rajdhani", Arial, sans-serif;
  text-transform: uppercase;
}

.system-product-visual p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.colour-range-card {
  scroll-margin-top: 120px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.colour-range-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.colour-range-head h3 {
  margin-bottom: 14px;
  font-size: 48px;
  line-height: 1;
  font-family: "Rajdhani", Arial, sans-serif;
  text-transform: uppercase;
}

.colour-range-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.76;
}

.colour-carousel {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
}

.colour-gallery {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.colour-gallery::-webkit-scrollbar {
  display: none;
}

.colour-arrow,
.lightbox-arrow,
.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-family: "Rajdhani", Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.colour-arrow {
  width: 52px;
  height: 72px;
  font-size: 48px;
}

.colour-arrow:hover,
.lightbox-arrow:hover,
.lightbox-close:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(225, 6, 0, 0.22);
}

.colour-sheet {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  padding: 0;
  text-decoration: none;
  text-align: left;
  appearance: none;
  scroll-snap-align: start;
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.colour-sheet:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.colour-sheet img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1800 / 650;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.colour-sheet span {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.colour-lightbox,
.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 64px minmax(0, 880px) 64px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 34px;
  background: rgba(2, 3, 4, 0.9);
  backdrop-filter: blur(10px);
}

.colour-lightbox[hidden],
.work-lightbox[hidden] {
  display: none;
}

.lightbox-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: calc(100vh - 68px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 128px);
  object-fit: contain;
  background: #fff;
}

.lightbox-panel figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-arrow {
  width: 64px;
  height: 92px;
  font-size: 58px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 32px;
}

.modal-open {
  overflow: hidden;
}

.work-page-card {
  display: block;
  max-width: 920px;
}

.work-page-card h1 {
  max-width: 760px;
  margin-bottom: 22px;
}

.work-page-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

.work-gallery-section {
  scroll-margin-top: 118px;
  padding-top: 30px;
}

.work-project-list {
  display: grid;
  gap: 24px;
}

.work-project-card {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.work-project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.work-project-copy h3 {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1;
}

.work-project-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.work-project-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0 0;
}

.work-project-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.work-project-meta dt {
  margin-bottom: 8px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-project-meta dd {
  margin: 0;
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.work-project-media {
  position: relative;
  display: grid;
  align-items: center;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 44%),
    rgba(255, 255, 255, 0.025);
}

.work-slider {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-slider::-webkit-scrollbar {
  display: none;
}

.work-slide {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  appearance: none;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.work-slide img {
  width: 100%;
  height: clamp(360px, 36vw, 540px);
  object-fit: cover;
  background: #0b0d0f;
}

.work-slide span {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(5, 6, 7, 0.28);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(15, 18, 20, 0.76);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 46px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.work-arrow:hover {
  transform: translateY(calc(-50% - 2px));
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(225, 6, 0, 0.22);
}

.work-arrow:first-child {
  left: 14px;
}

.work-arrow:last-child {
  right: 14px;
}

.work-lightbox .lightbox-panel {
  max-width: min(1180px, calc(100vw - 170px));
}

.work-lightbox .lightbox-panel img {
  background: #0b0d0f;
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-gallery-card {
  display: grid;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.work-photo-placeholder {
  min-height: 280px;
  display: grid;
  place-items: end start;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 42px),
    #111417;
}

.work-photo-placeholder span {
  color: rgba(246, 244, 239, 0.18);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 0.82;
}

.work-gallery-card h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
}

.work-gallery-card p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.substrate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.substrate-card {
  padding: 24px;
}

.substrate-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--warm);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.substrate-card h3 {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
}

.substrate-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
}

.process-section {
  padding: 92px 0;
}

.process-layout,
.video-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.process-intro h2,
.video-layout h2 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
}

.process-intro p,
.video-layout p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.process-list {
  counter-reset: process;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.process-list li {
  counter-increment: process;
  position: relative;
  padding: 18px 18px 18px 76px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--warm);
  background: rgba(5, 6, 7, 0.55);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.video-section {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(225, 6, 0, 0.11), transparent 38%),
    linear-gradient(180deg, #101214, #08090a);
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  margin-top: 12px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.statement-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Rajdhani", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 72px;
  line-height: 0.94;
}

.hero-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: var(--radius);
}

.trust-strip div {
  padding: 18px;
  min-height: 112px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(125, 133, 141, 0.18), rgba(17, 19, 21, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.38;
}

.hero-logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(225, 6, 0, 0.16), rgba(0, 0, 0, 0.14)),
    rgba(0, 0, 0, 0.26);
}

.hero-logo {
  width: min(100%, 430px);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.statement-block {
  position: relative;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.statement-block h2 {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1;
}

.statement-block p:last-child {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}

.intro-section,
.section,
.standards-section,
.area-section,
.contact-section {
  padding: 92px 0;
}

.intro-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.split-layout,
.standards-layout,
.area-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: start;
}

.split-layout h2,
.section-head h2,
.standards-copy h2,
.area-copy h2,
.contact-layout h2 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
}

.rich-text p,
.section-head p,
.standards-copy p,
.area-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 292px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--warm);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.standards-section {
  background:
    linear-gradient(120deg, rgba(225, 6, 0, 0.12), transparent 38%),
    linear-gradient(180deg, #101214, #090a0b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.standards-list div {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 700;
}

.area-section {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), transparent 42%),
    linear-gradient(180deg, #08090a, #111315);
}

.area-checker {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    var(--panel-solid);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.postcode-form {
  margin: 0 0 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.postcode-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.postcode-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.postcode-row input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  outline: none;
  color: var(--text);
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
}

.postcode-row input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.postcode-form p {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.6;
}

.coverage-result {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--steel);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.coverage-result span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-result strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.coverage-result p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.coverage-result.is-green {
  border-left-color: var(--green);
  background: linear-gradient(135deg, rgba(37, 196, 107, 0.13), rgba(20, 23, 26, 0.95));
}

.coverage-result.is-amber {
  border-left-color: var(--amber);
  background: linear-gradient(135deg, rgba(240, 161, 31, 0.15), rgba(20, 23, 26, 0.95));
}

.coverage-result.is-red {
  border-left-color: var(--red);
  background: linear-gradient(135deg, rgba(225, 6, 0, 0.15), rgba(20, 23, 26, 0.95));
}

.coverage-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.scale-item {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 6, 7, 0.42);
}

.scale-item strong {
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.scale-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.legend-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dot-green {
  background: var(--green);
}

.dot-amber {
  background: var(--amber);
}

.dot-red {
  background: var(--red);
}

.contact-section {
  padding-bottom: 74px;
}

.contact-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.contact-link {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--text);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-bottom: 24px;
  padding: 0 16px;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c4a);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1060px) {
  .topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-layout,
  .page-card,
  .render-hero,
  .system-product,
  .process-layout,
  .video-layout,
  .split-layout,
  .standards-layout,
  .area-layout,
  .contact-layout,
  .services-grid,
  .substrate-grid,
  .work-project-card,
  .work-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .page-card h1 {
    font-size: 52px;
  }

  .render-hero-copy h1 {
    font-size: 52px;
  }

  .render-hero-media img {
    flex: 0 0 auto;
    height: clamp(320px, 48vw, 440px);
    min-height: 0;
  }

  .system-product-copy h3 {
    font-size: 44px;
  }

  .work-project-media {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  h1 {
    font-size: 58px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar-inner {
    gap: 14px;
  }

  .topbar .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .brand-copy strong {
    font-size: 23px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 11px;
  }

  .nav-cta {
    width: 100%;
  }

  .topbar-actions {
    order: 2;
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero,
  .page-top,
  .intro-section,
  .section,
  .standards-section,
  .process-section,
  .video-section,
  .area-section,
  .contact-section {
    padding: 58px 0;
  }

  h1 {
    font-size: 44px;
  }

  .page-card {
    padding: 22px;
  }

  .work-page-card p {
    font-size: 16px;
  }

  .page-card h1 {
    font-size: 40px;
  }

  .render-hero-copy {
    padding: 22px;
  }

  .render-hero-copy h1 {
    font-size: 38px;
  }

  .render-hero-media img {
    flex: 0 0 auto;
    height: clamp(240px, 72vw, 320px);
    min-height: 0;
  }

  .substrate-card h3,
  .system-product-copy h3,
  .system-product-visual h4,
  .colour-range-head h3,
  .process-intro h2,
  .video-layout h2 {
    font-size: 36px;
  }

  .split-layout h2,
  .section-head h2,
  .standards-copy h2,
  .area-copy h2,
  .contact-layout h2 {
    font-size: 38px;
  }

  .hero-lead,
  .rich-text p,
  .section-head p,
  .standards-copy p,
  .area-copy p,
  .contact-layout p {
    font-size: 16px;
  }

  .trust-strip,
  .standards-list,
  .benefit-grid,
  .coverage-scale {
    grid-template-columns: 1fr;
  }

  .system-product-copy {
    padding: 22px;
  }

  .system-product-visual {
    border-width: 1px 0 0;
  }

  .system-product-visual img {
    min-height: 220px;
    max-height: 300px;
  }

  .colour-range-card {
    scroll-margin-top: 260px;
    padding: 22px;
  }

  .colour-carousel {
    position: relative;
    display: block;
  }

  .colour-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 60px;
    font-size: 38px;
    transform: translateY(-50%);
    background: rgba(15, 18, 20, 0.82);
  }

  .colour-arrow:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .colour-arrow:first-child {
    left: 8px;
  }

  .colour-arrow:last-child {
    right: 8px;
  }

  .colour-lightbox,
  .work-lightbox {
    grid-template-columns: 1fr;
    padding: 68px 10px 20px;
  }

  .lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 70px;
    font-size: 44px;
    transform: translateY(-50%);
    background: rgba(15, 18, 20, 0.82);
  }

  .lightbox-arrow:hover {
    transform: translateY(calc(-50% - 2px));
  }

  .lightbox-arrow:nth-of-type(2) {
    left: 10px;
  }

  .lightbox-arrow:last-child {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-panel img {
    max-height: calc(100vh - 150px);
  }

  .postcode-row {
    grid-template-columns: 1fr;
  }

  .postcode-row .btn {
    width: 100%;
  }

  .work-gallery-card {
    padding: 14px;
  }

  .work-gallery-section {
    scroll-margin-top: 250px;
  }

  .work-project-copy {
    padding: 22px;
  }

  .work-project-copy h3 {
    font-size: 36px;
  }

  .work-project-meta {
    grid-template-columns: 1fr;
  }

  .work-slide img {
    height: clamp(260px, 74vw, 360px);
  }

  .work-arrow {
    width: 40px;
    height: 60px;
    font-size: 38px;
  }

  .work-arrow:first-child {
    left: 8px;
  }

  .work-arrow:last-child {
    right: 8px;
  }

  .work-lightbox .lightbox-panel {
    max-width: none;
  }

  .work-photo-placeholder {
    min-height: 220px;
  }

  .work-gallery-card h3 {
    font-size: 30px;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .hero-logo-frame {
    min-height: 220px;
  }

  .statement-block h2 {
    font-size: 30px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card span {
    margin-bottom: 24px;
  }

  .contact-link {
    font-size: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
