/* ====================================================================
   LMJ Plastering & Rendering — Main Stylesheet
   ==================================================================== */

/* ── Variables ─────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --brand-green:      #9DBB35;
  --brand-green-hover:#7EA024;
  --brand-green-deep: #5F781F;
  --brand-green-soft: #E8F0CE;

  /* Dark scale */
  --deep-charcoal: #0D1112;   /* main dark bg — hero, dark sections, footer */
  --graphite:      #171C1D;   /* dark card surface */

  /* Light scale */
  --surface: #F3F3EF;         /* main light section bg */
  --white:   #ffffff;         /* card bg on light sections */

  /* Semantic aliases */
  --charcoal:   var(--deep-charcoal);
  --dark:       var(--deep-charcoal);  /* merged — section--mid = section--dark */
  --off-white:  var(--surface);
  --accent:     var(--brand-green);
  --accent-hover: var(--brand-green-hover);

  /* Typography */
  --text:       #111414;
  --text-mid:   #555A5A;
  --text-light: #747878;

  /* On-dark typography */
  --text-on-dark:     #F5F5F1;
  --text-on-dark-mid: #B8BDBA;

  /* Borders & UI */
  --border:      #DADAD4;
  --border-dark: #2A3031;
  --stone:       var(--border);

  /* Status */
  --error:   #c0392b;
  --success: #5F781F;

  /* System */
  --font:         'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:       4px;
  --radius-lg:    8px;
  --shadow:       0 2px 16px rgba(12,16,18,0.08);
  --shadow-md:    0 4px 32px rgba(12,16,18,0.13);
  --shadow-lg:    0 8px 48px rgba(12,16,18,0.20);
  --transition:   0.22s ease;
  --container:    1200px;
  --container-sm: 860px;
}

/* ── Reset ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--sm { max-width: var(--container-sm); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(157,187,53,0.85); }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: var(--charcoal);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(157,187,53,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn--lg { padding: 17px 36px; font-size: 0.95rem; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,17,18,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  transition: all var(--transition);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo__image {
  display: block;
  width: auto;
  max-width: clamp(210px, 20vw, 250px);
  max-height: 54px;
  height: auto;
  object-fit: contain;
}
.site-logo__mark {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.site-logo__mark svg { width: 22px; height: 22px; fill: var(--charcoal); }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.site-logo__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.site-logo__sub {
  font-size: 0.68rem;
  color: var(--stone);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Primary nav — wrapper */
.primary-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

/* The UL WordPress outputs — must be flex for horizontal layout */
.primary-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: nowrap;
}

/* All top-level list items */
.primary-nav > ul > li {
  position: relative;
}

/* All nav links */
.primary-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-page-ancestor > a { color: var(--accent); }

/* Dropdown chevron on parent items */
.primary-nav .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 8px; height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='rgba(255,255,255,0.55)' d='M0 0l4 5 4-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--transition);
  margin-left: 2px;
  flex-shrink: 0;
}
.primary-nav .menu-item-has-children:hover > a::after,
.primary-nav .menu-item-has-children:focus-within > a::after {
  transform: rotate(180deg);
}

/* Dropdown panel */
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--graphite);
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-width: 240px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 200;
  pointer-events: none;
}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.primary-nav .sub-menu li { position: static; }
.primary-nav .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-left: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  gap: 0;
}
.primary-nav .sub-menu a::after { display: none !important; }
.primary-nav .sub-menu a:hover {
  color: var(--white);
  border-left-color: var(--accent);
  background: rgba(157,187,53,0.08);
  padding-left: 24px;
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-cta .btn { padding: 11px 20px; font-size: 0.82rem; }
.btn--nav-contact {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.22);
}
.btn--nav-contact:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}

/* Hamburger toggle — hidden at desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 9px 10px;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(0, 7px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(0, -7px); }

/* ── Mobile nav overlay ────────────────────────────────────────────── */
/* Always hidden until .is-open is added — applies at ALL viewport sizes */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: var(--charcoal);
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav.is-open { display: flex; }

/* Internal header row inside the mobile panel */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--dark);
}
.mobile-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mobile-nav__logo-image {
  display: block;
  width: auto;
  max-width: clamp(160px, 38vw, 190px);
  max-height: 42px;
  height: auto;
  object-fit: contain;
}
.mobile-nav__logo-mark {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mobile-nav__logo-mark svg { width: 18px; height: 18px; fill: var(--charcoal); }
.mobile-nav__logo-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.mobile-nav__logo-sub {
  font-size: 0.62rem;
  color: var(--stone);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
}
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.mobile-nav__close:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
.mobile-nav__close svg { width: 20px; height: 20px; stroke-width: 2.5; }

/* Scrollable link area */
.mobile-nav__links {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 0;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav__links ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav__links li { }

/* All links inside mobile nav */
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color var(--transition);
  gap: 12px;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible { color: var(--accent); }

/* Sub-menu links (smaller, indented) */
.mobile-nav .sub-menu { padding: 0; margin: 0; }
.mobile-nav .sub-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  padding: 12px 0 12px 16px;
  border-bottom-color: rgba(255,255,255,0.05);
}
.mobile-nav .sub-menu a:hover { color: var(--accent); }
.mobile-nav .sub-menu a::after { display: none !important; }

/* Expand/collapse chevron for parent items in mobile */
.mobile-nav .menu-item-has-children > a::after {
  content: '';
  display: block;
  width: 20px; height: 20px;
  min-width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.mobile-nav .menu-item-has-children.is-open > a::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%239DBB35' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.mobile-nav .menu-item-has-children > .sub-menu { display: none; }
.mobile-nav .menu-item-has-children.is-open > .sub-menu { display: block; }

/* CTA at bottom of mobile nav */
.mobile-nav__cta {
  padding: 16px 20px 28px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav__cta .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 14px; }

/* Page offset for fixed header */
body { padding-top: 70px; }
body.has-dark-hero { background: var(--charcoal); }
body.page-id-17 { padding-top: 0; }
body.page-id-17 .site-header { position: static; box-shadow: none; }
body.page-id-17 .mobile-nav { top: 0; }

/* ── WordPress admin bar offset ────────────────────────────────────
   WP injects html { margin-top: 32px } for logged-in users which
   shifts the document down without moving fixed elements, creating a
   visible gap between the header bottom and the first section.       */
body.admin-bar .site-header { top: 32px; }
body.admin-bar { padding-top: calc(70px + 32px); }
body.admin-bar .hero { height: calc(100vh - 70px - 32px); }
@media screen and (max-width: 782px) {
  /* Admin bar shrinks to 46px on narrow screens */
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar { padding-top: calc(60px + 46px); }
  body.admin-bar .hero { height: auto; }
}

.contact-page-intro {
  background: var(--white);
  padding: 14px 0 8px;
  border-bottom: 1px solid var(--border);
}
.contact-page-intro__inner {
  max-width: 820px;
  margin: 0 auto;
}
.contact-page-intro__inner h1 {
  font-size: clamp(1.75rem, 2.2vw, 2.4rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.contact-page-intro__inner p {
  max-width: 34rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
}
.contact-quote-section {
  padding: 16px 0 44px;
}
.contact-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.contact-quote-layout__form,
.contact-quote-support {
  min-width: 0;
}
.contact-quote-layout__form .quote-lead-shell {
  width: 100%;
}
.contact-quote-support {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-quote-support__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--off-white);
}
.contact-quote-support__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-quote-support__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,19,21,0.02) 0%, rgba(16,19,21,0.34) 100%);
}
.contact-quote-support__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16,19,21,0.84);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
.contact-quote-support__panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-quote-support__panel h2 {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.contact-quote-support__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.contact-quote-support__steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-mid);
}
.contact-quote-support__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(157,187,53,0.12);
  color: var(--accent);
  margin-top: 1px;
}
.contact-quote-support__icon svg {
  width: 12px;
  height: 12px;
}
.contact-quote-support__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.contact-quote-support__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(157,187,53,0.18);
  border-radius: 999px;
  background: rgba(157,187,53,0.06);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .contact-quote-layout {
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .contact-quote-layout {
    grid-template-columns: 1fr;
  }
  .contact-quote-support__image {
    min-height: 220px;
  }
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 0;
  height: calc(100vh - 70px);
  min-height: 520px;
  display: flex;
  align-items: flex-start;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,10,11,0.92) 0%, rgba(16,19,21,0.82) 44%, rgba(16,19,21,0.42) 100%);
  z-index: 1;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #121416 0%, #252A2E 50%, #1a1e22 100%);
  z-index: 0;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: saturate(0.9) contrast(1.04);
}
.hero__pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(157,187,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,187,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 75%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: clamp(32px, 3.5vw, 52px) 0;
  width: 100%;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero__text {
  max-width: 740px;
}
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: 0;
  max-width: 760px;
  text-wrap: balance;
  margin-bottom: 24px;
}
.hero h1 .highlight { color: var(--accent); }
.hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 640px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.hero__trust-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.hero__trust-sep {
  color: rgba(255,255,255,0.32);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-quote-form__grid .full { grid-column: 1 / -1; }
.hero-quote-form .form-group { gap: 5px; }
.hero-quote-form .form-group label,
.hero-quote-form__consent label {
  color: rgba(255,255,255,0.84);
}
.hero-quote-form .form-group input,
.hero-quote-form .form-group select,
.hero-quote-form .form-group textarea {
  background: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.16);
  padding: 11px 12px;
  font-size: 0.84rem;
}
.hero-quote-form .form-group textarea {
  min-height: 92px;
}
.hero-quote-form__note {
  margin: 12px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
}
.hero-quote-form__note a {
  color: var(--accent);
  font-weight: 700;
}
.hero-quote-form__consent {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.66);
  font-size: 0.75rem;
}
.hero-quote-form__submit {
  width: 100%;
  justify-content: center;
  padding: 15px 18px;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--dark);
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
}
.hero__image,
.service-card__img,
.commercial-split__image,
.project-card__fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero__stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
}
.hero__stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--charcoal);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,20,22,1) 0%, rgba(37,42,46,0.9) 100%);
}
.page-hero__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(157,187,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,187,53,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.page-hero__breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero__breadcrumb a:hover { color: var(--accent); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.25); }

/* ── Trust Bar ─────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.01em;
}
.trust-bar__item svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px; height: 16px;
}
.trust-bar__sep {
  color: rgba(255,255,255,0.15);
  display: none;
}
@media (min-width: 768px) { .trust-bar__sep { display: block; } }

/* ── Section Base ──────────────────────────────────────────────────── */
section { padding: 80px 0; }
.section--dark {
  background: var(--charcoal);
  color: var(--white);
}
.section--mid {
  background: var(--dark);
  color: var(--white);
}
.section--light { background: #F0F0EC; }
.section--white { background: #F0F0EC; }

body.home .trust-bar + section.section--white {
  padding-top: 68px;
}
body.home .trust-bar + section.section--white .section-header {
  margin-bottom: 44px;
}
body.home .trust-bar + section.section--white .audience-grid {
  gap: 24px;
}
body.home .who-we-work-with-section .section-header,
body.home .services-section .section-header {
  text-align: center;
}
body.home .who-we-work-with-section .section-header h2,
body.home .services-section .section-header h2 {
  width: 100%;
  color: var(--charcoal);
}
body.home .who-we-work-with-section .section-header p,
body.home .services-section .section-header p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  text-align: center;
}

body.home {
  padding-top: 70px;
  background: #ffffff;
}
body.home .site-header {
  position: fixed;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
body.home .mobile-nav {
  top: 0;
}
body.home .hero {
  height: calc(100vh - 70px);
  min-height: 520px;
  padding: 0;
}
body.home .hero__content {
  padding: clamp(32px, 3.5vw, 52px) 0;
}
body.home .trust-bar {
  padding: 14px 0;
}
body.home .trust-bar__inner {
  gap: 8px 20px;
}
body.home .section-header {
  margin-bottom: 44px;
}
body.home .rv-section .section-header {
  margin-bottom: 24px;
}
body.home .section-header h2 {
  margin-bottom: 12px;
}
body.home .section-header p {
  max-width: 640px;
}
body.home .rv-section .section-header p {
  max-width: 580px;
}
body.home .audience-grid {
  gap: 24px;
}
body.home .audience-card {
  padding: 32px 28px;
  min-height: 248px;
}
body.home .audience-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}
body.home .audience-card__icon svg {
  width: 26px;
  height: 26px;
}
body.home .audience-card h3 {
  font-size: 1.02rem;
}
body.home .audience-card p {
  font-size: 0.88rem;
  line-height: 1.64;
}
body.home .services-grid {
  gap: 24px;
}
body.home .service-card__body {
  padding: 28px;
}
body.home .service-card h3 {
  font-size: 1.08rem;
}
body.home .service-card p {
  font-size: 0.9rem;
}
body.home .render-systems-showcase__header {
  max-width: 760px;
}
body.home .render-systems-trust {
  margin: 18px 0 24px;
  gap: 8px;
}
body.home .render-systems-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body.home .render-system-card {
  padding-bottom: 24px;
}
body.home .render-system-card__texture {
  height: 108px;
}
body.home .render-system-card__number {
  margin: 20px 26px 10px;
}
body.home .render-system-card h3,
body.home .render-system-card__desc,
body.home .render-system-card__meta {
  margin-left: 26px;
  margin-right: 26px;
}
body.home .render-system-card h3 {
  font-size: 1rem;
}
body.home .render-system-card__desc {
  font-size: 0.85rem;
  line-height: 1.58;
}
body.home .featured-case-card {
  margin-bottom: 22px;
}
body.home .featured-case-card__image {
  min-height: 400px;
}
body.home .featured-case-card__content {
  padding: 30px;
}
body.home .featured-case-card__content h3 {
  font-size: 1.4rem;
}
body.home .featured-case-card__details {
  margin-bottom: 20px;
}
body.home .case-study-grid {
  gap: 24px;
}
body.home .project-card--case .project-card__body {
  min-height: 210px;
}
body.home .why-grid {
  gap: 18px;
}
body.home .why-item {
  padding: 22px;
}
body.home .process-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
body.home .process-step {
  padding-right: 18px;
}
body.home .prc-faq-accordion {
  gap: 12px;
}
body.home .prc-faq-question {
  padding: 18px 22px;
}
body.home .prc-faq-answer-inner {
  padding: 0 22px 20px;
}
body.home .cta-banner {
  padding: 68px 0;
}

.section-header { margin-bottom: 52px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-header h2 .accent { color: var(--accent); }
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}
.text-center h2,
.text-center p,
.text-center .section-label {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--dark .section-header p,
.section--mid .section-header p { color: rgba(255,255,255,0.65); }
.section--dark .section-header h2,
.section--mid .section-header h2 { color: var(--white); }

/* ── Audience Cards ────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 216px;
}
.audience-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.audience-card:hover::before { transform: scaleX(1); }
.audience-card__icon {
  width: 50px; height: 50px;
  background: rgba(157,187,53,0.12);
  border: 1px solid rgba(157,187,53,0.18);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.audience-card__icon svg { width: 25px; height: 25px; }
.audience-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--charcoal);
}
.audience-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.58; }

/* ── Service Cards ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}
.service-card__image::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(8,10,11,0.32));
  pointer-events: none;
}
.service-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: rgba(157,187,53,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.service-card__image-placeholder svg { width: 28px; height: 28px; }
.service-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.service-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; }

/* Media fills card image area */
.service-card__image svg { display: block; width: 100%; height: 100%; }
.service-card__img { transition: transform 0.45s ease, filter 0.45s ease; }
.service-card:hover .service-card__img {
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.03);
}

/* Dark variant */
.service-card--dark {
  background: var(--charcoal);
  border-color: rgba(255,255,255,0.08);
}
.service-card--dark h3 { color: var(--white); }
.service-card--dark p { color: rgba(255,255,255,0.62); }
.service-card--dark:hover { border-color: var(--accent); }

/* Services page guided journey */
.service-pathway__header,
.service-catalog .section-header,
.work-types .section-header {
  margin-left: auto;
  margin-right: auto;
}
.service-pathway__header p,
.service-catalog .section-header p,
.render-system-guide .section-header p,
.work-types .section-header p {
  margin-left: auto;
  margin-right: auto;
}
.service-pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-pathway-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-pathway-card:hover,
.service-pathway-card:focus-visible {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-pathway-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-pathway-card h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.08rem;
  line-height: 1.3;
}
.service-pathway-card p {
  flex: 1;
  margin-bottom: 18px;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}
.service-pathway-card__items {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}
.service-main-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-main-choice {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-main-choice:hover,
.service-main-choice:focus-visible {
  color: var(--text);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-main-choice__media {
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: var(--charcoal);
}
.service-main-choice__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.service-main-choice:hover .service-main-choice__img {
  transform: scale(1.04);
  filter: saturate(1.03) contrast(1.03);
}
.service-main-choice__body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.service-main-choice__body h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.25;
}
.service-main-choice__body p {
  flex: 1;
  margin-bottom: 18px;
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.7;
}
.service-group-stack {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.service-group {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 2fr);
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 96px;
}
.service-group:first-child {
  padding-top: 0;
  border-top: 0;
}
.service-group__intro {
  max-width: 360px;
}
.service-group__intro h3 {
  margin-bottom: 10px;
  color: var(--charcoal);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}
.service-group__intro p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
}
.service-group__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-card--compact .service-card__image {
  aspect-ratio: 16 / 8.5;
}
.service-card--compact .service-card__body {
  padding: 22px;
}
.work-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.work-type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.work-type-card h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}
.work-type-card p {
  margin-bottom: 18px;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
}
.work-type-card .styled-list {
  margin-bottom: 24px;
}
.work-type-card .btn {
  margin-top: auto;
}
.process-summary-cta {
  margin-top: 40px;
  text-align: center;
}

/* ── Render System Cards ───────────────────────────────────────────── */
.render-systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.render-system-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0 0 28px;
  transition: all var(--transition);
  overflow: hidden;
}
.render-system-card:hover {
  background: rgba(157,187,53,0.07);
  border-color: rgba(157,187,53,0.35);
  transform: translateY(-2px);
}
.render-system-card__number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 22px 28px 12px;
}
.render-system-card__texture {
  height: 116px;
  background-image: url("../../../../uploads/lmj-site-media/lmj-render-textures.png");
  background-size: 300% 200%;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.render-system-card__texture--1 { background-position: 0% 0%; }
.render-system-card__texture--2 { background-position: 50% 0%; }
.render-system-card__texture--3 { background-position: 100% 0%; }
.render-system-card__texture--4 { background-position: 0% 100%; }
.render-system-card__texture--5 { background-position: 50% 100%; }
.render-system-card__texture--6 { background-position: 100% 100%; }
.render-system-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 28px 8px;
  line-height: 1.3;
}
.render-system-card__desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
  margin: 0 28px 12px;
}
.render-system-card__meta {
  font-size: 0.77rem;
  color: rgba(157,187,53,0.75);
  font-weight: 500;
  margin: 0 28px;
}

/* ── Project Cards ─────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.project-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
}
.project-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card__image img { transform: scale(1.04); }
.project-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  background: linear-gradient(135deg, #1c2024 0%, #252a2e 100%);
  border-bottom: 2px dashed rgba(157,187,53,0.2);
  color: rgba(157,187,53,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.project-card__image-placeholder svg { width: 32px; height: 32px; }
.project-card__tags {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.project-card__tag {
  background: rgba(18,20,22,0.85);
  color: var(--stone);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.project-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.project-card__location {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.project-card__location svg { width: 12px; height: 12px; }
.project-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.35;
  flex: 1;
}
.project-card__result {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.project-card__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.project-card__cta svg { width: 13px; height: 13px; transition: transform var(--transition); }
.project-card:hover .project-card__cta svg { transform: translateX(3px); }

/* Demo label */
.demo-label {
  background: rgba(157,187,53,0.12);
  border: 1px dashed rgba(157,187,53,0.4);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

/* Case studies */
.case-studies-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--white) 62%, var(--surface) 62%, var(--surface) 100%);
}
.case-studies-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
}
.case-studies-header .btn { flex-shrink: 0; }
.featured-case-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  background: var(--charcoal);
  border: 1px solid rgba(157,187,53,0.24);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 26px;
}
.featured-case-card__image {
  min-height: 430px;
  background: var(--dark);
}
.featured-case-card__image img,
.featured-case-card__image .project-card__fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-case-card__content {
  padding: 34px;
  color: var(--white);
}
.featured-case-card__content h3 {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 12px;
}
.featured-case-card__content p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
  line-height: 1.68;
  margin-bottom: 22px;
}
.project-card__tags--inline {
  position: static;
  margin-bottom: 14px;
}
.project-card__tags--inline .project-card__tag {
  background: rgba(157,187,53,0.14);
  border: 1px solid rgba(157,187,53,0.26);
  color: var(--brand-green-soft);
}
.featured-case-card__details {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.featured-case-card__details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.featured-case-card__details div:last-child { border-bottom: 0; }
.featured-case-card__details strong {
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-case-card__details span {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}
.featured-case-card__cta {
  justify-content: center;
  min-width: 170px;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.project-card--case .project-card__image { aspect-ratio: 16 / 10; }
.project-card--case .project-card__body { min-height: 230px; }
.project-card--case h3 { flex: 0; }

/* ── Process Steps ─────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 24px 0 0;
}
.process-step__number {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 20px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.section--dark .process-step h3 { color: var(--white); }
.section--dark .process-step p  { color: rgba(255,255,255,0.62); }
.section--dark .process-step__number { border-color: var(--dark); }
.section--dark .process-steps::before { background: rgba(255,255,255,0.1); }

/* ── Why Choose Us ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #DADAD4;
  border-left: 4px solid #9DBB35;
  box-shadow: 0 3px 18px rgba(0,0,0,0.09);
  transition: all 0.22s ease;
}
.why-item:hover { box-shadow: 0 6px 32px rgba(0,0,0,0.14); transform: translateY(-2px); }
.why-item__icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-item__icon svg { width: 18px; height: 18px; color: var(--charcoal); }
.why-item__text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.3;
}
.why-item__text p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }

/* ── Plastering services grid ──────────────────────────────────────── */
.plast-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plast-service-card {
  background: #ffffff;
  border: 1px solid #DADAD4;
  border-top: 3px solid #9DBB35;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.plast-service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111414;
  margin-bottom: 8px;
}
.plast-service-card > p {
  font-size: 0.85rem;
  color: #555A5A;
  line-height: 1.55;
  margin-bottom: 14px;
}
.plast-service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plast-service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #555A5A;
  line-height: 1.4;
}
.plast-service-card li svg { color: #9DBB35; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) { .plast-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .plast-services-grid { grid-template-columns: 1fr; } }

/* ── FAQ Accordion ─────────────────────────────────────────────────── */
.prc-faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.prc-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.prc-faq-item.is-open { box-shadow: var(--shadow); }
.prc-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  transition: color var(--transition);
}
.prc-faq-question:hover { color: var(--accent); }
.prc-faq-icon {
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform var(--transition);
}
.prc-faq-item.is-open .prc-faq-icon { transform: rotate(45deg); }
.prc-faq-answer { overflow: hidden; transition: max-height 0.3s ease; }
.prc-faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Dark variant FAQs */
.faq-dark .prc-faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.faq-dark .prc-faq-question { color: var(--white); }
.faq-dark .prc-faq-answer-inner { color: rgba(255,255,255,0.65); }
.faq-dark .prc-faq-item.is-open { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

/* ── CTA Banner ────────────────────────────────────────────────────── */
.cta-banner {
  background:
    linear-gradient(90deg, rgba(8,10,11,0.94), rgba(16,19,21,0.86)),
    url("../../../../uploads/lmj-site-media/lmj-hero-rendered-home.png") center / cover;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(157,187,53,0.08) 0%, transparent 60%);
}
.cta-banner__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Brand CTA variant */
.cta-banner--accent {
  background: var(--accent);
}
.cta-banner--accent::before { background: rgba(255,255,255,0.08); }
.cta-banner--accent h2 { color: var(--charcoal); }
.cta-banner--accent p { color: rgba(18,20,22,0.7); }

/* ── Commercial section ────────────────────────────────────────────── */
.commercial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.commercial-split__text { }
.commercial-split__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.commercial-split__text p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.commercial-split__bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.commercial-split__bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.commercial-split__bullet::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.commercial-split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1c2024 0%, #252a2e 100%);
  border: 1px solid rgba(157,187,53,0.18);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.commercial-split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8,10,11,0.28));
  pointer-events: none;
}
.commercial-split__visual svg { display: block; width: 100%; height: 100%; }

/* ── Testimonials ──────────────────────────────────────────────────── */
.testimonials-placeholder {
  background: var(--off-white);
  border: 1px dashed rgba(157,187,53,0.35);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ── Content Page Sections ─────────────────────────────────────────── */
.content-section { padding: 72px 0; }
.content-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.25;
}
.content-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.content-section p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.content-section ul.styled-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.content-section ul.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.content-section ul.styled-list li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
}

/* Two-col layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.two-col--center { align-items: center; }

.inline-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow);
}
.inline-photo--mb { margin-bottom: 22px; }
.inline-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service features list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.feature-item {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent);
}
.feature-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.feature-item p { font-size: 0.81rem; color: var(--text-mid); line-height: 1.55; margin: 0; }

/* Process numbered list */
.process-list { display: flex; flex-direction: column; gap: 20px; }
.process-list__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.process-list__num {
  width: 38px; height: 38px;
  min-width: 38px;
  background: var(--accent);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.process-list__text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.process-list__text p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ── Vertical Process Timeline ──────────────────────────────────────── */
.prc-timeline {
  position: relative;
  max-width: 800px;
  margin: 56px auto 0;
}
/* Full-height spine track — centred on 64px node (left: 31px) */
.prc-timeline::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
  z-index: 0;
}
/* Brand-colour fill — grows via JS */
.prc-timeline__fill {
  position: absolute;
  left: 31px;
  top: 32px;
  width: 2px;
  height: 0;
  background: var(--accent);
  border-radius: 2px;
  z-index: 2;
  transition: none; /* scroll-driven — no CSS transition, updated every rAF */
  pointer-events: none;
}
/* Each step row */
.prc-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  padding-bottom: 44px;
  position: relative;
}
.prc-timeline__item:last-child { padding-bottom: 0; }
/* Number circle — 64px */
.prc-timeline__node {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-light);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  margin-top: 4px;
  transition:
    background  0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.38s ease,
    color        0.32s ease,
    box-shadow   0.48s ease;
}
.prc-timeline__item.is-active .prc-timeline__node {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(157,187,53,0.18), 0 6px 24px rgba(157,187,53,0.25);
}
/* Step card */
.prc-timeline--js .prc-timeline__card {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity   0.5s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-left-color 0.4s ease,
    box-shadow 0.4s ease;
}
.prc-timeline--js .prc-timeline__item.is-active .prc-timeline__card {
  opacity: 1;
  transform: translateY(0);
}
/* Home page: show all steps immediately — no scroll-triggered fade */
body.home .prc-timeline--js .prc-timeline__card {
  opacity: 1;
  transform: translateY(0);
}
/* Home page Our Process: visible nodes + cards since no scroll activation */
body.home .section--dark .prc-timeline__node {
  background: rgba(157,187,53,0.18);
  border-color: rgba(157,187,53,0.55);
  color: rgba(247,244,239,0.95);
}
body.home .section--dark .prc-timeline__card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  border-left-color: rgba(157,187,53,0.55);
}
body.home .section--dark .prc-timeline__card-step { color: rgba(157,187,53,0.85); }
body.home .section--dark .prc-timeline__card h3   { color: rgba(247,244,239,0.97); }
body.home .section--dark .prc-timeline__card p    { color: rgba(247,244,239,0.72); }
body.home .section--dark .prc-timeline__card-list li { color: rgba(247,244,239,0.62); }
body.home .section--dark .prc-timeline__card-list li::before { background: rgba(157,187,53,0.6); }
.prc-timeline__card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: 14px;
  padding: 36px 42px;
  box-shadow: 0 2px 16px rgba(12,16,18,0.05);
  transition: border-left-color 0.4s ease, box-shadow 0.4s ease;
}
.prc-timeline__item.is-active .prc-timeline__card {
  border-left-color: var(--accent);
  box-shadow: 0 6px 32px rgba(12,16,18,0.1);
}
/* Step label e.g. "Step 01" */
.prc-timeline__card-step {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-light);
  margin-bottom: 12px;
  transition: color 0.38s ease;
}
.prc-timeline__item.is-active .prc-timeline__card-step { color: var(--accent); }
.prc-timeline__card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 12px;
  line-height: 1.22;
  letter-spacing: -0.01em;
}
.prc-timeline__card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin: 0;
}
/* Bullet list of supporting detail */
.prc-timeline__card-list {
  list-style: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.prc-timeline__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.45;
}
.prc-timeline__card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 5px;
  transition: background 0.35s ease;
}
.prc-timeline__item.is-active .prc-timeline__card-list li::before { background: var(--accent); }
/* Dark section */
.section--dark .prc-timeline::before { background: rgba(255,255,255,0.1); }
.section--dark .prc-timeline__node {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
}
.section--dark .prc-timeline__item.is-active .prc-timeline__node {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(157,187,53,0.15), 0 0 0 10px rgba(13,17,18,0.85);
}
.section--dark .prc-timeline__card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  border-left-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.section--dark .prc-timeline__item.is-active .prc-timeline__card {
  border-left-color: var(--accent);
  box-shadow: 0 6px 40px rgba(0,0,0,0.3);
}
.section--dark .prc-timeline__card-step { color: rgba(255,255,255,0.3); }
.section--dark .prc-timeline__item.is-active .prc-timeline__card-step { color: var(--accent); }
.section--dark .prc-timeline__card h3 { color: rgba(247,244,239,0.97); }
.section--dark .prc-timeline__card p  { color: rgba(247,244,239,0.58); }
.section--dark .prc-timeline__card-list { border-top-color: rgba(255,255,255,0.09); }
.section--dark .prc-timeline__card-list li { color: rgba(247,244,239,0.45); }
.section--dark .prc-timeline__card-list li::before { background: rgba(255,255,255,0.2); }
.section--dark .prc-timeline__item.is-active .prc-timeline__card-list li::before { background: var(--accent); }
/* Light / white section */
.section--light .prc-timeline__node,
.section--white .prc-timeline__node { background: var(--white); }
.section--light .prc-timeline__card,
.section--white .prc-timeline__card { background: var(--white); }
/* Tablet */
@media (max-width: 860px) {
  .prc-timeline { margin-top: 40px; }
  .prc-timeline__item { gap: 32px; padding-bottom: 36px; }
  .prc-timeline__card { padding: 30px 34px; }
  .prc-timeline__card h3 { font-size: 1.08rem; }
}
/* Mobile */
@media (max-width: 600px) {
  .prc-timeline { margin-top: 24px; }
  .prc-timeline__node { flex: 0 0 52px; width: 52px; height: 52px; font-size: 0.8rem; margin-top: 2px; }
  .prc-timeline::before, .prc-timeline__fill { left: 25px; top: 26px; }
  .prc-timeline::before { bottom: 26px; }
  .prc-timeline__item { gap: 22px; padding-bottom: 28px; }
  .prc-timeline__card { padding: 24px 22px; border-radius: 10px; }
  .prc-timeline__card-step { font-size: 0.65rem; margin-bottom: 9px; }
  .prc-timeline__card h3 { font-size: 1rem; margin-bottom: 9px; }
  .prc-timeline__card p  { font-size: 0.85rem; }
  .prc-timeline__card-list { margin-top: 16px; padding-top: 14px; gap: 7px; }
  .prc-timeline__card-list li { font-size: 0.81rem; }
}

/* Services tags grid */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}
.tag--dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

/* Internal plastering page */
.internal-hero {
  position: relative;
  min-height: clamp(620px, 72vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.internal-hero__media,
.internal-hero__overlay {
  position: absolute;
  inset: 0;
}
.internal-hero__media { z-index: 0; }
.internal-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  filter: saturate(0.9) contrast(1.05);
}
.internal-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,10,11,0.96) 0%, rgba(16,19,21,0.88) 48%, rgba(16,19,21,0.42) 100%),
    linear-gradient(180deg, rgba(8,10,11,0.15) 0%, rgba(8,10,11,0.52) 100%);
}
.internal-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: end;
  width: 100%;
  padding: clamp(70px, 7vw, 112px) 0;
}
.internal-hero__copy {
  max-width: 790px;
  text-align: center;
}
.internal-hero__copy .hero__actions { justify-content: center; }
.internal-hero__copy .hero__trust   { justify-content: center; }
.internal-hero__copy .page-hero__breadcrumb {
  justify-content: center;
  margin-bottom: 22px;
}
.internal-hero__copy h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}
.internal-hero__lead {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.75;
}
.internal-hero__panel {
  padding: 30px;
  background: rgba(16,19,21,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.internal-hero__panel-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.internal-hero__panel h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.25;
}
.internal-hero__panel p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
  line-height: 1.65;
}
.internal-hero__metrics {
  display: grid;
  gap: 12px;
}
.internal-hero__metrics div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.internal-hero__metrics strong {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.internal-hero__metrics span {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  line-height: 1.35;
}
.internal-trust-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.internal-audience .section-header p,
.internal-tabs-section .section-header p {
  margin-left: auto;
  margin-right: auto;
}
.internal-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.internal-audience-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.internal-audience-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}
.internal-audience-card__label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.internal-audience-card h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1.22rem;
  line-height: 1.28;
  font-weight: 800;
}
.internal-audience-card p {
  margin-bottom: 20px;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
}
.internal-audience-card ul {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}
.internal-audience-card li,
.internal-tabs__detail li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.5;
}
.internal-audience-card li svg,
.internal-tabs__detail li svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--accent);
}
.internal-standard__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.internal-standard h2 {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.16;
}
.internal-standard p {
  max-width: 620px;
  color: rgba(255,255,255,0.68);
  font-size: 0.98rem;
  line-height: 1.75;
}
.internal-standard__checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.internal-standard__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 78px;
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}
.internal-standard__check svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}
.internal-tabs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.internal-tabs-section {
  scroll-margin-top: 90px;
}
.internal-tabs__nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.internal-tabs__tab {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.internal-tabs__tab:hover,
.internal-tabs__tab:focus-visible {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.internal-tabs__tab.is-active {
  color: var(--charcoal);
  background: var(--accent);
}
.internal-tabs__panel {
  padding: clamp(26px, 4vw, 44px);
}
.internal-tabs__content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}
.internal-tabs__kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.internal-tabs__content h3 {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.2;
  font-weight: 800;
}
.internal-tabs__summary {
  margin-bottom: 22px;
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.75;
}
.internal-tabs__best {
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
}
.internal-tabs__best strong {
  display: block;
  margin-bottom: 5px;
  color: var(--charcoal);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.internal-tabs__best span {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.55;
}
.internal-tabs__detail {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.internal-tabs__detail h4 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.internal-tabs__detail ul {
  display: grid;
  gap: 11px;
  margin-bottom: 20px;
}
.internal-tabs__detail p {
  margin-bottom: 22px;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.68;
}
.internal-package__visual {
  padding: 26px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.internal-package__note {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.internal-package__note strong {
  color: var(--charcoal);
  font-size: 0.88rem;
}
.internal-package__note span {
  color: var(--text-mid);
  font-size: 0.86rem;
  line-height: 1.58;
}
.internal-process.process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.cta-banner--internal {
  background:
    linear-gradient(90deg, rgba(8,10,11,0.94), rgba(16,19,21,0.82)),
    url("../../../../uploads/lmj-site-media/lmj-service-internal-plastering.png") center / cover;
}

/* ── Projects Archive ──────────────────────────────────────────────── */
.proj-archive-section { padding-top: 56px; }
.proj-archive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.proj-archive-head h2 { font-size: 1.5rem; margin: 0; }
.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.archive-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.18s ease;
  outline: none;
}
.archive-filter:hover {
  border-color: var(--accent);
  color: var(--charcoal);
}
.archive-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--charcoal);
}
.af-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.1);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}
.archive-filter.is-active .af-count { background: rgba(0,0,0,0.15); }

/* Archive-specific grid — fixed 3 columns */
.projects-grid--archive {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  .projects-grid--archive { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .projects-grid--archive { grid-template-columns: 1fr; }
}
/* Featured first card — spans 2 columns */
@media (min-width: 640px) {
  .projects-grid--archive .project-card.is-featured { grid-column: span 2; }
  .projects-grid--archive .project-card.is-featured .project-card__image { aspect-ratio: 16 / 10; }
}

/* Gradient overlay on all card images for tag readability */
.project-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.52) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.project-card__tags { z-index: 2; }

/* Demo notice banner */
.proj-demo-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(157,187,53,0.07);
  border: 1px dashed rgba(157,187,53,0.35);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.proj-demo-notice svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.proj-demo-notice p { margin: 0; }

/* Card filter fade */
.project-card { transition: all var(--transition), opacity 0.22s ease; }
.project-card.pf-hidden { opacity: 0; pointer-events: none; }

/* ── Single Project ────────────────────────────────────────────────── */
.project-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.project-meta-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
  border: 1px solid var(--border);
}
.project-meta-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.project-meta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.project-meta-item { }
.project-meta-item dt {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.project-meta-item dd { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.project-gallery { margin-top: 36px; }
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.project-gallery-grid img {
  border-radius: var(--radius);
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover;
}
.project-hero-fallback {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* ── Forms ─────────────────────────────────────────────────────────── */
.enquiry-form { }
.form-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
}
.form-group label .required { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555e6a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(157,187,53,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .hint {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}
/* File upload */
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
}
.file-upload-area:hover { border-color: var(--accent); background: rgba(157,187,53,0.04); }
.file-upload-area input[type="file"] { display: none; }
.file-upload-area label {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer;
  font-weight: 400;
}
.file-upload-area svg { width: 28px; height: 28px; color: var(--accent); }
.file-upload-area .upload-title { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }
.file-upload-area .upload-hint { font-size: 0.76rem; color: var(--text-light); }
.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.file-list-item {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text);
}

/* Consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-consent a { color: var(--accent); }

/* Honeypot */
.prc-hp { display: none !important; visibility: hidden; }

/* Form messages */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  margin-bottom: 24px;
}
.form-message.is-success {
  background: rgba(157,187,53,0.11);
  border: 1px solid rgba(157,187,53,0.28);
  color: var(--brand-green-deep);
  display: block;
}
.form-message.is-error {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  color: var(--error);
  display: block;
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; }

.quote-lead-shell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 120px;
  border-top: 4px solid var(--accent);
}
.quote-lead-shell__head { margin-bottom: 10px; }
.quote-lead-shell__head .section-label { margin-bottom: 10px; }
.quote-lead-shell__head h2 { font-size: 1.14rem; line-height: 1.16; color: var(--charcoal); margin-bottom: 4px; }
.quote-lead-shell__head p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.45; margin-bottom: 0; }
.quote-lead-shell__message { margin-bottom: 10px; }
.quote-lead-form,
.quote-lead-followup__form { display: flex; flex-direction: column; gap: 12px; }
.quote-lead-progress { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 8px 10px; }
.quote-lead-progress__top { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.quote-lead-progress__label { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); }
.quote-lead-progress__note { font-size: 0.75rem; color: var(--text-light); }
.quote-lead-progress__bar { height: 6px; background: rgba(16,19,21,0.08); border-radius: 999px; overflow: hidden; }
.quote-lead-progress__bar span { display: block; height: 100%; width: 33.333%; background: var(--accent); border-radius: inherit; transition: width var(--transition); }
.quote-lead-step { display: none; border: 0; padding: 0; margin: 0; }
.quote-lead-step.is-active { display: block; }
.quote-lead-step[hidden] { display: none !important; }
.quote-lead-step[disabled] { opacity: 1; }
.quote-lead-step__heading { margin-bottom: 8px; }
.quote-lead-step__heading h3 { font-size: 0.96rem; line-height: 1.2; color: var(--charcoal); margin-bottom: 0; }
.quote-lead-step__heading p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.4; margin: 0; }
.quote-lead-grid { display: grid; gap: 8px; }
.quote-lead-grid--intent,
.quote-lead-grid--options,
.quote-lead-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.quote-choice,
.quote-pill { position: relative; cursor: pointer; }
.quote-choice input,
.quote-pill input { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.quote-choice__inner { display: flex; flex-direction: column; gap: 5px; min-height: 112px; padding: 12px; border: 1.5px solid var(--border); border-radius: 10px; background: var(--white); transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition); }
.quote-choice__icon { width: 38px; height: 38px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--accent); background: rgba(157,187,53,0.08); }
.quote-choice__icon svg { width: 20px; height: 20px; }
.quote-choice__label { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); }
.quote-choice__copy { font-size: 0.78rem; color: var(--text-mid); line-height: 1.45; }
.quote-choice.is-selected .quote-choice__inner,
.quote-choice:focus-within .quote-choice__inner { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(157,187,53,0.12); background: rgba(157,187,53,0.05); transform: translateY(-1px); }
.quote-pill { display: inline-flex; }
.quote-pill span { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 11px; border: 1.5px solid var(--border); border-radius: 999px; background: var(--white); color: var(--charcoal); font-size: 0.8rem; font-weight: 600; transition: border-color var(--transition), box-shadow var(--transition), background var(--transition); }
.quote-pill.is-selected span,
.quote-pill:focus-within span { border-color: var(--accent); background: rgba(157,187,53,0.08); box-shadow: 0 0 0 3px rgba(157,187,53,0.12); }
.quote-lead-pill-group { display: flex; flex-wrap: wrap; gap: 10px; }
.quote-lead-pill-group--grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
.quote-lead-pill-group--grid .quote-pill { width: 100%; }
.quote-lead-pill-group--grid .quote-pill span { width: 100%; }
.quote-lead-note { font-size: 0.72rem; font-weight: 500; color: var(--text-light); }
.quote-lead-nav { display: flex; gap: 10px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.quote-lead-nav .btn { min-width: 132px; justify-content: center; }
.quote-lead-nav__submit { margin-left: auto; }
/* .btn's display:inline-flex overrides the browser's [hidden] — force it back */
.quote-lead-nav .btn[hidden] { display: none !important; }
.quote-lead-form[hidden] { display: none !important; }
.quote-lead-success { display: flex; flex-direction: column; gap: 16px; scroll-margin-top: 120px; }
.quote-lead-success[hidden],
.quote-lead-followup[hidden] { display: none !important; }
.quote-lead-success__panel { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.quote-lead-success__panel h3 { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 6px; }
.quote-lead-success__panel p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 6px; }
.quote-lead-success__fast { font-weight: 600; color: var(--charcoal); }
.quote-lead-success__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.quote-lead-followup { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px; scroll-margin-top: 120px; }
.quote-lead-followup .form-group input,
.quote-lead-followup .form-group textarea,
.quote-lead-followup .form-group select { background: var(--off-white); }
.quote-lead-followup .hint { font-size: 0.74rem; color: var(--text-light); }
.quote-lead-nav--followup { margin-top: 6px; }
.quote-lead-step.is-complete .quote-lead-step__heading h3::after { content: ' \\2713'; color: var(--accent); }

/* ── About Page ────────────────────────────────────────────────────── */
.about-intro { display: grid; grid-template-columns: 2fr 1fr; gap: 52px; align-items: start; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.value-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--accent);
}
.value-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.value-card p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* ── Quote Process ─────────────────────────────────────────────────── */
.quote-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.quote-step:last-child { border-bottom: none; }
.quote-step__num {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
}
.quote-step__text h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.quote-step__text p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── Footer ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { }
.footer__logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}
.footer__logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__logo-mark svg { width: 20px; height: 20px; fill: var(--charcoal); }
.footer__logo-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.footer__tagline {
  font-size: 0.83rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer__contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
.footer__contact-item a { color: inherit; }
.footer__contact-item a:hover { color: var(--accent); }
.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer__bottom-links a:hover { color: var(--accent); }

/* ── WordPress page content ────────────────────────────────────────── */
.entry-content h2, .entry-content h3 { color: var(--charcoal); margin: 24px 0 12px; font-weight: 700; }
.entry-content p { margin-bottom: 16px; line-height: 1.7; color: var(--text-mid); font-size: 0.95rem; }
.entry-content ul { padding-left: 20px; margin-bottom: 16px; }
.entry-content ul li { list-style: disc; font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 6px; }

/* ── 404 ───────────────────────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.not-found h1 { font-size: 5rem; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.not-found h2 { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.not-found p { color: var(--text-mid); font-size: 0.97rem; margin-bottom: 28px; }

/* ── Loading spinner ───────────────────────────────────────────────── */
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(18,20,22,0.3);
  border-top-color: var(--charcoal);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}
.btn--loading .btn-spinner { display: block; }
.btn--loading .btn-label { opacity: 0.6; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Contact Info Box ──────────────────────────────────────────────── */
.contact-info-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.contact-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative;
}
.contact-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,10,11,0.34));
}
.contact-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-info-box h3 { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); margin-bottom: 16px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.contact-info-row:last-child { margin-bottom: 0; }
.contact-info-row svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.contact-info-row__text { font-size: 0.87rem; color: var(--text-mid); line-height: 1.5; }
.contact-info-row__text strong { display: block; color: var(--charcoal); font-weight: 600; margin-bottom: 2px; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { height: calc(100vh - 70px); min-height: 520px; padding: 0; }
  .internal-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .internal-hero__panel {
    max-width: 620px;
  }
  .internal-standard__grid,
  .internal-tabs__content {
    grid-template-columns: 1fr;
  }
  .internal-process.process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .commercial-split { grid-template-columns: 1fr; }
  .commercial-split__visual { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-case-card { grid-template-columns: 1fr; }
  .featured-case-card__image { min-height: 320px; }
  .case-study-grid { grid-template-columns: 1fr 1fr; }
  body.home .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.home .render-systems-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.home .featured-case-card__image { min-height: 320px; }
  .service-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-group__intro {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  body { padding-top: 60px; }
  .site-header__inner { height: 60px; }
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav handled by global styles above — no overrides needed here */

  section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .internal-hero {
    min-height: auto;
  }
  .internal-hero__grid {
    padding: 62px 0 56px;
  }
  .internal-hero__copy h1 {
    font-size: 2.1rem;
  }
  .internal-audience__grid,
  .internal-standard__checks {
    grid-template-columns: 1fr;
  }
  .internal-audience-card,
  .internal-tabs__panel,
  .internal-tabs__detail,
  .internal-package__visual {
    padding: 24px;
  }
  .internal-tabs__tab {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.76rem;
  }
  .internal-tabs__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }
  .internal-tabs__tab {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .internal-tabs__tab:last-child {
    grid-column: 1 / -1;
  }
  .internal-tabs-section {
    scroll-margin-top: 72px;
  }
  .internal-process.process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .project-detail { grid-template-columns: 1fr; }
  .project-meta-card { position: static; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-lead-shell { padding: 20px; }
  .quote-lead-grid--intent,
  .quote-lead-grid--options,
  .quote-lead-grid--two { grid-template-columns: 1fr; }
  .quote-lead-pill-group--grid { grid-template-columns: 1fr; }
  .quote-choice__inner { min-height: auto; }
  .quote-lead-nav { flex-direction: column; align-items: stretch; }
  .quote-lead-nav .btn { width: 100%; }
  .quote-lead-success__actions { flex-direction: column; }
  .quote-lead-success__actions .btn { width: 100%; justify-content: center; }
  .hero { height: auto; min-height: 0; padding: 0; }
  .hero h1 { font-size: 1.8rem; }
  .page-hero { padding: 60px 0 44px; }
  .cta-banner { padding: 52px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-pathway-grid,
  .service-main-choice-grid,
  .service-group__cards,
  .work-type-grid {
    grid-template-columns: 1fr;
  }
  .service-pathway-card,
  .service-main-choice__body,
  .work-type-card {
    padding: 22px;
  }
  .service-group {
    padding-top: 28px;
  }
  .hero__content { padding: 36px 0; }
  .hero-quote-form__grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  body.home .trust-bar + section.section--white {
    padding-top: 56px;
  }
  body.home .audience-card {
    min-height: auto;
  }
  body.home .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.home .render-systems-grid {
    grid-template-columns: 1fr;
  }
  body.home .hero {
    height: auto;
    min-height: auto;
  }
  body.home .hero__content {
    padding: 36px 0;
  }
  body.home .featured-case-card__image {
    min-height: 300px;
  }
  .case-studies-header { align-items: flex-start; }
  .featured-case-card__content { padding: 26px; }
  .featured-case-card__details div { grid-template-columns: 1fr; gap: 5px; }
  .case-study-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
  /* Home page sections — stack at 768px */
  .commercial-split { grid-template-columns: 1fr; gap: 36px; }
  .commercial-split__visual { max-height: 320px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  body.home .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .internal-hero__panel {
    padding: 22px;
  }
  .internal-hero__metrics div {
    grid-template-columns: 36px 1fr;
  }
  .internal-audience-card,
  .internal-tabs__panel,
  .internal-tabs__detail,
  .internal-package__visual {
    padding: 20px;
  }
  .internal-tabs__content {
    gap: 22px;
  }
  .internal-tabs__tab {
    padding: 0 14px;
  }
  .internal-process.process-steps {
    grid-template-columns: 1fr;
  }
  .featured-case-card__image { min-height: 240px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: 6px 10px; }
  .hero__trust-sep { display: none; }
  body.home .trust-bar + section.section--white {
    padding-top: 48px;
  }
  body.home .hero {
    height: auto;
    min-height: auto;
  }
  body.home .hero__content {
    padding: 28px 0;
  }
  body.home .featured-case-card__image {
    min-height: 240px;
  }
  body.home .process-steps {
    grid-template-columns: 1fr;
  }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* ── Visual Polish Additions ───────────────────────────────────────── */

/* Render system cards — left-border texture cue */
.render-system-card { border-left: 3px solid rgba(157,187,53,0.25); }
.render-system-card:nth-child(1) { border-left-color: rgba(157,187,53,0.55); }
.render-system-card:nth-child(2) { border-left-color: rgba(157,187,53,0.45); }
.render-system-card:nth-child(3) { border-left-color: rgba(157,187,53,0.30); }
.render-system-card:nth-child(4) { border-left-color: rgba(79,100,24,0.45); }
.render-system-card:nth-child(5) { border-left-color: rgba(231,224,214,0.55); }
.render-system-card:nth-child(6) { border-left-color: rgba(238,244,222,0.42); }
.render-system-card:hover { border-left-width: 3px; }

/* Testimonial card — dedicated component */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.12;
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.testimonial-card__quote {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author { font-weight: 700; font-size: 0.88rem; color: var(--charcoal); }
.testimonial-card__meta { font-size: 0.77rem; color: var(--text-light); margin-top: 2px; }

/* CTA banner — richer diagonal accent */
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 28px,
    rgba(157,187,53,0.025) 28px,
    rgba(157,187,53,0.025) 29px
  );
  pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 2; }

/* Footer credentials — icon badges */
.footer-cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
}
.footer-cred__icon {
  width: 24px; height: 24px;
  min-width: 24px;
  background: rgba(157,187,53,0.12);
  border: 1px solid rgba(157,187,53,0.2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-cred__icon svg { width: 13px; height: 13px; color: var(--accent); }

/* Section divider accent */
.section-accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Improved process step connector for dark sections */
.section--dark .process-step__number { box-shadow: 0 0 0 4px var(--charcoal), 0 0 0 6px rgba(157,187,53,0.3); }

/* Page hero — brand accent bar above h1 */
.page-hero__content { border-left: 3px solid rgba(157,187,53,0.4); padding-left: 28px; }

/* About page glance card — brand top border upgrade */
.about-intro .section-label { display: inline-block; margin-bottom: 12px; }

/* Value card hover */
.value-card { transition: transform var(--transition), box-shadow var(--transition); }
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Audience card icon upgrade */
.audience-card__icon { color: var(--accent); transition: background var(--transition); }
.audience-card:hover .audience-card__icon { background: rgba(157,187,53,0.12); }

/* Styled list global (pages use it outside .content-section) */
.styled-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.styled-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.55;
}
.styled-list li::before {
  content: '';
  width: 6px; height: 6px; min-width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px; flex-shrink: 0;
}

/* ── Scrollbar ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Focus visible ─────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Render systems showcase (homepage) */
.render-systems-showcase {
  background:
    radial-gradient(circle at 18% 8%, rgba(157,187,53,0.12), transparent 28%),
    linear-gradient(180deg, var(--charcoal) 0%, #080B0D 100%);
}
.render-systems-showcase__header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
}
.render-systems-showcase__header p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
  line-height: 1.65;
}
.render-systems-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.render-systems-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(157,187,53,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.78);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
}
.render-systems-trust__item svg {
  color: #9DBB35;
  flex-shrink: 0;
  width: 13px;
  height: 13px;
}
.render-systems-showcase .render-systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.render-systems-showcase .render-system-card {
  width: auto;
  min-height: 0;
  flex: unset;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(157,187,53,0.55);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.render-systems-showcase .render-system-card:hover {
  background: var(--graphite);
  border-color: rgba(157,187,53,0.38);
  border-top-color: #9DBB35;
  box-shadow: 0 12px 36px rgba(0,0,0,0.26);
  transform: translateY(-2px);
}
.render-systems-showcase .render-system-card__texture {
  height: 132px;
  background-image:
    linear-gradient(180deg, rgba(16,19,21,0.05), rgba(16,19,21,0.42)),
    url("../../../../uploads/lmj-site-media/lmj-render-textures.png");
  background-size: cover, 300% 200%;
  background-repeat: no-repeat;
  border-bottom: 1px solid rgba(157,187,53,0.16);
}
.render-systems-showcase .render-system-card__texture--1 { background-position: center, 0% 0%; }
.render-systems-showcase .render-system-card__texture--2 { background-position: center, 50% 0%; }
.render-systems-showcase .render-system-card__texture--3 { background-position: center, 100% 0%; }
.render-systems-showcase .render-system-card__texture--4 { background-position: center, 0% 100%; }
.render-systems-showcase .render-system-card__texture--5 { background-position: center, 50% 100%; }
.render-systems-showcase .render-system-card__texture--6 { background-position: center, 100% 100%; }
.render-systems-showcase .render-system-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.render-systems-showcase .render-system-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0 0 6px;
}
.render-systems-showcase .render-system-card__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin: 0 0 10px;
}
.render-systems-showcase .render-system-card__line {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.45;
  margin: 0 0 5px;
}
.render-systems-showcase .render-system-card__line span {
  color: #9DBB35;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.render-systems-showcase .render-system-card__link {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #9DBB35;
  font-size: 0.76rem;
  font-weight: 700;
}
.render-systems-showcase .render-system-card__link svg {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}
.render-systems-showcase .render-system-card__link:hover svg,
.render-systems-showcase .render-system-card__link:focus-visible svg {
  transform: translateX(3px);
}
/* ── Render Systems Tabbed Guide ──────────────────────────────────── */
.rmt-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(157,187,53,0.2);
}
.rmt-header {
  max-width: 720px;
  margin-bottom: 24px;
}
.rmt-header h3 {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.rmt-header p {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}
.rmt-tabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rmt-tabs::-webkit-scrollbar { display: none; }
.rmt-tab {
  flex-shrink: 0;
  padding: 11px 18px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: rgba(255,255,255,0.48);
  font-family: var(--font);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  transition: color var(--transition), border-color var(--transition);
}
.rmt-tab:hover {
  color: rgba(255,255,255,0.8);
}
.rmt-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.rmt-panels {
  padding-top: 26px;
}
.rmt-panel {
  display: none;
  animation: rmt-fade 0.22s ease;
}
.rmt-panel.is-active {
  display: block;
}
@keyframes rmt-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rmt-panel__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.rmt-panel__heading {
  color: var(--white);
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.rmt-panel__intro {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 560px;
}
.rmt-panel__label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.rmt-panel__best-for {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(157,187,53,0.06);
  border: 1px solid rgba(157,187,53,0.16);
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.rmt-panel__best-for .rmt-panel__label {
  display: inline;
  margin-bottom: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.rmt-panel__benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rmt-panel__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.rmt-panel__benefits li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.rmt-panel__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rmt-specs {
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid rgba(157,187,53,0.55);
  border-radius: var(--radius-lg);
}
.rmt-specs__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
}
.rmt-specs__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rmt-specs__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.rmt-specs__row dt {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  white-space: nowrap;
}
.rmt-specs__row dd {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.88);
  text-align: right;
  line-height: 1.4;
  margin: 0;
}
.rmt-panel__cta {
  align-self: flex-start;
}
.modern-render-systems-panel__disclaimer {
  color: rgba(255,255,255,0.42);
  font-size: 0.73rem;
  line-height: 1.5;
  margin-top: 20px;
}
.render-systems-cta {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(157,187,53,0.2);
  border-radius: var(--radius-lg);
}
.render-systems-cta h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
}
.render-systems-cta p {
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}
.render-systems-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .render-systems-showcase .render-systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .rmt-panel__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .rmt-panel__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .rmt-panel__cta {
    grid-column: 1 / -1;
    align-self: auto;
  }
  .render-systems-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .render-systems-showcase .render-systems-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .render-systems-trust {
    justify-content: flex-start;
    margin: 16px 0 22px;
  }
  .render-systems-showcase .render-system-card__texture {
    height: 120px;
  }
  .render-systems-showcase .render-system-card__body {
    padding: 14px 16px 16px;
  }
  .rmt-tab {
    padding: 10px 13px;
    font-size: 0.79rem;
  }
  .rmt-panel__aside {
    grid-template-columns: 1fr;
  }
  .rmt-panel__cta {
    grid-column: auto;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .render-systems-cta {
    padding: 18px;
  }
  .render-systems-cta__actions,
  .render-systems-cta__actions .btn {
    width: 100%;
  }
  .render-systems-cta__actions .btn {
    justify-content: center;
  }
}

/* ── Internal Plastering Page – Additions ─────────────────────────────────── */

/* ── Utility ─── */
.btn--full { width: 100%; justify-content: center; }

/* ── Hero form (panel on dark background) ─── */
.internal-hero__panel-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  line-height: 1.55;
}
.hero-form .form-group { gap: 5px; margin-bottom: 0; }
.hero-form .form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.hero-form .form-group input,
.hero-form .form-group textarea {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  font-size: 0.84rem;
  padding: 10px 12px;
  border-radius: var(--radius);
  width: 100%;
}
.hero-form .form-group textarea { min-height: 80px; resize: vertical; }
.hero-form__fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.hero-form .btn--full { margin-top: 4px; }
.prc-hp { display: none !important; }

/* ── Audience grid – 3 columns ─── */
.internal-audience__grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Inline CTA strip ─── */
.cta-inline {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inline h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.cta-inline p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* ── Process section CTA ─── */
.process-cta { margin-top: 40px; }

/* ── FAQ accordion ─── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 0 18px;
}
.faq-item__answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── CTA Banner – split layout with form ─── */
.cta-banner__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: none;
  text-align: left;
}
.cta-banner__copy p { margin-bottom: 16px; }
.cta-banner__copy p:last-child { margin-bottom: 0; }
.cta-banner__trust-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}
.cta-banner__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.cta-banner__trust-item svg { flex-shrink: 0; color: var(--accent); }

/* ── CTA Banner form wrap ─── */
.cta-banner__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cta-enquiry-form .form-group { margin-bottom: 0; }
.cta-enquiry-form .form-group label {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
}
.cta-enquiry-form .form-group label .form-group__hint {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-size: 0.76rem;
}
.cta-enquiry-form .form-group input,
.cta-enquiry-form .form-group select,
.cta-enquiry-form .form-group textarea {
  background: rgba(255,255,255,0.94);
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
  font-size: 0.88rem;
}
.cta-enquiry-form .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555e6a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.cta-enquiry-form .form-group .file-upload-area { border-color: rgba(255,255,255,0.18); }
.cta-enquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-banner__form-wrap .form-message { margin-bottom: 14px; }
.cta-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-enquiry-form .btn--full { margin-top: 4px; }

/* ── Enquiry form (generic, re-used) ─── */
.enquiry-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ── Secondary CTA ─── */
.cta-secondary {
  padding: 68px 0;
}
.cta-secondary h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.cta-secondary p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.cta-secondary__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Floating desktop CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Sticky mobile CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  padding: 12px 16px;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ── Responsive ─── */
@media (min-width: 860px) {
  .floating-cta { display: block; }
}
@media (max-width: 859px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 64px; }
  .internal-audience__grid--three {
    grid-template-columns: 1fr;
  }
  .cta-banner__inner--split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cta-enquiry-form__row { grid-template-columns: 1fr; }
}
@media (min-width: 860px) and (max-width: 1100px) {
  .internal-audience__grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Hero type row (pill-style selectors) ─────────────────────────── */
.hero-type-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.hero-type-btn {
  display: block;
  cursor: pointer;
}
.hero-type-btn input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.hero-type-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 6px;
  font-size: 0.74rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  line-height: 1.2;
}
.hero-type-btn:hover span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.hero-type-btn input:checked + span {
  background: rgba(157,187,53,0.2);
  border-color: var(--accent);
  color: var(--accent);
}
.hero-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── LMJ Multi-step form ──────────────────────────────────────────── */
.lmj-form { position: relative; }

/* Progress bar */
.lmj-form__progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.lmj-form__progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  overflow: hidden;
}
.lmj-form__progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  width: 50%;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.lmj-form__progress-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 60px;
  text-align: right;
}

/* Steps */
.lmj-step {
  display: none;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.lmj-step--active { display: block; }
.lmj-step.lmj-step--in  { animation: lmjIn  0.32s cubic-bezier(0.22, 1, 0.36, 1) both; }
.lmj-step.lmj-step--out { animation: lmjOut 0.22s ease forwards; }

@keyframes lmjIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lmjOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* Step header */
.lmj-step__head {
  margin-bottom: 18px;
}
.lmj-step__title {
  display: block;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
  border: 0;
  padding: 0;
}
.lmj-step__sub {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

/* Type cards grid */
.lmj-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  clear: both;
}
.lmj-type-card { display: block; cursor: pointer; }
.lmj-type-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.lmj-type-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 16px 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.lmj-type-card:hover .lmj-type-card__body {
  border-color: #b5c87a;
  background: #fafefa;
}
.lmj-type-card input:checked + .lmj-type-card__body {
  border-color: var(--accent);
  background: var(--brand-green-soft);
  box-shadow: 0 0 0 3px rgba(157,187,53,0.12);
}
.lmj-type-card input:focus-visible + .lmj-type-card__body {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lmj-type-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--soft-grey);
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.lmj-type-card__icon svg { width: 18px; height: 18px; }
.lmj-type-card input:checked + .lmj-type-card__body .lmj-type-card__icon {
  background: rgba(157,187,53,0.18);
  color: var(--brand-green-deep);
}
.lmj-type-card__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.lmj-type-card__sub {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.3;
}
.lmj-type-error {
  font-size: 0.8rem;
  color: var(--error);
  min-height: 18px;
  margin-top: -10px;
  margin-bottom: 10px;
}

/* Form fields inside steps */
.lmj-form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.lmj-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lmj-form__fields .form-group { margin: 0; }

/* Continue button */
.lmj-next-btn {
  gap: 8px;
}
.lmj-next-btn svg { flex-shrink: 0; }

/* Back button */
.lmj-form__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: color var(--transition);
}
.lmj-form__back:hover { color: var(--charcoal); }

/* Optional label hint */
.form-group__opt {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.76rem;
}

/* ── CTA form wrap overrides for lmj-form context ─── */
.cta-banner__form-wrap .lmj-step__title { color: var(--white); }
.cta-banner__form-wrap .lmj-step__sub   { color: rgba(255,255,255,0.6); }
.cta-banner__form-wrap .lmj-type-card__body {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}
.cta-banner__form-wrap .lmj-type-card:hover .lmj-type-card__body {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}
.cta-banner__form-wrap .lmj-type-card input:checked + .lmj-type-card__body {
  border-color: var(--accent);
  background: rgba(157,187,53,0.18);
  box-shadow: 0 0 0 3px rgba(157,187,53,0.2);
}
.cta-banner__form-wrap .lmj-type-card__icon {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.cta-banner__form-wrap .lmj-type-card input:checked + .lmj-type-card__body .lmj-type-card__icon {
  background: rgba(157,187,53,0.28);
  color: var(--accent);
}
.cta-banner__form-wrap .lmj-type-card__label { color: rgba(255,255,255,0.9); }
.cta-banner__form-wrap .lmj-type-card__sub   { color: rgba(255,255,255,0.45); }
.cta-banner__form-wrap .lmj-type-error { color: #f8827a; }
.cta-banner__form-wrap .form-group label {
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 600;
}
.cta-banner__form-wrap .form-group input,
.cta-banner__form-wrap .form-group select,
.cta-banner__form-wrap .form-group textarea {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.16);
  color: var(--text);
  font-size: 0.88rem;
}
.cta-banner__form-wrap .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555e6a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.cta-banner__form-wrap .form-group__opt { color: rgba(255,255,255,0.4); }
.cta-banner__form-wrap .lmj-form__back {
  color: rgba(255,255,255,0.5);
}
.cta-banner__form-wrap .lmj-form__back:hover {
  color: rgba(255,255,255,0.85);
}
.cta-banner__form-wrap .file-upload-area {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
}

/* ── Responsive: multi-step form ──────────────────────────────────── */
@media (max-width: 520px) {
  .lmj-form__row { grid-template-columns: 1fr; }
  .hero-form__row { grid-template-columns: 1fr; }
  .hero-type-row  { grid-template-columns: repeat(2, 1fr); }
}

/* ── Quote-lead: step animations ─────────────────────────────────────────── */
@keyframes qlIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes qlOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}
@keyframes qlShake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}
.quote-lead-step.ql-step--in  { animation: qlIn  0.38s cubic-bezier(0.22, 1, 0.36, 1) both; }
.quote-lead-step.ql-step--out { animation: qlOut 0.22s ease forwards; }
.ql-shake { animation: qlShake 0.4s ease; }

/* Steps wrapper — positioned container so height can animate cleanly */
.ql-steps-wrapper {
  position: relative;
  overflow: visible;
}

/* Form fade-out before success screen */
@keyframes qlFormFade {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-6px) scale(0.99); }
}
.quote-lead-form.ql-form--exit {
  animation: qlFormFade 0.26s ease forwards;
  pointer-events: none;
}

/* Success panel entrance */
@keyframes qlSuccessReveal {
  from { opacity: 0; transform: translateY(18px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quote-lead-success.ql-success--reveal {
  animation: qlSuccessReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Hide Continue on step 1 — card click is the action */
[data-active-step="1"] .quote-lead-nav__next {
  visibility: hidden;
  pointer-events: none;
}

/* ── Step 1: card hover / selection feel ─────────────────────────────────── */
.quote-choice__inner {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.quote-choice:not(.is-selected):hover .quote-choice__inner {
  border-color: rgba(157,187,53,0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(157,187,53,0.09);
}
.quote-choice.is-selected .quote-choice__inner {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(157,187,53,0.16), 0 0 0 3px rgba(157,187,53,0.12);
}

/* ── Step 2: postcode field prominence ───────────────────────────────────── */
.quote-lead-step[data-step="2"] .form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
}
.quote-lead-step[data-step="2"] input[name="prc_postcode"] {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 13px 14px;
}

/* ── Step 2: urgency pills — larger, card-like ───────────────────────────── */
.quote-lead-step[data-step="2"] .quote-lead-pill-group--grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.quote-lead-step[data-step="2"] .quote-pill { display: flex; }
.quote-lead-step[data-step="2"] .quote-pill span {
  flex: 1;
  min-height: 60px;
  border-radius: 12px;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 6px;
  text-align: center;
  line-height: 1.3;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.quote-lead-step[data-step="2"] .quote-pill:not(.is-selected):hover span {
  border-color: rgba(157,187,53,0.45);
  transform: translateY(-1px);
  background: rgba(157,187,53,0.03);
}
.quote-lead-step[data-step="2"] .quote-pill.is-selected span {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(157,187,53,0.14), 0 0 0 3px rgba(157,187,53,0.12);
}

/* ── Step 3: contact method pills — full row ─────────────────────────────── */
.quote-lead-step[data-step="3"] .quote-lead-pill-group--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.quote-lead-step[data-step="3"] .quote-lead-pill-group--grid .quote-pill { display: flex; }
.quote-lead-step[data-step="3"] .quote-lead-pill-group--grid .quote-pill span {
  flex: 1;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  justify-content: center;
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.quote-lead-step[data-step="3"] .quote-lead-pill-group--grid .quote-pill.is-selected span {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(157,187,53,0.12), 0 0 0 3px rgba(157,187,53,0.12);
}
.quote-lead-step[data-step="3"] textarea[name="prc_message"] {
  min-height: 88px;
  resize: vertical;
}

/* ── Progress bar smooth fill ────────────────────────────────────────────── */
.quote-lead-progress__bar span {
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Responsive: quote form narrow ───────────────────────────────────────── */
@media (max-width: 640px) {
  .quote-lead-step[data-step="2"] .quote-lead-pill-group--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .quote-lead-step[data-step="3"] .quote-lead-pill-group--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Quote-lead: form shell upgrade ──────────────────────────────────────── */
.quote-lead-shell {
  background: var(--white);
  border-top-width: 3px;
  padding: 28px 24px 24px;
}
.quote-lead-shell__head { margin-bottom: 14px; }
.quote-lead-shell__head h2 {
  font-size: 1.32rem;
  line-height: 1.15;
  margin-bottom: 5px;
}
.quote-lead-shell__head p { font-size: 0.85rem; }
.quote-lead-form { gap: 16px; }

/* ── Quote-lead: step headings ────────────────────────────────────────────── */
.quote-lead-step__heading { margin-bottom: 14px; }
.quote-lead-step__heading h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.quote-lead-step__heading p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 0;
}

/* ── Quote-lead: step 1 cards — centred, bigger ──────────────────────────── */
.quote-choice__inner {
  align-items: center;
  text-align: center;
  min-height: 126px;
  padding: 16px 10px;
  gap: 8px;
}
.quote-choice__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  flex-shrink: 0;
}
.quote-choice__icon svg { width: 22px; height: 22px; }
.quote-choice__label { font-size: 0.9rem; line-height: 1.25; }
.quote-choice__copy { font-size: 0.74rem; line-height: 1.4; }

/* ── Quote-lead: progress dots ────────────────────────────────────────────── */
.quote-lead-progress {
  background: transparent;
  border: 0;
  padding: 0 0 2px;
}
.quote-lead-progress__top { margin-bottom: 0; }
.quote-lead-progress.has-dots .quote-lead-progress__bar { display: none; }
.ql-step-dots {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 0;
  margin-bottom: 4px;
}
.ql-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  width: 68px;
}
.ql-step-dot__line {
  flex: 1;
  height: 2px;
  background: var(--border);
  align-self: flex-start;
  margin-top: 15px;
  border-radius: 2px;
  transition: background 0.4s ease;
}
.ql-step-dot__line.is-done { background: var(--accent); }
.ql-step-dot__circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ql-dot-num {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-light);
  transition: opacity 0.2s ease;
  line-height: 1;
}
.ql-dot-check {
  width: 13px;
  height: 13px;
  position: absolute;
  opacity: 0;
  color: var(--white);
  transition: opacity 0.2s ease;
  stroke-width: 2.5;
}
.ql-step-dot__label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
  line-height: 1.3;
}
.ql-step-dot.is-active .ql-step-dot__circle {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(157,187,53,0.14);
}
.ql-step-dot.is-active .ql-dot-num { color: var(--white); }
.ql-step-dot.is-active .ql-step-dot__label { color: var(--charcoal); font-weight: 700; }
.ql-step-dot.is-done .ql-step-dot__circle {
  border-color: var(--accent);
  background: var(--accent);
}
.ql-step-dot.is-done .ql-dot-num { opacity: 0; }
.ql-step-dot.is-done .ql-dot-check { opacity: 1; }
.ql-step-dot.is-done .ql-step-dot__label { color: var(--accent); }

/* ── Quote-lead: nav buttons ──────────────────────────────────────────────── */
.quote-lead-nav__submit { width: 100%; margin-left: 0; justify-content: center; padding: 14px; font-size: 1rem; }
.quote-lead-nav { flex-wrap: nowrap; }
.btn--ghost {
  background: transparent;
  border: 0;
  color: var(--text-mid);
  font-size: 0.84rem;
  padding: 8px 4px;
  min-width: 0;
}
.btn--ghost:hover { color: var(--charcoal); }

/* ── Responsive: narrow dots ──────────────────────────────────────────────── */
@media (max-width: 420px) {
  .ql-step-dot { width: 56px; }
  .ql-step-dot__label { font-size: 0.6rem; }
}

/* ── Step 3: message + upload side-by-side fill ──────────────────────────── */
.ql-fill-group { display: flex; flex-direction: column; }
.ql-fill-group textarea,
.ql-fill-group .file-upload-area { flex: 1; min-height: 120px; }
.ql-fill-group .file-upload-area { padding: 16px 12px; }
.ql-fill-group .file-upload-area svg { width: 22px; height: 22px; }
.ql-fill-group .file-upload-area .upload-title { font-size: 0.82rem; }
.ql-fill-group .file-upload-area .upload-hint  { font-size: 0.72rem; }
@media (max-width: 640px) {
  .ql-fill-group .file-upload-area { min-height: 80px; padding: 14px; }
}

/* ── Google Places autocomplete dropdown ─────────────────────────────────── */
.pac-container {
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(16,19,21,0.12);
  margin-top: 4px;
  overflow: hidden;
}
.pac-item {
  padding: 9px 14px;
  font-size: 0.84rem;
  color: var(--charcoal);
  border-top: 1px solid var(--border);
  cursor: pointer;
  line-height: 1.4;
  transition: background 0.15s;
}
.pac-item:first-child { border-top: 0; }
.pac-item:hover,
.pac-item.pac-item-selected { background: rgba(157,187,53,0.06); }
.pac-item-query { font-size: 0.84rem; color: var(--charcoal); }
.pac-matched { color: var(--accent); font-weight: 700; }
.pac-icon { display: none; }
.pac-logo::after { display: none; }

/* ── Address filled confirmation flash ───────────────────────────────────── */
.ql-filled {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(157,187,53,0.18) !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}

/* ── Floating CTA visibility script hook ─── */

/* ── Rendering page — corporate / premium components ────────────────────────── */

/* Hero credentials strip */
.page-hero__creds {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-top: 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.page-hero__creds span[aria-hidden] { color: rgba(255,255,255,0.25); }

/* Stats strip */
.rnd-stats { border-bottom: 1px solid var(--border); }
.rnd-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rnd-stat {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.rnd-stat:last-child { border-right: 0; }
.rnd-stat__num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 7px;
}
.rnd-stat__title {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.rnd-stat__sub {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
}
@media (max-width: 700px) {
  .rnd-stats__grid { grid-template-columns: 1fr 1fr; }
  .rnd-stat:nth-child(2) { border-right: 0; }
  .rnd-stat:nth-child(3),
  .rnd-stat:nth-child(4) { border-top: 1px solid var(--border); }
}

/* Audience / clients section */
.rnd-clients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rnd-client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.rnd-client-card:hover {
  box-shadow: 0 6px 24px rgba(16,19,21,0.08);
  border-color: rgba(157,187,53,0.3);
}
.rnd-client-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rnd-client-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(157,187,53,0.1);
  border: 1px solid rgba(157,187,53,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.rnd-client-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}
.rnd-client-card > p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.rnd-client-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.rnd-client-card__list li {
  font-size: 0.8rem;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.rnd-client-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.rnd-client-card .btn {
  align-self: flex-start;
  margin-top: auto;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .rnd-clients__grid { grid-template-columns: 1fr; }
}

/* Scope grid */
.rnd-scope__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rnd-scope__card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  transition: border-color 0.2s ease;
}
.rnd-scope__card:hover { border-color: rgba(157,187,53,0.35); }
.rnd-scope__num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rnd-scope__card h4 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.rnd-scope__card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 860px) { .rnd-scope__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rnd-scope__grid { grid-template-columns: 1fr; } }

/* Bottom CTA strip */
.rnd-cta-strip {
  background: var(--charcoal);
  padding: 64px 0;
}
.rnd-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.rnd-cta-strip__text h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.rnd-cta-strip__text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  line-height: 1.5;
}
.rnd-cta-strip__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.rnd-cta-strip__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
}
.rnd-cta-strip__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.rnd-cta-strip__trust-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 700px) {
  .rnd-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .rnd-cta-strip__text h2 { font-size: 1.3rem; }
}

/* ── Render Colour Visualiser ──────────────────────────────────────────────── */
.rv-section .section-header { margin-bottom: 24px; }

.rv-visualiser {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 288px;
  /* Explicit height is essential — without it the flex scroll trick can't work */
  height: clamp(320px, 43vw, 400px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(16,19,21,0.14);
  border: 1px solid rgba(0,0,0,0.08);
}

/* ── Preview pane — fills its grid column entirely ── */
.rv-preview {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #111;
}
.rv-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.5s ease; }
.rv-img--a { opacity: 1; z-index: 2; }
.rv-img--b { opacity: 0; z-index: 1; }

/* Colour info pill — bottom-left of preview */
.rv-info-card {
  position: absolute; bottom: 10px; left: 10px;
  z-index: 10;
  background: rgba(8,11,13,0.80);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  padding: 7px 13px 7px 7px;
  display: flex; flex-direction: row; align-items: center; gap: 9px;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.42);
}
/* Brand badge sits inside the pill as a regular flex child (not absolutely positioned) */
.rv-brand-badge {
  position: static;
  background: #fff;
  border-radius: 5px;
  padding: 3px 7px;
  display: flex; align-items: center;
  box-shadow: 0 1px 5px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.rv-brand-badge-logo { height: 12px; width: auto; max-width: 68px; display: block; object-fit: contain; }
.rv-info-swatch {
  width: 30px; height: 30px;
  border-radius: 5px; background: #888; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.26);
  overflow: hidden;
}
.rv-info-text { padding: 0; }
.rv-info-name { font-size: 0.77rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.01em; }
.rv-info-sys  { font-size: 0.56rem; font-weight: 600; color: rgba(255,255,255,0.44); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 2px; }

/* ── Controls pane — flex column that fills its grid cell ── */
.rv-controls {
  background: var(--charcoal);
  padding: 12px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* height: 100% so flex children can correctly share the fixed height */
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.rv-filter-bar {
  display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
  flex-shrink: 0;    /* never shrink — scroll starts below this */
}
.rv-search {
  flex: 1; min-width: 0; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.07);
  color: #fff; padding: 0 12px; font-size: 0.75rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rv-search::placeholder { color: rgba(255,255,255,0.32); }
.rv-search:focus { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(157,187,53,0.18); background: rgba(255,255,255,0.09); }

.rv-brands { display: flex; gap: 5px; flex-shrink: 0; }
.rv-brand-btn {
  height: 32px; padding: 0 8px;
  border-radius: 7px; border: 1.5px solid transparent;
  background: rgba(255,255,255,0.93); cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,0.22);
}
.rv-brand-btn:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 3px 12px rgba(0,0,0,0.28); }
.rv-brand-btn.is-active { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 2px rgba(157,187,53,0.25), 0 2px 10px rgba(0,0,0,0.22); }
.rv-brand-logo { height: 15px; width: auto; max-width: 70px; display: block; object-fit: contain; }

.rv-shuffle-btn {
  height: 32px; padding: 0 10px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.18);
  background: transparent; color: rgba(255,255,255,0.62);
  font-size: 0.71rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 5px; flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.rv-shuffle-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.32); color: #fff; }
.rv-shuffle-btn:active { background: rgba(255,255,255,0.10); }

/* 4-column swatch grid — scrolls vertically within the fixed height */
.rv-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;      /* critical: lets a flex child shrink below its content size so scroll works */
  align-content: start;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.16) transparent;
}
.rv-carousel::-webkit-scrollbar { width: 3px; }
.rv-carousel::-webkit-scrollbar-track { background: transparent; }
.rv-carousel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 2px; }

.rv-colour {
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; cursor: pointer; border: none; background: none;
  padding: 4px 2px; border-radius: 7px; transition: background 0.15s;
}
.rv-colour:hover  { background: rgba(255,255,255,0.07); }
.rv-colour.is-active { background: rgba(157,187,53,0.14); }
.rv-colour.is-active .rv-swatch { box-shadow: 0 0 0 2px var(--accent); }

.rv-swatch {
  width: 100%; aspect-ratio: 1;
  border-radius: 5px; background: #888; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.09);
  transition: box-shadow 0.18s;
  object-fit: cover;
}
.rv-colour-name { font-size: 0.53rem; font-weight: 700; color: rgba(255,255,255,0.80); text-align: center; line-height: 1.2; }
.rv-colour-sys  { font-size: 0.49rem; color: rgba(255,255,255,0.34); text-align: center; }

/* ── Mobile: stack vertically ── */
@media (max-width: 640px) {
  .rv-visualiser {
    grid-template-columns: 1fr;
    height: auto;
  }
  .rv-preview { height: auto; aspect-ratio: 16 / 9; }
  .rv-controls { height: auto; max-height: 230px; padding: 10px; }
  .rv-carousel { grid-template-columns: repeat(5, 1fr); }
  .rv-info-card { bottom: 7px; left: 7px; padding: 5px 10px 5px 5px; gap: 7px; }
  .rv-brand-badge-logo { height: 10px; }
  .rv-info-swatch { width: 24px; height: 24px; }
  .rv-info-name { font-size: 0.7rem; }
}

/* ══════════════════════════════════════════════════════════════════
   Projects Portfolio — Full Rebuild
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero trust row ──────────────────────────────────────────────── */
.pf-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.pf-hero-trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.pf-hero-trust__item svg { color: var(--accent); flex-shrink: 0; }

/* ── Proof strip ─────────────────────────────────────────────────── */
.pf-proof-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}
.pf-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pf-proof-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
}
.pf-proof-strip__item:last-child { border-right: 0; }
.pf-proof-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(157,187,53,0.12);
  border: 1px solid rgba(157,187,53,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
@media (max-width: 900px) {
  .pf-proof-strip__grid { grid-template-columns: 1fr 1fr; }
  .pf-proof-strip__item:nth-child(2) { border-right: 0; }
  .pf-proof-strip__item:nth-child(3),
  .pf-proof-strip__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
}
@media (max-width: 560px) {
  .pf-proof-strip__grid { grid-template-columns: 1fr; }
  .pf-proof-strip__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .pf-proof-strip__item:last-child { border-bottom: 0; }
}

/* ── Archive section header ──────────────────────────────────────── */
.pf-archive-section { padding-top: 72px; padding-bottom: 80px; }
.pf-archive-head {
  margin-bottom: 36px;
}
.pf-archive-head h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 6px 0 10px;
  line-height: 1.15;
}
.pf-archive-head__sub {
  font-size: 0.92rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

/* ── Filter bar ──────────────────────────────────────────────────── */
.pf-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.pf-filter-btn {
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.pf-filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pf-filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
@media (max-width: 680px) {
  .pf-filter-bar { padding: 12px 14px; gap: 6px; }
  .pf-filter-btn { font-size: 0.75rem; height: 32px; padding: 0 12px; }
}

/* ── Shared tag pills ────────────────────────────────────────────── */
.pf-tag {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pf-tag--accent { background: var(--accent); color: var(--white); }

/* ── Featured project ────────────────────────────────────────────── */
.pf-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.pf-featured__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--graphite);
}
.pf-featured__img,
.pf-featured__image img,
.pf-featured__image .pf-featured__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pf-featured__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,19,21,0.55) 100%);
}
.pf-featured__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.pf-featured__body {
  padding: 36px 36px 36px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.pf-featured__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.pf-featured__tags .pf-tag {
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.pf-featured__tags .pf-tag--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.pf-featured__body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}
.pf-featured__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.pf-featured__detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pf-featured__detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pf-featured__detail-value {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal);
}
.pf-featured__summary {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}
.pf-featured__work-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.pf-featured__work ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pf-featured__work ul li {
  font-size: 0.82rem;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.pf-featured__work ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.pf-featured__outcome {
  font-size: 0.82rem;
  color: var(--text-mid);
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  line-height: 1.55;
}
.pf-featured__outcome strong { color: var(--charcoal); }
@media (max-width: 900px) {
  .pf-featured { grid-template-columns: 1fr; }
  .pf-featured__image { min-height: 280px; }
  .pf-featured__body { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .pf-featured__details { grid-template-columns: 1fr; }
  .pf-featured__body { padding: 22px 18px; gap: 14px; }
  .pf-featured__body h2 { font-size: 1.2rem; }
}

/* ── Project grid ────────────────────────────────────────────────── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .pf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pf-grid { grid-template-columns: 1fr; } }

/* ── Project card ────────────────────────────────────────────────── */
.pf-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.pf-card:hover {
  box-shadow: 0 8px 32px rgba(16,19,21,0.12);
  border-color: rgba(157,187,53,0.35);
  transform: translateY(-2px);
}
.pf-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--graphite);
}
.pf-card__img,
.pf-card__image img,
.pf-card__image .pf-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.pf-card:hover .pf-card__img,
.pf-card:hover .pf-card__image img { transform: scale(1.04); }
.pf-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16,19,21,0.6) 100%);
  pointer-events: none;
}
.pf-card__tag-row {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 2;
}
.pf-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.pf-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 500;
}
.pf-card__meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 500;
  flex-wrap: wrap;
}
.pf-card__dot { color: var(--border); }
.pf-card__body h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
  margin: 0;
}
.pf-card__summary {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.pf-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.pf-card__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.18s ease;
}
.pf-card:hover .pf-card__cta-link { gap: 8px; }

/* ── Empty state ─────────────────────────────────────────────────── */
.pf-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: var(--off-white);
}
.pf-empty-state p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.pf-empty-state a { color: var(--accent); font-weight: 600; }

/* ── Before / After section ──────────────────────────────────────── */
.pf-ba-section { padding: 80px 0; }
.pf-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pf-ba-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.pf-ba-card__split {
  display: flex;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.pf-ba-card__half {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  position: relative;
}
.pf-ba-card__half--before {
  background: linear-gradient(135deg, #2a2e31 0%, #3d4347 100%);
}
.pf-ba-card__half--after {
  background: linear-gradient(135deg, #3d4a18 0%, #5a6e22 100%);
}
.pf-ba-label {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pf-ba-card__divider {
  width: 3px;
  background: rgba(255,255,255,0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.pf-ba-card__body {
  padding: 18px 20px 20px;
}
.pf-ba-card__service {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 6px;
}
.pf-ba-card__body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 8px;
  line-height: 1.3;
}
.pf-ba-card__body p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) { .pf-ba-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* ── Services section ────────────────────────────────────────────── */
.pf-services-section { padding: 80px 0; }
.pf-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pf-service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}
.pf-service-card:hover {
  box-shadow: 0 6px 24px rgba(16,19,21,0.08);
  border-color: rgba(157,187,53,0.3);
}
.pf-service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(157,187,53,0.1);
  border: 1px solid rgba(157,187,53,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.pf-service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.25;
}
.pf-service-card > p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.pf-service-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pf-service-card__list li {
  font-size: 0.78rem;
  color: var(--charcoal);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.pf-service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.pf-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.18s ease;
}
.pf-service-card:hover .pf-service-card__link { gap: 9px; }
@media (max-width: 1080px) { .pf-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .pf-services-grid { grid-template-columns: 1fr; } }

/* ── Workmanship section ─────────────────────────────────────────── */
.pf-workmanship { padding: 80px 0; }
.pf-workmanship__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pf-workmanship__header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 8px 0 16px;
}
.pf-workmanship__header > p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 380px;
}
.pf-workmanship__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pf-workmanship__block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pf-workmanship__block:first-child { padding-top: 0; }
.pf-workmanship__block:last-child { border-bottom: 0; padding-bottom: 0; }
.pf-workmanship__num {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(157,187,53,0.12);
  border: 1px solid rgba(157,187,53,0.25);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pf-workmanship__block-text h3 {
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.3;
}
.pf-workmanship__block-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .pf-workmanship__inner { grid-template-columns: 1fr; gap: 40px; }
  .pf-workmanship__header h2 { font-size: 1.5rem; }
}

/* ── CTA section ─────────────────────────────────────────────────── */
.pf-cta {
  position: relative;
  background: var(--charcoal);
  padding: 80px 0;
  overflow: hidden;
}
.pf-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(157,187,53,0.08) 0%, transparent 65%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(255,255,255,0.015) 28px,
      rgba(255,255,255,0.015) 29px
    );
  pointer-events: none;
}
.pf-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pf-cta__inner h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.pf-cta__inner > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 460px;
  margin: 0;
}
.pf-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pf-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  width: 100%;
}
.pf-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.pf-cta__trust-item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 600px) {
  .pf-cta__inner h2 { font-size: 1.5rem; }
  .pf-cta__actions { flex-direction: column; width: 100%; }
  .pf-cta__actions .btn { text-align: center; justify-content: center; }
}

/* ── Showcase: featured + 3 thumbnails ─────────────────────────────── */

/* Override featured margin when inside showcase */
.pf-showcase .pf-featured { margin-bottom: 0; }

/* Fade transition when swapping content */
.pf-showcase .pf-featured { transition: opacity 0.22s ease; }
.pf-showcase .pf-featured.is-swapping { opacity: 0; pointer-events: none; }

/* Thumbnail strip — 3 columns below the featured card */
.pf-showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

/* Thumbnail card */
.pf-thumb {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.22s ease;
}
.pf-thumb:hover {
  border-color: rgba(157,187,53,0.45);
  box-shadow: 0 6px 20px rgba(16,19,21,0.1);
  transform: translateY(-3px);
}
.pf-thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.pf-thumb__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--graphite);
}
.pf-thumb__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}
.pf-thumb:hover .pf-thumb__img { transform: scale(1.05); }
.pf-thumb__info {
  padding: 14px 16px 10px;
  flex: 1;
}
.pf-thumb__service {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 5px;
}
.pf-thumb__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  margin: 0;
}
.pf-thumb__arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap 0.18s ease;
}
.pf-thumb__arrow::before { content: 'View project'; }
.pf-thumb:hover .pf-thumb__arrow { gap: 9px; }

/* Active thumbnail pulse — briefly highlights after being cycled out */
.pf-thumb.just-cycled { animation: pf-thumb-pulse 0.5s ease; }
@keyframes pf-thumb-pulse {
  0%   { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(157,187,53,0.2); }
  100% { border-color: var(--border); box-shadow: none; }
}

/* Responsive */
@media (max-width: 860px) {
  .pf-showcase__thumbs { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pf-thumb__info { padding: 12px 14px 8px; }
  .pf-thumb__arrow { padding: 8px 14px 12px; }
}

/* ====================================================================
   Render Process — Tabbed Timeline Section
   ==================================================================== */

/* ── Section shell ─────────────────────────────────────────────────── */
.render-process {
  padding: 112px 0 148px;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal texture */
.render-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
}

/* Accent glow bleed top-left */
.render-process::after {
  content: '';
  position: absolute;
  top: -120px;
  left: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(157,187,53,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Tab bar ───────────────────────────────────────────────────────── */
.rp-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.rp-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.14);
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.rp-tab:hover {
  border-color: rgba(255,255,255,0.32);
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.rp-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.rp-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--charcoal);
  box-shadow: 0 0 0 4px rgba(157,187,53,0.18), 0 4px 20px rgba(157,187,53,0.28);
}

/* ── Panel visibility & transition ────────────────────────────────── */
.rp-panel {
  position: relative;
  z-index: 1;
}

.rp-panel:not(.is-active) { display: none; }

.rp-panel.is-active {
  animation: rp-panel-in 0.32s ease both;
}

@keyframes rp-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Timeline container ────────────────────────────────────────────── */
.rp-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* ── Individual phase row ──────────────────────────────────────────── */
.rp-phase {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  position: relative;
  padding-bottom: 100px;
}

.rp-phase--has-graphic {
  grid-template-columns: 72px 1fr;
}

.rp-phase:last-child { padding-bottom: 0; }

/* ── Rail (left column) ────────────────────────────────────────────── */
.rp-phase__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.rp-phase__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 5px rgba(157,187,53,0.16), 0 0 0 9px rgba(157,187,53,0.07);
}

.rp-phase__dot-num {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.rp-phase__line {
  position: absolute;
  top: 56px;       /* below dot: 48px height + 8px gap */
  bottom: -124px;  /* extends to centre of next dot: phase gap (100px) + half-dot (24px) */
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, rgba(157,187,53,0.35) 0%, rgba(255,255,255,0.08) 60%, rgba(255,255,255,0.06) 100%);
}

.rp-phase:last-child .rp-phase__line { display: none; }

/* ── Phase content ─────────────────────────────────────────────────── */
.rp-phase__content {
  position: relative;
  padding: 32px 40px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: background var(--transition), border-color var(--transition);
}

.rp-phase__content:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(157,187,53,0.22);
}

.rp-phase__ghost-num {
  position: absolute;
  top: -18px;
  right: 16px;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.rp-phase__category {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(157,187,53,0.10);
  border: 1px solid rgba(157,187,53,0.22);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.rp-phase__title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.rp-phase__body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.rp-phase__timing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 18px;
  background: rgba(157,187,53,0.10);
  border: 1px solid rgba(157,187,53,0.28);
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(157,187,53,0.98);
  line-height: 1.4;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(157,187,53,0.10);
}

.rp-phase__timing svg {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.85;
}

/* ── SVG graphic — floated inside the card ─────────────────────────── */
.rp-phase__graphic {
  float: right;
  margin: 0 0 20px 32px;
  width: 220px;
  flex-shrink: 0;
}

.rp-phase__svg {
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.45));
}

/* ── Responsive — tablet ───────────────────────────────────────────── */
@media (max-width: 760px) {
  .rp-phase__graphic { display: none; }
}

/* ── Responsive — mobile ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .render-process { padding: 72px 0 88px; }

  .rp-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 48px;
  }

  .rp-tab {
    font-size: 0.76rem;
    padding: 11px 14px;
    text-align: center;
    justify-content: center;
  }

  .rp-phase {
    grid-template-columns: 48px 1fr;
    gap: 0 18px;
    padding-bottom: 64px;
  }

  .rp-phase__dot { width: 36px; height: 36px; }
  .rp-phase__dot-num { font-size: 0.74rem; }
  .rp-phase__line { top: 44px; bottom: -82px; } /* dot 36px + 8px; gap 64px + half-dot 18px */
  .rp-phase__ghost-num { font-size: 5rem; top: -10px; right: 8px; }
  .rp-phase__content { padding: 22px 22px 26px; }
  .rp-phase__title { font-size: 1.1rem; }
  .rp-phase__body { font-size: 0.88rem; line-height: 1.75; }
  .rp-phase__timing { font-size: 0.74rem; padding: 8px 13px; }
}

@media (max-width: 380px) {
  .rp-tabs { grid-template-columns: 1fr; }
}

/* ====================================================================
   Render Process — Immersive Animations
   ==================================================================== */

/* ── Ambient keyframes ─────────────────────────────────────────────── */
@keyframes rp-glow-drift {
  0%   { transform: translate(0, 0)        scale(1);    }
  33%  { transform: translate(48px, 28px)  scale(1.12); }
  66%  { transform: translate(-28px, 44px) scale(0.92); }
  100% { transform: translate(0, 0)        scale(1);    }
}

@keyframes rp-ghost-float {
  0%   { transform: translateY(0);     }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0);     }
}

/* ── Phase entrance keyframes ──────────────────────────────────────── */

/* Dot: ring pulse radiates outward on activation */
@keyframes rp-dot-activate {
  0%   { box-shadow: 0 0 0 0    rgba(157,187,53,0.80), 0 0 0 0    rgba(157,187,53,0.40); }
  45%  { box-shadow: 0 0 0 18px rgba(157,187,53,0),    0 0 0 30px rgba(157,187,53,0);    }
  100% { box-shadow: 0 0 0 5px  rgba(157,187,53,0.16), 0 0 0 9px  rgba(157,187,53,0.07); }
}

/* Content card: slides in from right */
@keyframes rp-card-in {
  from { opacity: 0; transform: translateX(32px) translateY(4px); }
  to   { opacity: 1; transform: translateX(0)    translateY(0);   }
}

/* Timing badge: bounces up */
@keyframes rp-badge-in {
  0%   { opacity: 0; transform: translateY(12px) scale(0.88); }
  62%  { transform: translateY(-4px)  scale(1.04); }
  82%  { transform: translateY(2px)   scale(0.98); }
  100% { opacity: 1; transform: translateY(0)     scale(1);    }
}

/* ── Ambient glow drift ────────────────────────────────────────────── */
.rp-anim-ready.render-process::after {
  animation: rp-glow-drift 20s ease-in-out infinite;
}

/* ── Pending (pre-activation) rail states ────────────────────────────
   Dots and lines are always visible as the skeleton so the section
   never looks empty — but in a muted "waiting" state.               */
.rp-anim-ready .rp-phase__dot {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.20);
  box-shadow: none;
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.rp-anim-ready .rp-phase__dot-num {
  color: rgba(255,255,255,0.35);
  transition: color 0.32s ease;
}

/* Line: grey skeleton always present; ::after is the accent fill.
   position: absolute set in base CSS — must not override it here. */
.rp-anim-ready .rp-phase__line {
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}

.rp-anim-ready .rp-phase__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--accent) 0%, rgba(157,187,53,0.45) 100%);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
}

/* Content card and badge hidden until phase activates */
.rp-anim-ready .rp-phase__content {
  opacity: 0;
  transform: translateX(32px) translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.rp-anim-ready .rp-phase__timing {
  opacity: 0;
  transition: opacity 0.20s ease;
}

/* ── Activated states (is-visible added by scroll observer) ─────────── */

/* Dot: fills with accent colour + ring pulse radiates out */
.rp-anim-ready .rp-phase.is-visible .rp-phase__dot {
  background: var(--accent);
  border-color: var(--accent);
  animation: rp-dot-activate 0.80s ease both;
}

.rp-anim-ready .rp-phase.is-visible .rp-phase__dot-num {
  color: var(--charcoal);
}

/* Line fill draws downward to the next phase */
.rp-anim-ready .rp-phase.is-visible .rp-phase__line::after {
  transform: scaleY(1);
}

/* Content card slides in */
.rp-anim-ready .rp-phase.is-visible .rp-phase__content {
  animation: rp-card-in 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
  transition: background var(--transition), border-color var(--transition);
}

/* Timing badge bounces in after card */
.rp-anim-ready .rp-phase.is-visible .rp-phase__timing {
  animation: rp-badge-in 0.54s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.40s;
}

/* Ghost number floats gently once visible */
.rp-anim-ready .rp-phase.is-visible .rp-phase__ghost-num {
  animation: rp-ghost-float 9s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* ── Reduced motion: all elements show in their final state ─────────── */
@media (prefers-reduced-motion: reduce) {
  .rp-anim-ready.render-process::after { animation: none; }

  .rp-anim-ready .rp-phase__dot {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 5px rgba(157,187,53,0.16), 0 0 0 9px rgba(157,187,53,0.07) !important;
    transition: none !important;
    animation: none !important;
  }

  .rp-anim-ready .rp-phase__dot-num {
    color: var(--charcoal) !important;
    transition: none !important;
  }

  .rp-anim-ready .rp-phase__line::after {
    transform: scaleY(1) !important;
    transition: none !important;
  }

  .rp-anim-ready .rp-phase__content,
  .rp-anim-ready .rp-phase__timing {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .rp-anim-ready .rp-phase.is-visible .rp-phase__dot,
  .rp-anim-ready .rp-phase.is-visible .rp-phase__content,
  .rp-anim-ready .rp-phase.is-visible .rp-phase__timing,
  .rp-anim-ready .rp-phase.is-visible .rp-phase__ghost-num {
    animation: none !important;
  }
}

/* ======================================================================
   New sections: testimonials, areas, final CTA, post-viz CTA,
   rendering hero split, internal-why-card, section-cta-row
   ====================================================================== */

/* ── Testimonials grid ─────────────────────────────────────────────── */
.testimonials-section { padding-top: 72px; padding-bottom: 80px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #DADAD4;
  border-top: 4px solid #9DBB35;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.testimonial-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.16); transform: translateY(-4px); }
.testimonial-card--dark {
  background: var(--graphite);
  border-color: var(--border-dark);
}
.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
}
.testimonial-card--dark .testimonial-card__quote { color: var(--text-on-dark-mid); }
.testimonial-card__footer { margin-top: auto; }
.testimonial-card__author { font-weight: 700; font-size: 0.85rem; color: var(--text); }
.testimonial-card--dark .testimonial-card__author { color: var(--text-on-dark); }
.testimonial-card__meta { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.testimonial-card--dark .testimonial-card__meta { color: var(--text-on-dark-mid); }
.testimonials-empty {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: 0.88rem;
}
.testimonials-empty svg { color: var(--border); }
.testimonials-empty--dark { color: var(--text-on-dark-mid); }
.testimonials-empty--dark svg { color: var(--border-dark); }

/* ── Areas section ─────────────────────────────────────────────────── */
.areas-section { padding-top: 64px; padding-bottom: 72px; }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}
.area-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.area-tag svg { color: var(--accent); flex-shrink: 0; }
.area-tag--dark {
  background: var(--graphite);
  border-color: var(--border-dark);
  color: var(--text-on-dark);
}
.areas-section__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.areas-section__note a { color: var(--brand-green-deep); text-decoration: underline; }
.areas-section__note--dark { color: var(--text-on-dark-mid); }
.areas-section__note--dark a { color: var(--accent); }

/* ── Final CTA (home page, image overlay) ──────────────────────────── */
.final-cta {
  position: relative;
  background: url('/wp-content/uploads/lmj-site-media/lmj-hero-rendered-home.png') center/cover no-repeat;
  background-color: var(--deep-charcoal);
  overflow: hidden;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,18,0.76);
  z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; padding-top: 96px; padding-bottom: 96px; }
.final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-on-dark);
  line-height: 1.15;
}
.final-cta p {
  font-size: 1rem;
  color: var(--text-on-dark-mid);
  max-width: 560px;
  line-height: 1.7;
}
.final-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.final-cta__trust {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.final-cta__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-on-dark-mid);
}
.final-cta__trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Post-visualiser CTA strip ─────────────────────────────────────── */
.rv-post-cta {
  background: var(--deep-charcoal);
  border-top: 1px solid var(--border-dark);
  padding: 20px 0;
}
.rv-post-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.rv-post-cta__inner strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-on-dark);
  display: block;
}
.rv-post-cta__inner span {
  font-size: 0.84rem;
  color: var(--text-on-dark-mid);
}

/* ── Rendering page hero — mirrors home hero sizing exactly ───────────── */
.rnd-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  /* align-items: center keeps content vertically centred in the fixed height,
     so bottom content is never pushed below the fold even on short viewports */
  align-items: center;
  height: calc(100vh - 70px);   /* match home hero exactly: 100vh not 100svh */
  min-height: 480px;
  padding: 0;
}
/* Admin-bar offset — mirrors body.admin-bar .hero rule in home hero CSS */
body.admin-bar .rnd-hero { height: calc(100vh - 70px - 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .rnd-hero { height: calc(100vh - 60px - 46px); }
}

/* Background media */
.rnd-hero .internal-hero__media,
.rnd-hero .internal-hero__overlay { position: absolute; inset: 0; }
.rnd-hero .internal-hero__media  { z-index: 0; }
.rnd-hero .internal-hero__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,10,11,0.96) 0%, rgba(16,19,21,0.87) 46%, rgba(16,19,21,0.22) 100%),
    linear-gradient(180deg, rgba(8,10,11,0.08) 0%, rgba(8,10,11,0.50) 100%);
}
.rnd-hero .internal-hero__image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.65; filter: saturate(0.9) contrast(1.04);
}

/* Container sits above the overlays */
.rnd-hero > .container { position: relative; z-index: 2; width: 100%; }

/* Two-column grid — tighter gap and padding to fit in one viewport */
.rnd-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(20px, 2.5vw, 32px) 0;
  align-items: center;
  width: 100%;
}

/* ── Left copy column ── */
.rnd-hero__copy { text-align: left; }

.rnd-hero__copy .page-hero__breadcrumb {
  display: flex; gap: 6px; align-items: center;
  justify-content: flex-start;
  font-size: 0.72rem; color: rgba(255,255,255,0.38);
  margin-bottom: 8px;
}
.rnd-hero__copy .page-hero__breadcrumb a { color: rgba(255,255,255,0.38); }
.rnd-hero__copy .page-hero__breadcrumb a:hover { color: var(--accent); }

.rnd-hero__copy .hero__eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.rnd-hero__copy .hero__eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}

/* Smaller h1 so the long heading never wraps to 4 lines at laptop sizes */
.rnd-hero__copy h1 {
  font-size: clamp(1.4rem, 2.3vw, 2.0rem);
  font-weight: 800; color: var(--white);
  line-height: 1.12; letter-spacing: -0.01em;
  margin-bottom: 10px; text-wrap: balance; max-width: 560px;
}

.rnd-hero__copy .internal-hero__lead {
  font-size: clamp(0.82rem, 1vw, 0.9rem);
  color: rgba(255,255,255,0.68); line-height: 1.6;
  margin-bottom: 14px; max-width: 500px;
}

.rnd-hero__copy .hero__actions {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: flex-start;
  margin-bottom: 12px;
}

.rnd-hero__copy .hero__trust {
  display: flex; flex-wrap: wrap;
  gap: 4px 10px; align-items: center; justify-content: flex-start;
}
.rnd-hero__copy .hero__trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: rgba(255,255,255,0.54); font-weight: 500;
}
.rnd-hero__copy .hero__trust-item svg { color: var(--accent); flex-shrink: 0; }

/* ── Right visual column ── */
.rnd-hero__visual { display: flex; flex-direction: column; gap: 8px; }

.rnd-hero__img-wrap {
  /* vh-based height so the card always fits within the fixed hero height */
  height: clamp(180px, 26vh, 255px);
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 12px 40px rgba(0,0,0,0.38);
  background: var(--dark);
}
.rnd-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; filter: saturate(0.9) contrast(1.04);
}

.rnd-hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px;
}
.rnd-hero__stat {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px; padding: 9px 6px; text-align: center;
}
.rnd-hero__stat strong {
  display: block; font-size: 1.1rem; font-weight: 800;
  color: var(--accent); line-height: 1; margin-bottom: 2px;
}
.rnd-hero__stat span {
  display: block; font-size: 0.61rem;
  color: rgba(255,255,255,0.44); font-weight: 500; line-height: 1.3;
}

/* Tablet: single column, hide image card, auto height */
@media (max-width: 900px) {
  .rnd-hero { height: auto; min-height: auto; }
  body.admin-bar .rnd-hero { height: auto; }
  .rnd-hero__grid {
    grid-template-columns: 1fr;
    padding: clamp(40px, 7vw, 64px) 0;
  }
  .rnd-hero__visual { display: none; }
  .rnd-hero__copy { text-align: center; }
  .rnd-hero__copy .page-hero__breadcrumb,
  .rnd-hero__copy .hero__actions,
  .rnd-hero__copy .hero__trust  { justify-content: center; }
  .rnd-hero__copy h1,
  .rnd-hero__copy .internal-hero__lead { max-width: none; }
}
/* Mobile */
@media (max-width: 640px) {
  .rnd-hero__copy h1 { font-size: clamp(1.35rem, 5vw, 1.6rem); }
  .rnd-hero__copy .internal-hero__lead { font-size: 0.84rem; }
}

/* ── Rendering enquiry section ──────────────────────────────────────── */
.rnd-enquiry { padding: 72px 0; }
.rnd-enquiry__grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 56px;
  align-items: center;
}
.rnd-enquiry__copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.rnd-enquiry__copy > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.rnd-enquiry__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.rnd-enquiry__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.rnd-enquiry__list svg { color: var(--accent); flex-shrink: 0; }

/* Panel is just a passthrough — the quote-lead-shell carries its own card styling */
.rnd-enquiry__panel {
  background: none;
  border: none;
  padding: 0;
}
.rnd-enquiry__panel-label,
.rnd-enquiry__panel-intro { display: none; }

/* Strip the two redundant sub-lines from the rendering page form only */
.rnd-enquiry .quote-lead-shell__head p { display: none; }
.rnd-enquiry .quote-lead-step[data-step="1"] .quote-lead-step__heading p { display: none; }

@media (max-width: 1024px) {
  .rnd-enquiry__grid { grid-template-columns: 1fr; gap: 36px; }
  .rnd-enquiry__form-wrap { max-width: 580px; }
}

/* ── Render Systems — 4-card 2×2 grid ───────────────────────────────── */
.rnd-systems .render-systems-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rnd-systems .render-system-card__texture {
  height: 140px;
}
.rnd-systems .render-system-card {
  padding-bottom: 32px;
}
.rnd-systems .render-system-card h3 {
  font-size: 1.05rem;
  margin: 0 28px 10px;
}
.rnd-systems .render-system-card__desc {
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 0 28px 14px;
}
@media (max-width: 640px) {
  .rnd-systems .render-systems-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Rendering Case Studies ─────────────────────────────────────────── */
.rnd-casestudies { padding: 80px 0; }

.rnd-cs__head {
  max-width: 640px;
  margin-bottom: 48px;
}
.rnd-cs__head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.15;
}
.rnd-cs__head p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}

/* Grid: active item full-width, inactive items fill 3 cols */
.rnd-cs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.rnd-cs__item.is-active { grid-column: 1 / -1; }

/* Show/hide main vs card view based on active state */
.rnd-cs__item-main { display: none; }
.rnd-cs__item.is-active .rnd-cs__item-main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  animation: rnd-cs-in 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: 0.19s;
}
.rnd-cs__item.is-active .rnd-cs__item-card { display: none; }

@keyframes rnd-cs-in {
  from { opacity: 0; transform: translateY(18px) scale(0.994); }
  to   { opacity: 1; transform: translateY(0)    scale(1);     }
}

/* ── Main featured card ───────────── */
.rnd-cs__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,0.07);
}
.rnd-cs__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.rnd-cs__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rnd-cs__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--charcoal);
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}
.rnd-cs__system-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
}
.rnd-cs__title {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.rnd-cs__summary {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rnd-cs__details { margin: 0; }
.rnd-cs__detail {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rnd-cs__detail:last-of-type { border-bottom: none; padding-bottom: 0; }
.rnd-cs__detail dt {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.rnd-cs__detail dd {
  margin: 0;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}
.rnd-cs__cta { margin-top: 24px; }

/* ── Summary cards ────────────────── */
.rnd-cs__item-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.rnd-cs__item-card:hover {
  border-color: rgba(157,187,53,0.55);
  transform: translateY(-3px);
}
.rnd-cs__card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.rnd-cs__card-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.3s ease;
}
.rnd-cs__item-card:hover .rnd-cs__card-img { transform: scale(1.04); }
.rnd-cs__card-body { padding: 18px 18px 20px; }
.rnd-cs__card-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 9px 0 7px;
}
.rnd-cs__card-summary {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rnd-cs__card-cta {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .rnd-cs__item.is-active .rnd-cs__item-main { grid-template-columns: 1fr; }
  .rnd-cs__image { aspect-ratio: 16 / 9; }
}
@media (max-width: 500px) {
  .rnd-cs__list { grid-template-columns: 1fr; }
}

/* ── Internal Why Cards ────────────────────────────────────────────── */
.internal-standard__why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.internal-why-card {
  background: var(--graphite);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.internal-why-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(157,187,53,0.12);
  border: 1px solid rgba(157,187,53,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.internal-why-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.internal-why-card p {
  font-size: 0.82rem;
  color: var(--text-on-dark-mid);
  line-height: 1.6;
}

/* ── Section CTA row (replaces inline styles) ──────────────────────── */
.section-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.section-cta-row--center { justify-content: center; margin-top: 36px; }

/* ── Responsive tweaks ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero--split .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__form-panel { max-width: 560px; }
  .internal-standard__why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .internal-standard__why-grid { grid-template-columns: 1fr; }
  .rv-post-cta__inner { flex-direction: column; align-items: flex-start; }
  .final-cta .container { padding-top: 64px; padding-bottom: 64px; }
  .areas-grid { gap: 8px; }
  .area-tag { font-size: 0.78rem; padding: 6px 12px; }
}

/* ── Brand Trust Bar ──────────────────────────────────────────────── */
.brand-bar {
  background: #f8f9fa;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 36px 0;
}
.brand-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.brand-bar__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin: 0;
}
.brand-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-bar__item {
  display: flex;
  align-items: center;
  opacity: 0.72;
  transition: opacity 0.18s ease;
  text-decoration: none;
}
.brand-bar__item:hover { opacity: 1; }
.brand-bar__img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) contrast(0.9);
  transition: filter 0.18s ease;
}
.brand-bar__item:hover .brand-bar__img { filter: none; }
.brand-bar__divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.13);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .brand-bar__divider { display: none; }
  .brand-bar__logos { gap: 32px; }
}

/* ── Render Systems Brand Bar (dark section, homepage) ──────────── */
.rs-brand-bar {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.rs-brand-bar__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.rs-brand-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.rs-brand-bar__item {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.18s ease;
}
.rs-brand-bar__item:hover { opacity: 0.9; }
.rs-brand-bar__img {
  height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  transition: opacity 0.18s ease;
}
.rs-brand-bar__divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .rs-brand-bar__divider { display: none; }
  .rs-brand-bar__logos { gap: 28px; }
}

/* ─── Mobile Contact Drawer ─────────────────────────────────────────────────── */
.contact-drawer { display: none; }

@media (max-width: 768px) {
  .contact-drawer {
    position: fixed; inset: 0; z-index: 10000;
    pointer-events: none; display: block;
  }
  .contact-drawer.is-open { pointer-events: auto; }

  .contact-drawer__backdrop {
    position: absolute; inset: 0; z-index: 0;
    background: rgba(13,17,18,0);
    transition: background 0.28s ease;
  }
  .contact-drawer.is-open .contact-drawer__backdrop { background: rgba(13,17,18,1); }

  .contact-drawer__sheet {
    position: absolute; z-index: 1;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.32,0.72,0,1);
    display: flex;
    flex-direction: column;
    height: 92dvh;
    overflow: hidden;
  }
  .contact-drawer.is-open .contact-drawer__sheet { transform: translateY(0); }

  /* Top bar */
  .contact-drawer__top {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 10px 16px 8px;
    position: relative;
  }
  .contact-drawer__grip { width: 34px; height: 4px; background: #D4D4CE; border-radius: 4px; }
  .contact-drawer__back {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; gap: 4px;
    background: none; border: none; padding: 6px 8px; cursor: pointer;
    color: #9DBB35; font-size: 0.82rem; font-weight: 600; font-family: inherit;
    line-height: 1; border-radius: 8px; transition: color 0.15s;
  }
  .contact-drawer__back svg { width: 16px; height: 16px; }
  .contact-drawer__close {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; padding: 6px; cursor: pointer;
    color: #888; line-height: 0; border-radius: 50%; transition: color 0.15s;
  }
  .contact-drawer__close:hover { color: #111; }
  .contact-drawer__close svg { width: 18px; height: 18px; }

  /* VIEW 1: links + choice buttons */
  .cdf-links-view { display: flex; flex-direction: column; overflow-y: auto; flex: 1; }
  .cdf-links-view[hidden] { display: none; }

  /* Quick contact rows */
  .contact-drawer__quick {
    flex-shrink: 0;
    display: flex; flex-direction: column;
    border-top: 1px solid #F0F0EA;
    border-bottom: 1px solid #F0F0EA;
  }
  .cdq {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px; text-decoration: none;
    border-bottom: 1px solid #F5F5F0; transition: background 0.12s;
  }
  .cdq:last-child { border-bottom: none; }
  .cdq:active { background: #F8F8F4; }
  .cdq__icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  }
  .cdq--phone    .cdq__icon { background: #9DBB35; color: #fff; }
  .cdq--whatsapp .cdq__icon { background: #25D366; color: #fff; }
  .cdq--email    .cdq__icon { background: #111414; color: #fff; }
  .cdq__icon svg { width: 17px; height: 17px; }
  .cdq__body { flex: 1; display: flex; flex-direction: column; gap: 1px; }
  .cdq__label { font-size: 0.88rem; font-weight: 700; color: #111414; line-height: 1.1; }
  .cdq__value { font-size: 0.77rem; color: #888; line-height: 1; }
  .cdq__arrow { width: 16px; height: 16px; color: #C8C8C2; flex-shrink: 0; }

  /* Form choice buttons */
  .cdf-choices {
    flex-shrink: 0;
    display: flex; flex-direction: column;
    padding: 12px 14px 16px; gap: 8px;
  }
  .cdf-choice {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 14px;
    background: #F7F7F3; border: 1.5px solid #EAEAE4; border-radius: 12px;
    cursor: pointer; font-family: inherit; text-align: left;
    transition: border-color 0.15s, background 0.15s;
  }
  .cdf-choice:active { background: #F0F0EB; border-color: #9DBB35; }
  .cdf-choice__icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
    background: #9DBB35; color: #fff;
  }
  .cdf-choice:last-child .cdf-choice__icon { background: #0D1112; }
  .cdf-choice__icon svg { width: 17px; height: 17px; }
  .cdf-choice__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
  .cdf-choice__label { font-size: 0.88rem; font-weight: 700; color: #111414; line-height: 1.2; }
  .cdf-choice__sub { font-size: 0.77rem; color: #888; line-height: 1.2; }
  .cdf-choice__arrow { width: 16px; height: 16px; color: #C8C8C2; flex-shrink: 0; }

  /* VIEW 2: form view */
  .cdf-form-view {
    flex: 1; min-height: 0;
    display: flex; flex-direction: column; overflow: hidden;
  }
  .cdf-form-view[hidden] { display: none; }

  /* Panels */
  .cdf-panel {
    flex: 1; overflow-y: auto;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    padding: 16px 14px 28px;
  }
  .cdf-panel[hidden] { display: none; }

  /* Quick form fields */
  .cdf-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
  .cdf-row    { display: flex; gap: 8px; }
  .cdf-row input { flex: 1; min-width: 0; }
  .cdf-fields input,
  .cdf-fields textarea {
    width: 100%; padding: 11px 13px; font-size: 0.88rem;
    border: 1.5px solid #DADAD4; border-radius: 9px;
    background: #FAFAF8; color: #111414; font-family: inherit;
    outline: none; transition: border-color 0.15s; box-sizing: border-box;
  }
  .cdf-fields input:focus,
  .cdf-fields textarea:focus { border-color: #9DBB35; background: #fff; }
  .cdf-fields textarea { resize: none; min-height: 90px; }
  .cdf-submit-btn { width: 100%; justify-content: center; padding: 13px; font-size: 0.9rem; }
  .cdf-message {
    font-size: 0.82rem; border-radius: 8px;
    padding: 0; margin-bottom: 0; line-height: 1.4;
  }
  .cdf-message:not(:empty) { padding: 10px 12px; margin-bottom: 10px; }
  .cdf-message--success { background: #EBF2D5; color: #4A6A0A; }
  .cdf-message--error   { background: #FEE2E2; color: #991B1B; }

  /* Full quote form overrides */
  #cdf-full .quote-lead-shell {
    background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none;
  }
  #cdf-full .quote-lead-shell__head    { display: none; }
  #cdf-full .quote-lead-shell__message { margin-bottom: 0; }
  #cdf-full .quote-lead-progress       { display: none; }
  #cdf-full .quote-lead-form           { gap: 10px; }
  #cdf-full .quote-lead-step__heading  { margin-bottom: 6px; }
  #cdf-full .quote-lead-step__heading h3 { font-size: 0.9rem; font-weight: 700; }
  #cdf-full .quote-lead-step__heading p  { display: none; }
  #cdf-full .quote-lead-grid { gap: 6px; }
  #cdf-full .quote-choice__inner {
    min-height: 0; padding: 9px; gap: 4px; align-items: center; text-align: center;
  }
  #cdf-full .quote-choice__copy  { display: none; }
  #cdf-full .quote-choice__icon  { width: 28px; height: 28px; }
  #cdf-full .quote-choice__icon svg { width: 14px; height: 14px; }
  #cdf-full .quote-choice__label { font-size: 0.8rem; line-height: 1.2; }
  #cdf-full .quote-lead-nav .btn { padding: 11px 16px; font-size: 0.85rem; }
  #cdf-full .quote-lead-nav { gap: 8px; }
}

/* ======================================================================
   MOBILE UX AUDIT FIXES — v1.5.32
   ====================================================================== */

/* ── Sticky mobile CTA bar: inner layout ─────────────────────────────── */
.sticky-cta__inner {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sticky-cta__btn {
  flex: 1;
  justify-content: center;
  min-height: 44px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
}
/* Outline style on dark sticky-cta background */
.sticky-cta .btn--outline {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
}
.sticky-cta .btn--outline:hover,
.sticky-cta .btn--outline:active {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  color: #fff;
}
/* Correct body clearance so the sticky bar doesn't overlap content */
@media (max-width: 859px) {
  body { padding-bottom: 74px; }
}
/* Safe-area support for notched iPhones — progressive enhancement */
@supports (padding: env(safe-area-inset-bottom)) {
  .sticky-cta {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  @media (max-width: 859px) {
    body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  }
}

/* ── Contact drawer quick-form: stack name + phone at very small screens */
@media (max-width: 380px) {
  .cdf-row { flex-direction: column; }
}

/* ── Rendering page case studies: 2-col between 501px and 640px ──────── */
@media (max-width: 640px) {
  .rnd-cs__list { grid-template-columns: repeat(2, 1fr); }
}

/* ── Final CTA section: full-width action buttons on mobile ──────────── */
@media (max-width: 480px) {
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ── Commercial split CTA row: even-width buttons on mobile ──────────── */
.commercial-split__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .commercial-split__cta-row { flex-direction: column; }
  .commercial-split__cta-row .btn { width: 100%; justify-content: center; }
}

/* ── Rendering case study detail labels: minimum readable size ────────── */
.rnd-cs__detail dt { font-size: 0.68rem; }

/* ======================================================================
   MOBILE HEADER & NAV OVERHAUL
   ====================================================================== */

/* 1 ─ Hide logo in collapsed mobile header — shows in the open nav ──── */
@media (max-width: 768px) {
  .site-logo { display: none; }
  /* Right-align the lone hamburger button */
  .site-header__inner { justify-content: flex-end; }
}

/* 2 ─ Premium borderless hamburger ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    gap: 6px;
    border: none;
    background: transparent;
    border-radius: 10px;
  }
  .nav-toggle:hover  { background: rgba(255,255,255,0.08); border: none; }
  .nav-toggle:active { background: rgba(255,255,255,0.15); border: none; }
  .nav-toggle span {
    width: 24px;
    height: 2.5px;
    border-radius: 2px;
    transition: transform 0.28s cubic-bezier(0.32,0.72,0,1), opacity 0.2s ease;
  }
  /* X animation: bars 1 & 3 translate to bar 2's centre then rotate */
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(8.5px)  rotate(45deg);  }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
}

/* 3 ─ Mobile nav: smooth slide-in from the right instead of pop ─────── */
/* Override the base display:none / display:flex toggle with a
   visibility + transform approach. Fixed position = zero layout impact.  */
.mobile-nav {
  display: flex;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32,0.72,0,1),
              visibility 0s linear 0.32s;
}
.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.32s cubic-bezier(0.32,0.72,0,1),
              visibility 0s linear 0s;
}

/* 4 ─ Mobile nav header: taller, more room for logo to breathe ──────── */
.mobile-nav__header { height: 72px; }
.mobile-nav__logo-image {
  max-height: 50px;
  max-width: clamp(180px, 48vw, 220px);
}
.mobile-nav__logo-name { font-size: 1rem; }

/* 5 ─ Mobile nav close button: match the borderless hamburger style ─── */
.mobile-nav__close {
  border: none;
  background: transparent;
  border-radius: 10px;
  transition: background 0.18s ease;
}
.mobile-nav__close:hover  { background: rgba(255,255,255,0.1);  border: none; }
.mobile-nav__close:active { background: rgba(255,255,255,0.18); border: none; }

/* ── Audience cards: horizontal list-row layout on mobile ───────────────
   Converts tall vertical cards to compact icon-left / text-right rows.
   Uses CSS grid-template-areas — no HTML changes needed.
   ────────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  /* 1-col stack of horizontal rows */
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body.home .audience-grid {
    gap: 10px;
  }

  /* Card becomes a 2-col grid: icon | title+text */
  .audience-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    column-gap: 14px;
    row-gap: 3px;
    padding: 16px 18px;
    min-height: 0;
    align-items: start;
    /* disable the desktop lift-on-hover since we have compact rows now */
    transition: box-shadow var(--transition), border-color var(--transition);
  }
  body.home .audience-card {
    padding: 16px 18px;
    min-height: 0;
  }

  /* Icon: left column, centred vertically across both text rows */
  .audience-card__icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    align-self: center;
    border-radius: 10px;
  }
  body.home .audience-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
  .audience-card__icon svg,
  body.home .audience-card__icon svg {
    width: 22px;
    height: 22px;
  }

  /* Title: top-right cell, flush to bottom of cell */
  .audience-card h3 {
    grid-area: title;
    font-size: 0.95rem;
    margin-bottom: 0;
    align-self: end;
    line-height: 1.2;
  }
  body.home .audience-card h3 { font-size: 0.95rem; }

  /* Description: bottom-right cell */
  .audience-card p {
    grid-area: text;
    font-size: 0.82rem;
    line-height: 1.52;
    align-self: start;
    margin: 0;
  }
  body.home .audience-card p {
    font-size: 0.82rem;
    line-height: 1.52;
  }

  /* Tappable feedback */
  .audience-card:active {
    background: #f5f5f0;
    transform: none;
  }
}

/* ======================================================================
   PREMIUM MOBILE POLISH — v1.5.36
   Rendering page and global mobile improvements: section rhythm,
   spacing, hierarchy, CTAs, and premium finish.
   ====================================================================== */

/* ── Prevent accidental horizontal overflow across all pages ─────────── */
html { overflow-x: hidden; }

/* ── Global: tighter section rhythm at small screens ────────────────── */
@media (max-width: 640px) {
  section { padding: 44px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(1.3rem, 5.5vw, 1.7rem); line-height: 1.18; }
  .section-header p  { font-size: 0.86rem; line-height: 1.65; }
}
@media (max-width: 480px) {
  section  { padding: 36px 0; }
  .section-header { margin-bottom: 22px; }
}

/* ── Trust bar: clean pill tags instead of pipe-separated text ─────── */
@media (max-width: 640px) {
  .trust-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
  }
  .trust-bar__sep { display: none; }
  .trust-bar__item {
    background: rgba(157,187,53,0.10);
    border: 1px solid rgba(157,187,53,0.22);
    border-radius: 999px;
    padding: 5px 13px 5px 10px;
    font-size: 0.76rem;
    gap: 6px;
    white-space: nowrap;
  }
}

/* ── Rendering page hero: stacked CTAs + 2×2 trust grid ─────────────── */
@media (max-width: 640px) {
  .rnd-hero__grid {
    padding-top: clamp(32px, 7vw, 48px);
    padding-bottom: clamp(28px, 6vw, 44px);
  }
  .rnd-hero__copy .hero__actions { flex-direction: column; gap: 10px; }
  .rnd-hero__copy .hero__actions .btn { width: 100%; justify-content: center; }
  .rnd-hero__copy .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: start;
    gap: 8px 20px;
    margin-top: 14px;
  }
  .rnd-hero__copy .hero__trust-item { font-size: 0.78rem; }
}

/* ── Home hero: stacked CTAs, readable text ──────────────────────────── */
@media (max-width: 640px) {
  body.home .hero h1    { font-size: clamp(1.4rem, 6vw, 1.75rem); line-height: 1.18; }
  body.home .hero__lead { font-size: 0.88rem; line-height: 1.62; }
  body.home .hero__eyebrow { font-size: 0.67rem; letter-spacing: 0.12em; }
  body.home .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; }
  body.home .hero__actions .btn { width: 100%; justify-content: center; }
  body.home .hero__trust { flex-wrap: wrap; justify-content: center; gap: 6px 12px; }
  body.home .hero__trust-sep  { display: none; }
  body.home .hero__trust-item { font-size: 0.76rem; }
}

/* ── Stats section: compact 2×2, cleaner numbers ─────────────────────── */
@media (max-width: 480px) {
  .rnd-stat { padding: 22px 14px; }
  .rnd-stat__num   { font-size: 2rem; line-height: 1; }
  .rnd-stat__title { font-size: 0.78rem; }
  .rnd-stat__sub   { font-size: 0.67rem; line-height: 1.4; }
}

/* ── Enquiry section: compact heading and list ───────────────────────── */
@media (max-width: 640px) {
  .rnd-enquiry { padding: 44px 0; }
  .rnd-enquiry__copy h2 { font-size: 1.45rem; }
  .rnd-enquiry__copy > p { font-size: 0.86rem; }
  .rnd-enquiry__list li  { font-size: 0.86rem; }
}

/* ── Render systems showcase: compact header and tab area ────────────── */
@media (max-width: 640px) {
  .render-systems-showcase { padding: 44px 0; }
  .render-systems-showcase__header p { font-size: 0.86rem; }
  .render-systems-trust { flex-wrap: wrap; gap: 8px 16px; margin: 12px 0 20px; }
  .render-systems-trust__item { font-size: 0.77rem; }
  .rmt-section { margin-top: 36px; }
  .rmt-header h3 { font-size: clamp(1.1rem, 4.5vw, 1.3rem); }
  .rmt-header p  { font-size: 0.85rem; }
  .rmt-tab  { padding: 9px 12px; font-size: 0.76rem; }
  .rmt-panels { padding-top: 20px; }
  .rmt-specs__row dt { font-size: 0.7rem; }
  .rmt-specs__row dd { font-size: 0.82rem; }
}

/* ── Brand logos bar: tighter on small screens ───────────────────────── */
@media (max-width: 480px) {
  .rs-brand-bar { margin-top: 30px; padding-top: 26px; gap: 16px; }
  .rs-brand-bar__logos { gap: 20px 22px; }
  .rs-brand-bar__img { height: 28px; max-width: 110px; }
}

/* ── Final CTA strip: full-width buttons + 2×3 trust grid ───────────── */
@media (max-width: 640px) {
  .rnd-cta-strip { padding: 44px 0; }
  .rnd-cta-strip__inner { flex-direction: column; align-items: stretch; gap: 20px; margin-bottom: 20px; }
  .rnd-cta-strip__text h2 { font-size: 1.3rem; }
  .rnd-cta-strip__text p  { font-size: 0.87rem; }
  .rnd-cta-strip__actions { flex-direction: column; gap: 10px; }
  .rnd-cta-strip__actions .btn { width: 100%; justify-content: center; }
  .rnd-cta-strip__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding-top: 18px;
  }
  .rnd-cta-strip__trust-item { font-size: 0.77rem; gap: 6px; }
}

/* ── Case studies: active item stacks to single column on mobile ──────── */
@media (max-width: 640px) {
  .rnd-casestudies { padding: 44px 0; }
  .rnd-cs__head { margin-bottom: 24px; }
  .rnd-cs__item.is-active .rnd-cs__item-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .rnd-cs__image { aspect-ratio: 16 / 9; }
  .rnd-cs__title { font-size: 1.1rem; }
  .rnd-cs__cta   { width: 100%; justify-content: center; }
}
/* Inactive case study cards: single column on very small screens */
@media (max-width: 480px) {
  .rnd-cs__list { grid-template-columns: 1fr; }
}

/* ── Work type cards: full-width CTAs ────────────────────────────────── */
@media (max-width: 640px) {
  .work-types { padding: 44px 0; }
  .work-type-card { padding: 20px 18px; }
  .work-type-card h3 { font-size: 1rem; margin-bottom: 10px; }
  .work-type-card p  { font-size: 0.85rem; }
  .work-type-card .btn { width: 100%; justify-content: center; }
}

/* ── Client type cards: full-width CTAs ─────────────────────────────── */
@media (max-width: 640px) {
  .rnd-clients { padding: 44px 0; }
  .rnd-client-card .btn { width: 100%; justify-content: center; }
  .rnd-client-card > p  { font-size: 0.85rem; }
}

/* ── Post-visualiser CTA: centred full-width button ─────────────────── */
@media (max-width: 640px) {
  .rv-post-cta__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
  }
  .rv-post-cta__inner .btn { width: 100%; justify-content: center; }
}

/* ── Areas section: compact tags ────────────────────────────────────── */
@media (max-width: 640px) {
  .areas-section { padding: 40px 0 44px; }
  .areas-section__note { font-size: 0.82rem; text-align: center; }
}

/* ── Home service cards: tighter padding ────────────────────────────── */
@media (max-width: 640px) {
  .services-section { padding: 44px 0; }
  .service-card__body { padding: 18px 20px 20px; }
  .service-card__body h3 { font-size: 1.1rem; }
  .service-card__body p  { font-size: 0.86rem; }
}

/* ── Home commercial section: readable text ──────────────────────────── */
@media (max-width: 640px) {
  .commercial-split__text h2  { font-size: clamp(1.3rem, 5vw, 1.55rem); }
  .commercial-split__text > p { font-size: 0.86rem; }
  .commercial-split__bullet   { font-size: 0.84rem; }
}

/* ── Colour visualiser: compact carousel swatches ────────────────────── */
@media (max-width: 640px) {
  .rv-section { padding: 44px 0; }
  .rv-carousel { gap: 8px; }
  .rv-colour { min-width: 66px; }
  .rv-colour-name { font-size: 0.7rem; }
  .rv-colour-sys  { font-size: 0.65rem; }
}

/* ── Process timeline: compact on very small screens ────────────────── */
@media (max-width: 480px) {
  .rp-phase { padding-bottom: 32px; }
  .rp-phase__content { padding: 18px 16px 20px; }
  .rp-phase__title   { font-size: 1rem; }
  .rp-phase__body    { font-size: 0.86rem; line-height: 1.7; }
  .rp-phase__timing  { font-size: 0.72rem; padding: 7px 12px; }
  .rp-phase__ghost-num { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SITE-WIDE CONSISTENCY — v1.5.37
   Shared utility classes replacing inline styles across all inner pages
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Container: medium width ─────────────────────────────────────────── */
.container--md { max-width: 960px; margin-left: auto; margin-right: auto; }

/* ── Hero dual-CTA wrapper ───────────────────────────────────────────── */
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Info panel ──────────────────────────────────────────────────────── */
.info-panel {
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
}
.info-panel--white   { background: var(--white); }
.info-panel--padded  { padding: 32px; }
.info-panel__label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.info-panel__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-mid);
}
.info-panel__row:last-child { border-bottom: none; }
.info-panel__row svg        { flex-shrink: 0; margin-top: 2px; }
.info-panel__row--numbered {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.info-panel__row--numbered:last-child { border-bottom: none; }
.info-panel__num {
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--charcoal);
  flex-shrink: 0;
}
.info-panel__num-text { color: var(--text-mid); }
.info-panel > .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ── About: At a Glance panel rows ──────────────────────────────────── */
.glance-row {
  display: flex; flex-direction: column;
  padding: 10px 0; border-bottom: 1px solid var(--border); gap: 2px;
}
.glance-row:last-child { border-bottom: none; }
.glance-row__key { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.glance-row__val { font-size: 0.87rem; color: var(--charcoal); font-weight: 500; }

/* ── About: credentials / insurance panel ────────────────────────────── */
.credentials-panel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px; text-align: center;
}
.credentials-panel__text  { font-size: 0.97rem; color: var(--text-mid); line-height: 1.75; max-width: 560px; margin: 0 auto; }
.credentials-panel__items { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 28px; }
.credentials-panel__item  { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.credentials-panel__note  { font-size: 0.78rem; color: var(--text-light); margin-top: 20px; }

/* ── Page closing CTA (centered) ─────────────────────────────────────── */
.page-cta         { text-align: center; }
.page-cta__lead   { color: var(--text-mid); max-width: 500px; margin: 0 auto; }
.page-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ── Timeline section inline CTA ─────────────────────────────────────── */
.timeline-cta { text-align: center; margin-top: 36px; }

/* ── FAQ category heading ─────────────────────────────────────────────── */
.faq-category { margin-bottom: 56px; }
.faq-category__heading {
  font-size: 1.3rem; font-weight: 800; color: var(--charcoal);
  letter-spacing: -0.01em; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid var(--accent);
}

/* ── Why grid: two-column layout ─────────────────────────────────────── */
.why-grid--two-col { grid-template-columns: 1fr 1fr; }
.why-item--padded  { padding: 16px; }

/* ── Demo label: admin-only visibility ───────────────────────────────── */
.demo-label { display: none; }
body.logged-in .demo-label { display: inline-block; }

/* ── Mobile: hero__actions stack full-width ≤ 560px ─────────────────── */
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
}

/* ── Mobile: page-cta actions stack ≤ 480px ─────────────────────────── */
@media (max-width: 480px) {
  .page-cta__actions { flex-direction: column; align-items: center; }
  .page-cta__actions .btn { width: 100%; max-width: 340px; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════════════
   CASE STUDIES: VIEWPORT-FIT REDESIGN — v1.5.38
   Problem: active item expands full-width forcing heavy vertical scroll.
   Fix: sidebar nav-list (left) + content panel (right) on desktop;
        horizontal tab strip + content panel on mobile.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Desktop: left nav + right content (≥ 700px) ─────────────────────── */
@media (min-width: 700px) {
  .rnd-casestudies .rnd-cs__list {
    grid-template-columns: 220px 1fr;
    gap: 8px 24px;
    align-items: start;
  }

  /* All items sit in the left nav column */
  .rnd-casestudies .rnd-cs__item { grid-column: 1; }

  /* Active item: transparent — card stays left, main moves right */
  .rnd-casestudies .rnd-cs__item.is-active { display: contents; }

  /* Active nav card: visible in left column, highlighted */
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-card {
    display: block;
    grid-column: 1;
    background: rgba(157, 187, 53, 0.10);
    border-left: 3px solid var(--accent);
    pointer-events: none;
  }

  /* Active content panel: right column, spans all 4 nav rows */
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-main {
    display: flex !important;
    flex-direction: column;
    grid-column: 2;
    grid-row: 1 / 5;
    animation: rnd-cs-in 0.28s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    animation-delay: 0s;
  }

  /* Image: fixed compact height instead of 4:3 (very tall) */
  .rnd-casestudies .rnd-cs__image { aspect-ratio: unset; height: 170px; margin-bottom: 16px; }

  /* Summary: tighter */
  .rnd-casestudies .rnd-cs__summary { padding-bottom: 12px; }

  /* Details: side-by-side 3-col strip (was stacked, saved ~120px) */
  .rnd-casestudies .rnd-cs__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 16px;
  }
  .rnd-casestudies .rnd-cs__detail { padding: 10px 0; }
  .rnd-casestudies .rnd-cs__detail:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.06); }

  /* Nav cards: no image, compact text-only pills */
  .rnd-casestudies .rnd-cs__card-image  { display: none; }
  .rnd-casestudies .rnd-cs__item-card   { padding: 12px 14px; }
  .rnd-casestudies .rnd-cs__card-body   { padding: 0; }
  .rnd-casestudies .rnd-cs__card-title  { font-size: 0.87rem; margin: 4px 0 5px; }
  .rnd-casestudies .rnd-cs__card-summary {
    -webkit-line-clamp: 1;
    font-size: 0.77rem;
    margin-bottom: 5px;
  }
  /* Active nav card: hide the "View project" cta (already open) */
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__card-cta { display: none; }
}

/* ── Mobile: horizontal tab strip + content panel (≤ 699px) ──────────── */
@media (max-width: 699px) {
  .rnd-casestudies .rnd-cs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Inactive items: compact tab pill in the top row */
  .rnd-casestudies .rnd-cs__item { flex: 0 0 auto; order: 1; }

  /* Active item: transparent — card stays in tab row, main drops below */
  .rnd-casestudies .rnd-cs__item.is-active { display: contents; }

  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-card {
    display: block;
    order: 1;
    flex: 0 0 auto;
    background: rgba(157, 187, 53, 0.14);
    border-color: var(--accent);
    pointer-events: none;
  }

  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-main {
    display: block !important;
    order: 2;
    flex: 1 0 100%;
    margin-top: 14px;
  }

  /* All card images hidden; cards shrink to title-only pill */
  .rnd-casestudies .rnd-cs__card-image  { display: none; }
  .rnd-casestudies .rnd-cs__item-card   { padding: 8px 14px; border-radius: 6px; }
  .rnd-casestudies .rnd-cs__card-body   { padding: 0; }
  .rnd-casestudies .rnd-cs__card-title  { font-size: 0.78rem; font-weight: 700; margin: 0; }
  .rnd-casestudies .rnd-cs__card-summary,
  .rnd-casestudies .rnd-cs__card-cta    { display: none; }

  /* Content image: wide-short ratio */
  .rnd-casestudies .rnd-cs__image { aspect-ratio: 16 / 7; height: auto; }
}


/* ── Hide commercial developments section on mobile ─────────────────── */
@media (max-width: 767px) {
  .front-page .commercial-split,
  section.section--mid:has(.commercial-split) { display: none; }
}

@media (max-width: 767px) {
  .commercial-split { display: none; }
  .commercial-split + * { margin-top: 0; }
}

@media (max-width: 767px) {
  section:has(.commercial-split) { display: none; }
}


/* ── Case study nav cards: badge + title only, no summary clutter ────── */
@media (min-width: 700px) {
  .rnd-casestudies .rnd-cs__card-summary { display: none; }
  .rnd-casestudies .rnd-cs__card-cta     { display: none; }
  .rnd-casestudies .rnd-cs__badge        { font-size: 0.6rem; letter-spacing: 0.08em; }
  .rnd-casestudies .rnd-cs__card-title   { font-size: 0.85rem; line-height: 1.35; margin: 6px 0 0; color: rgba(255,255,255,0.88); }
  .rnd-casestudies .rnd-cs__item-card    { padding: 14px 16px; }

  /* Inactive card: subtle hover */
  .rnd-casestudies .rnd-cs__item-card:hover .rnd-cs__card-title { color: var(--white); }

  /* Active card: stronger highlight */
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-card {
    border-left-width: 3px;
    padding-left: 13px;
  }
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__card-title { color: var(--white); }
}

/* ── PLASTERING SERVICES TABS — v1.5.41 ──────────────────────────────── */
.pls-svctabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.pls-svctabs__tab {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  letter-spacing: 0.01em;
  font-family: inherit;
  line-height: 1;
}
.pls-svctabs__tab:hover {
  border-color: var(--accent);
  color: var(--charcoal);
}
.pls-svctabs__tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--deep-charcoal);
}
.pls-svctabs__panel {
  animation: pls-tab-in 0.25s ease both;
}
@keyframes pls-tab-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pls-svctabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  padding: 36px 40px;
  align-items: start;
}
.pls-svctabs__panel-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 12px;
}
.pls-svctabs__panel-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}
.pls-svctabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pls-svctabs__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
}
.pls-svctabs__list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .pls-svctabs__panel-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 22px;
  }
  .pls-svctabs__tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ── CASE STUDY NAV: hide active card from left col, add thumbnails — v1.5.42 */
@media (min-width: 700px) {
  /* Active item's nav card hidden from left — stops double-showing */
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-card {
    display: none !important;
  }

  /* Right panel spans the 3 inactive rows only (was 1/5, now 1/4) */
  .rnd-casestudies .rnd-cs__item.is-active .rnd-cs__item-main {
    grid-row: 1 / 4;
  }

  /* Thumbnail image: compact strip at top of each nav card */
  .rnd-casestudies .rnd-cs__card-image {
    display: block;
    height: 82px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    background: var(--graphite);
  }
  .rnd-casestudies .rnd-cs__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
  }
  .rnd-casestudies .rnd-cs__item-card:hover .rnd-cs__card-img {
    transform: scale(1.05);
  }

  /* Card: remove padding from wrapper, move it to body only */
  .rnd-casestudies .rnd-cs__item-card {
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
  }
  .rnd-casestudies .rnd-cs__card-body {
    padding: 10px 14px 12px;
  }
}
