:root {
  --sfl-ink: #111b17;
  --sfl-ink-deep: #0a110e;
  --sfl-forest: #1d392d;
  --sfl-forest-light: #315442;
  --sfl-gold: #c6a15b;
  --sfl-gold-light: #dfc77f;
  --sfl-ivory: #f3efe5;
  --sfl-paper: #fbf9f3;
  --sfl-white: #ffffff;
  --sfl-text: #202a25;
  --sfl-muted: #667169;
  --sfl-line: rgba(17, 27, 23, 0.15);
  --sfl-line-light: rgba(255, 255, 255, 0.18);
  --sfl-shadow-sm: 0 12px 32px rgba(10, 17, 14, 0.09);
  --sfl-shadow-lg: 0 28px 80px rgba(10, 17, 14, 0.2);
  --sfl-max: 1320px;
  --sfl-reading: 760px;
  --sfl-gutter: clamp(18px, 4vw, 58px);
  --sfl-section: clamp(76px, 9vw, 132px);
  --sfl-header-height: 76px;
  --sfl-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes sfl-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sfl-spin {
  to {
    transform: rotate(360deg);
  }
}

body.sfl-site {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--sfl-ivory);
  color: var(--sfl-text);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.sfl-site *,
body.sfl-site *::before,
body.sfl-site *::after {
  box-sizing: border-box;
}

body.sfl-site :where(main, section, article, aside, header, footer, nav, div) {
  min-width: 0;
}

body.sfl-site :where(img, svg, video, canvas, iframe) {
  display: block;
  max-width: 100%;
}

body.sfl-site img {
  height: auto;
}

body.sfl-site :where(a, button, input, select, textarea) {
  font: inherit;
}

body.sfl-site a {
  color: inherit;
  text-decoration: none;
}

body.sfl-site button {
  color: inherit;
}

body.sfl-site :where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--sfl-gold);
  outline-offset: 3px;
}

body.sfl-site ::selection {
  background: var(--sfl-gold-light);
  color: var(--sfl-ink-deep);
}

body.sfl-site .sfe-wrap {
  width: min(calc(100% - (var(--sfl-gutter) * 2)), var(--sfl-max));
  margin-inline: auto;
}

body.sfl-site :where(#enquiry-form, [id^="category-"], [id^="range-"]) {
  scroll-margin-top: calc(var(--sfl-header-height) + 28px);
}

body.sfl-site.admin-bar :where(#enquiry-form, [id^="category-"], [id^="range-"], .sfe-sector-feature) {
  scroll-margin-top: calc(var(--sfl-header-height) + 60px);
}

body.sfl-site .sfe-skip {
  position: fixed;
  top: 12px;
  left: 14px;
  z-index: 10000;
  padding: 11px 17px;
  background: var(--sfl-white);
  color: var(--sfl-ink);
  font-weight: 800;
  box-shadow: var(--sfl-shadow-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

body.sfl-site .sfe-skip:focus {
  transform: translateY(0);
}

body.sfl-site .sfe-noscript-nav {
  width: 100%;
  min-height: 52px;
  padding: 9px var(--sfl-gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--sfl-forest);
  color: var(--sfl-white);
  font-size: 12px;
}

body.sfl-site .sfe-noscript-nav > a {
  padding: 6px 0;
  color: var(--sfl-white);
  font-weight: 750;
}

body.sfl-site .sfe-noscript-nav > a:hover,
body.sfl-site .sfe-noscript-nav > a:focus-visible {
  color: var(--sfl-gold-light);
}

body.sfl-site .sfe-noscript-nav form {
  margin-left: clamp(4px, 2vw, 22px);
  display: grid;
  grid-template-columns: auto minmax(90px, 180px) auto;
  align-items: center;
  gap: 7px;
}

body.sfl-site .sfe-noscript-nav label {
  font-weight: 750;
}

body.sfl-site .sfe-noscript-nav input {
  width: 100%;
  min-width: 0;
  height: 34px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: var(--sfl-white);
  color: var(--sfl-ink);
}

body.sfl-site .sfe-noscript-nav button {
  min-width: 38px;
  height: 34px;
  padding-inline: 10px;
  border: 1px solid var(--sfl-gold);
  border-radius: 0;
  background: var(--sfl-gold);
  color: var(--sfl-ink-deep);
  cursor: pointer;
  font-weight: 800;
}

/* Header and navigation */
body.sfl-site .sfe-topbar {
  position: relative;
  z-index: 102;
  background: var(--sfl-ink-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.sfl-site .sfe-topbar .sfe-wrap {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.sfl-site .sfe-topbar .sfe-wrap > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

body.sfl-site .sfe-topbar a {
  color: var(--sfl-gold-light);
  transition: color 0.2s ease;
}

body.sfl-site .sfe-topbar a:hover {
  color: var(--sfl-white);
}

body.sfl-site .sfe-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--sfl-header-height);
  border-bottom: 1px solid rgba(17, 27, 23, 0.1);
  background: rgba(251, 249, 243, 0.95);
  box-shadow: 0 8px 35px rgba(10, 17, 14, 0.04);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

body.sfl-site.admin-bar .sfe-header {
  top: 32px;
}

body.sfl-site .sfe-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.5vw, 38px);
}

body.sfl-site .sfe-logo {
  flex: 0 0 auto;
  min-width: 176px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--sfl-ink);
}

body.sfl-site .sfe-logo img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}

body.sfl-site .sfe-logo > span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

body.sfl-site .sfe-logo b {
  font: 800 18px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.17em;
}

body.sfl-site .sfe-logo small {
  margin-top: 7px;
  color: var(--sfl-muted);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.sfl-site .sfe-nav > nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
  color: #27322d;
  font-size: 13px;
  font-weight: 700;
}

body.sfl-site .sfe-nav > nav > a,
body.sfl-site .sfe-dropdown > a {
  min-height: 44px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

body.sfl-site .sfe-nav > nav > a::after,
body.sfl-site .sfe-dropdown > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--sfl-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--sfl-ease);
}

body.sfl-site .sfe-nav > nav > a:hover::after,
body.sfl-site .sfe-nav > nav > a:focus-visible::after,
body.sfl-site .sfe-dropdown:hover > a::after,
body.sfl-site .sfe-dropdown:focus-within > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

body.sfl-site .sfe-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

body.sfl-site .sfe-dropdown > a i {
  margin-left: 6px;
  color: var(--sfl-gold);
  font-style: normal;
  transition: transform 0.2s ease;
}

body.sfl-site .sfe-dropdown > a > span {
  margin-left: 6px;
  color: var(--sfl-gold);
  font-size: 15px;
  transition: transform 0.2s ease;
}

body.sfl-site .sfe-dropdown:hover > a i,
body.sfl-site .sfe-dropdown:focus-within > a i,
body.sfl-site .sfe-dropdown:hover > a > span,
body.sfl-site .sfe-dropdown:focus-within > a > span,
body.sfl-site .sfe-dropdown.is-open > a > span {
  transform: rotate(180deg);
}

body.sfl-site .sfe-mega {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(790px, calc(100vw - (var(--sfl-gutter) * 2)));
  padding: 34px 36px 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
  border-top: 3px solid var(--sfl-gold);
  background: var(--sfl-ink);
  color: var(--sfl-white);
  box-shadow: var(--sfl-shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-48%, 14px);
  transition: opacity 0.22s ease, transform 0.32s var(--sfl-ease), visibility 0.22s ease;
}

body.sfl-site .sfe-dropdown:hover .sfe-mega,
body.sfl-site .sfe-dropdown:focus-within .sfe-mega,
body.sfl-site .sfe-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-48%, 0);
}

body.sfl-site .sfe-mega > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

body.sfl-site .sfe-mega small {
  margin-bottom: 11px;
  color: var(--sfl-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.sfl-site .sfe-mega a {
  width: 100%;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

body.sfl-site .sfe-mega a:hover,
body.sfl-site .sfe-mega a:focus-visible {
  color: var(--sfl-white);
  transform: translateX(4px);
}

body.sfl-site .sfe-nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.sfl-site .sfe-search-button,
body.sfl-site .sfe-menu-button {
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.sfl-site .sfe-search-button {
  padding: 9px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--sfl-ink);
  font-size: 12px;
  font-weight: 800;
}

body.sfl-site .sfe-search-button svg,
body.sfl-site .sfe-search-input svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

body.sfl-site .sfe-quote {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sfl-forest);
  color: var(--sfl-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.sfl-site .sfe-quote:hover {
  background: var(--sfl-ink-deep);
  transform: translateY(-1px);
}

body.sfl-site .sfe-menu-button {
  display: none;
  padding: 10px;
}

body.sfl-site .sfe-menu-button span {
  width: 23px;
  height: 1.5px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.sfl-site .sfe-menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}

body.sfl-site .sfe-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

body.sfl-site .sfe-menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

body.sfl-site .screen-reader-text {
  width: 1px;
  height: 1px;
  position: absolute;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

/* Type, buttons and shared sections */
body.sfl-site .sfe-section {
  padding-block: var(--sfl-section);
}

body.sfl-site .sfe-section h2,
body.sfl-site .sfe-band h2,
body.sfl-site .sfe-cta h2,
body.sfl-site .sfe-contact-grid h2,
body.sfl-site .sfe-projects h2,
body.sfl-site .sfe-categories h2,
body.sfl-site .sfe-sectors h2 {
  max-width: 900px;
  margin: 14px 0 24px;
  color: var(--sfl-ink);
  font: 750 clamp(38px, 5vw, 68px)/1.02 "Manrope", Arial, sans-serif;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

body.sfl-site .sfe-dark h2,
body.sfl-site .sfe-band h2,
body.sfl-site .sfe-cta h2,
body.sfl-site .sfe-categories h2 {
  color: var(--sfl-white);
}

body.sfl-site .sfe-categories .sfe-eyebrow,
body.sfl-site .sfe-categories .sfe-kicker {
  color: var(--sfl-gold-light);
}

body.sfl-site .sfe-categories :where(.sfe-heading, .sfe-catalogue-tools) p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

body.sfl-site .sfe-categories .sfe-btn-outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--sfl-white);
}

body.sfl-site .sfe-categories .sfe-btn-outline:hover {
  border-color: var(--sfl-gold);
  background: var(--sfl-gold);
  color: var(--sfl-ink-deep);
}

body.sfl-site .sfe-eyebrow,
body.sfl-site .sfe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sfl-forest);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body.sfl-site .sfe-eyebrow::before,
body.sfl-site .sfe-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

body.sfl-site .sfe-eyebrow.light,
body.sfl-site .sfe-kicker.light,
body.sfl-site .sfe-dark .sfe-eyebrow,
body.sfl-site .sfe-band .sfe-eyebrow,
body.sfl-site .sfe-cta .sfe-eyebrow {
  color: var(--sfl-gold-light);
}

body.sfl-site .sfe-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

body.sfl-site .sfe-btn {
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.25s var(--sfl-ease);
}

body.sfl-site .sfe-btn:hover {
  transform: translateY(-2px);
}

body.sfl-site .sfe-btn-primary {
  border-color: var(--sfl-gold);
  background: var(--sfl-gold);
  color: var(--sfl-ink-deep);
}

body.sfl-site .sfe-btn-primary:hover {
  border-color: var(--sfl-gold-light);
  background: var(--sfl-gold-light);
}

body.sfl-site .sfe-btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.07);
  color: var(--sfl-white);
}

body.sfl-site .sfe-btn-ghost:hover {
  border-color: var(--sfl-white);
  background: var(--sfl-white);
  color: var(--sfl-ink);
}

body.sfl-site .sfe-btn-outline {
  border-color: var(--sfl-ink);
  background: transparent;
  color: var(--sfl-ink);
}

body.sfl-site .sfe-btn-outline:hover {
  background: var(--sfl-ink);
  color: var(--sfl-white);
}

body.sfl-site .sfe-text-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--sfl-forest);
  font-weight: 800;
  line-height: 1.45;
  transition: color 0.2s ease, gap 0.2s ease;
}

body.sfl-site .sfe-text-link:hover {
  gap: 13px;
  color: var(--sfl-ink);
}

/* Photo-led heroes */
body.sfl-site .sfe-hero,
body.sfl-site .sfe-page-hero {
  min-height: clamp(650px, calc(100svh - 107px), 850px);
  padding-block: clamp(86px, 11vh, 140px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--sfl-ink);
  background-image:
    linear-gradient(90deg, rgba(7, 14, 11, 0.95) 0%, rgba(11, 25, 19, 0.82) 48%, rgba(11, 25, 19, 0.18) 100%),
    var(--hero);
  background-position: center;
  background-size: cover;
  color: var(--sfl-white);
}

body.sfl-site .sfe-hero::before,
body.sfl-site .sfe-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 35%, rgba(0, 0, 0, 0.36)),
    radial-gradient(circle at 22% 35%, rgba(198, 161, 91, 0.08), transparent 38%);
  pointer-events: none;
}

body.sfl-site .sfe-hero::after,
body.sfl-site .sfe-page-hero::after {
  content: "";
  position: absolute;
  right: var(--sfl-gutter);
  bottom: 0;
  z-index: 0;
  width: 1px;
  height: 22%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

body.sfl-site .sfe-hero-inner,
body.sfl-site .sfe-page-hero > .sfe-wrap {
  position: relative;
  z-index: 1;
}

body.sfl-site .sfe-hero h1,
body.sfl-site .sfe-page-hero h1 {
  max-width: 990px;
  margin: 22px 0 24px;
  color: var(--sfl-white);
  font: 750 clamp(54px, 7.1vw, 100px)/0.94 "Manrope", Arial, sans-serif;
  letter-spacing: -0.066em;
  text-wrap: balance;
}

body.sfl-site .sfe-hero h1 em {
  color: var(--sfl-gold-light);
  font-style: normal;
}

body.sfl-site .sfe-hero p,
body.sfl-site .sfe-page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.65vw, 21px);
  line-height: 1.6;
}

body.sfl-site .sfe-page-hero {
  min-height: clamp(500px, 67vh, 650px);
  padding-block: clamp(90px, 11vw, 150px);
}

body.sfl-site .sfe-page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.2vw, 84px);
}

body.sfl-site .sfe-category-hero,
body.sfl-site .sfe-product-hero {
  min-height: clamp(530px, 72vh, 690px);
}

body.sfl-site .sfe-trust {
  max-width: 850px;
  margin-top: clamp(48px, 7vh, 76px);
  padding-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
}

body.sfl-site .sfe-trust span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.sfl-site .sfe-trust b {
  margin-bottom: 2px;
  color: var(--sfl-white);
  font: 750 18px/1.35 "Manrope", Arial, sans-serif;
}

body.sfl-site .sfe-notice {
  padding: 13px var(--sfl-gutter);
  border-bottom: 1px solid rgba(17, 27, 23, 0.2);
  background: var(--sfl-gold-light);
  color: var(--sfl-ink-deep);
  font-weight: 800;
  text-align: center;
}

body.sfl-site .sfe-notice-error {
  background: #7d2c28;
  color: var(--sfl-white);
}

/* Editorial content sections */
body.sfl-site .sfe-intro {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(17, 27, 23, 0.075) calc(50% - 1px), rgba(17, 27, 23, 0.075) 50%, transparent 50%),
    var(--sfl-ivory);
}

body.sfl-site .sfe-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(48px, 8vw, 118px);
}

body.sfl-site .sfe-split > * {
  min-width: 0;
}

body.sfl-site .sfe-split p {
  max-width: var(--sfl-reading);
  color: var(--sfl-muted);
}

body.sfl-site .sfe-lead {
  margin-top: 0;
  color: var(--sfl-text) !important;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.52;
}

body.sfl-site .sfe-dark {
  position: relative;
  overflow: hidden;
  background: var(--sfl-ink);
  color: var(--sfl-white);
}

body.sfl-site .sfe-dark::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12vw;
  width: 48vw;
  height: 100%;
  opacity: 0.22;
  background: linear-gradient(135deg, transparent 35%, rgba(198, 161, 91, 0.22));
  transform: skewX(-12deg);
  pointer-events: none;
}

body.sfl-site .sfe-dark > .sfe-wrap {
  position: relative;
}

body.sfl-site .sfe-heading,
body.sfl-site .sfe-catalogue-tools,
body.sfl-site .sfe-section-head {
  margin-bottom: clamp(35px, 5vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

body.sfl-site .sfe-heading > div,
body.sfl-site .sfe-catalogue-tools > div,
body.sfl-site .sfe-section-head > div {
  min-width: 0;
}

body.sfl-site .sfe-heading h2,
body.sfl-site .sfe-catalogue-tools h2,
body.sfl-site .sfe-section-head h2 {
  margin-bottom: 0;
}

body.sfl-site .sfe-heading p,
body.sfl-site .sfe-section-head p {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--sfl-muted);
}

body.sfl-site .sfe-heading > a,
body.sfl-site .sfe-section-head > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--sfl-forest);
  font-size: 13px;
  font-weight: 800;
}

body.sfl-site .sfe-dark .sfe-heading > a,
body.sfl-site .sfe-categories .sfe-heading > a,
body.sfl-site .sfe-dark .sfe-section-head > a {
  color: var(--sfl-gold-light);
}

body.sfl-site .sfe-card-grid {
  display: grid;
  gap: 16px;
}

body.sfl-site .sfe-card-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.sfl-site .sfe-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.sfl-site .sfe-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Photo category cards */
body.sfl-site .sfe-categories {
  position: relative;
  background: var(--sfl-ink);
  color: var(--sfl-white);
}

body.sfl-site .sfe-photo-card {
  min-height: clamp(390px, 38vw, 530px);
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--sfl-forest);
  background-image:
    linear-gradient(180deg, rgba(5, 12, 9, 0.06), rgba(5, 12, 9, 0.18) 40%, rgba(5, 12, 9, 0.94) 100%),
    var(--photo);
  background-position: center;
  background-size: cover;
  color: var(--sfl-white);
}

body.sfl-site .sfe-photo-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(145deg, rgba(29, 57, 45, 0.08), rgba(29, 57, 45, 0.74));
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.sfl-site .sfe-photo-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

body.sfl-site .sfe-photo-card:hover::before,
body.sfl-site .sfe-photo-card:focus-visible::before {
  opacity: 1;
}

body.sfl-site .sfe-photo-card > * {
  position: relative;
  z-index: 1;
}

body.sfl-site .sfe-photo-card .num,
body.sfl-site .sfe-photo-card .sfe-card-number {
  color: var(--sfl-gold-light);
  font: 700 12px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.13em;
}

body.sfl-site .sfe-photo-card h3 {
  margin: 0 0 10px;
  color: var(--sfl-white);
  font: 700 clamp(23px, 2.1vw, 31px)/1.1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.035em;
}

body.sfl-site .sfe-photo-card p {
  max-width: 38ch;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.58;
}

body.sfl-site .sfe-photo-card b {
  color: var(--sfl-gold-light);
  font-size: 12px;
  letter-spacing: 0.01em;
}

/* Project / installation example gallery */
body.sfl-site .sfe-projects {
  background: var(--sfl-paper);
}

body.sfl-site .sfe-projects-title {
  scroll-margin-top: calc(var(--sfl-header-height) + 24px);
}

body.sfl-site .sfe-project-grid,
body.sfl-site .sfe-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(190px, 18vw, 270px);
  gap: 12px;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) {
  grid-column: span 4;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: var(--sfl-forest);
  color: var(--sfl-white);
  cursor: pointer;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):first-child {
  grid-column: span 7;
  grid-row: span 2;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(2),
body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(3) {
  grid-column: span 5;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(n + 4) {
  grid-column: span 4;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  inset: 0;
  object-fit: cover;
  transition: transform 0.7s var(--sfl-ease), filter 0.4s ease;
}

body.sfl-site .sfe-project-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}

body.sfl-site .sfe-project-image img {
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):focus-within {
  outline: 3px solid var(--sfl-gold);
  outline-offset: -6px;
}

body.sfl-site .sfe-project-image:focus-visible {
  outline: 0;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project)::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 9, 0.04) 25%, rgba(5, 12, 9, 0.9) 100%);
  pointer-events: none;
  transition: background 0.35s ease;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):hover img,
body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):focus-visible img {
  transform: scale(1.045);
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) > :where(div, span, figcaption) {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(20px, 2.6vw, 34px);
}

body.sfl-site .sfe-project-copy {
  z-index: 2;
  pointer-events: none;
}

body.sfl-site .sfe-project-copy a {
  pointer-events: auto;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) small {
  display: block;
  margin-bottom: 7px;
  color: var(--sfl-gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.sfl-site .sfe-project-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--sfl-gold-light);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) h3 {
  margin: 0;
  color: var(--sfl-white);
  font: 700 clamp(20px, 2vw, 29px)/1.14 "Manrope", Arial, sans-serif;
  letter-spacing: -0.03em;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) h3 a {
  color: inherit;
}

body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

@media (min-width: 1025px) {
  body.sfl-site .sfe-project-grid > .sfe-project-card:nth-child(4):last-child {
    grid-column: span 12;
  }

  body.sfl-site .sfe-project-grid > .sfe-project-card:nth-child(4):nth-last-child(2),
  body.sfl-site .sfe-project-grid > .sfe-project-card:nth-child(5):last-child {
    grid-column: span 6;
  }
}

/* Sector images */
body.sfl-site .sfe-sectors {
  background: var(--sfl-ivory);
}

body.sfl-site .sfe-sectors.sfe-dark {
  background: var(--sfl-ink);
  color: var(--sfl-white);
}

body.sfl-site .sfe-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.sfl-site .sfe-sector-grid article,
body.sfl-site .sfe-sector-grid > a,
body.sfl-site .sfe-sector-card {
  min-height: clamp(340px, 34vw, 470px);
  padding: clamp(22px, 2.8vw, 32px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-color: var(--sfl-forest);
  background-image: linear-gradient(180deg, rgba(5, 12, 9, 0.02) 20%, rgba(5, 12, 9, 0.82) 100%), var(--photo);
  background-position: center;
  background-size: cover;
  color: var(--sfl-white);
}

body.sfl-site .sfe-sector-grid article::after,
body.sfl-site .sfe-sector-grid > a::after,
body.sfl-site .sfe-sector-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(29, 57, 45, 0.42);
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.sfl-site .sfe-sector-grid article:hover::after,
body.sfl-site .sfe-sector-grid > a:hover::after,
body.sfl-site .sfe-sector-grid > a:focus-visible::after,
body.sfl-site .sfe-sector-card:hover::after {
  opacity: 1;
}

body.sfl-site .sfe-sector-grid span,
body.sfl-site .sfe-sector-grid > a span,
body.sfl-site .sfe-sector-card h3 {
  position: relative;
  margin: 0;
  color: var(--sfl-white);
  font: 700 clamp(19px, 1.9vw, 25px)/1.18 "Manrope", Arial, sans-serif;
  letter-spacing: -0.025em;
}

/* Brand / credibility strip */
body.sfl-site .sfe-brands,
body.sfl-site .sfe-brand-strip {
  padding-block: 36px;
  border-block: 1px solid var(--sfl-line);
  background: var(--sfl-paper);
}

body.sfl-site .sfe-brand-strip > .sfe-wrap {
  display: grid;
  grid-template-columns: minmax(190px, 1.45fr) repeat(5, minmax(95px, 1fr));
  align-items: center;
  gap: 1px;
  background: var(--sfl-line);
}

body.sfl-site .sfe-brand-strip > .sfe-wrap > * {
  min-height: 68px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sfl-paper);
  color: #536058;
  font: 800 11px/1.3 "Manrope", Arial, sans-serif;
  letter-spacing: 0.07em;
  text-align: center;
}

body.sfl-site .sfe-brand-strip > .sfe-wrap > span:first-child {
  justify-content: flex-start;
  color: var(--sfl-muted);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-align: left;
  text-transform: uppercase;
}

body.sfl-site .sfe-brand-grid,
body.sfl-site .sfe-brand-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 1px;
  background: var(--sfl-line);
}

body.sfl-site .sfe-brand-grid > *,
body.sfl-site .sfe-brand-list > * {
  min-height: 76px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sfl-paper);
  color: var(--sfl-muted);
  font: 800 12px/1.2 "Manrope", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

body.sfl-site .sfe-brand-grid img,
body.sfl-site .sfe-brand-list img {
  max-width: 120px;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
}

/* Enquiry process band */
body.sfl-site .sfe-band {
  padding-block: clamp(76px, 8vw, 112px);
  position: relative;
  overflow: hidden;
  background: var(--sfl-forest);
  color: var(--sfl-white);
}

body.sfl-site .sfe-band::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -8%;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(198, 161, 91, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(198, 161, 91, 0.035), 0 0 0 140px rgba(198, 161, 91, 0.025);
  pointer-events: none;
}

body.sfl-site .sfe-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(50px, 8vw, 118px);
}

body.sfl-site .sfe-band h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.8vw, 63px);
}

body.sfl-site .sfe-steps {
  display: grid;
}

body.sfl-site .sfe-steps > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

body.sfl-site .sfe-steps > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

body.sfl-site .sfe-steps b {
  color: var(--sfl-gold-light);
  font: 700 11px/1.6 "Manrope", Arial, sans-serif;
  letter-spacing: 0.12em;
}

body.sfl-site .sfe-steps span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
}

body.sfl-site .sfe-steps strong {
  margin-bottom: 3px;
  color: var(--sfl-white);
  font: 700 18px/1.35 "Manrope", Arial, sans-serif;
}

/* Homepage product-support feature */
body.sfl-site .sfe-support-split {
  position: relative;
  overflow: hidden;
  background: var(--sfl-ivory);
}

body.sfl-site .sfe-support-split::after {
  content: "";
  width: 22vw;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 13%;
  background: var(--sfl-gold);
  opacity: 0.55;
}

body.sfl-site .sfe-support-split .sfe-split {
  align-items: center;
}

body.sfl-site .sfe-support-photo {
  min-height: clamp(480px, 51vw, 690px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sfl-shadow-lg);
}

body.sfl-site .sfe-support-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 -90px 100px rgba(7, 14, 11, 0.13);
  pointer-events: none;
}

body.sfl-site .sfe-support-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

/* Photo-backed end panel */
body.sfl-site .sfe-final-cta {
  min-height: clamp(520px, 68vh, 720px);
  padding-block: clamp(86px, 11vw, 145px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--sfl-ink);
  background-image:
    linear-gradient(90deg, rgba(6, 13, 10, 0.96) 0%, rgba(6, 13, 10, 0.79) 50%, rgba(6, 13, 10, 0.25) 100%),
    var(--hero);
  background-position: center;
  background-size: cover;
  color: var(--sfl-white);
}

body.sfl-site .sfe-final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 9, 7, 0.3));
}

body.sfl-site .sfe-final-cta h2 {
  max-width: 900px;
  margin: 16px 0 22px;
  color: var(--sfl-white);
  font: 750 clamp(39px, 5.7vw, 76px)/1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

body.sfl-site .sfe-final-cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.7vw, 20px);
}

/* Breadcrumbs and compact product title block */
body.sfl-site .sfe-breadcrumbs {
  max-width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.sfl-site .sfe-breadcrumbs a {
  color: var(--sfl-gold-light);
}

body.sfl-site .sfe-breadcrumbs a:hover {
  color: var(--sfl-white);
}

body.sfl-site .sfe-product-top {
  padding-block: clamp(60px, 7vw, 94px);
  border-bottom: 1px solid var(--sfl-line);
  background: var(--sfl-paper);
}

body.sfl-site .sfe-product-top .sfe-breadcrumbs {
  margin-bottom: 38px;
  color: var(--sfl-muted);
}

body.sfl-site .sfe-product-top .sfe-breadcrumbs a {
  color: var(--sfl-forest);
}

body.sfl-site .sfe-product-top > .sfe-wrap > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

body.sfl-site .sfe-product-top h1 {
  max-width: 910px;
  margin: 13px 0 0;
  color: var(--sfl-ink);
  font: 750 clamp(41px, 6vw, 76px)/1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

body.sfl-site .sfe-product-top .sfe-btn {
  flex: 0 0 auto;
}

body.sfl-site .sfe-detail-section {
  padding-block: clamp(38px, 6vw, 76px);
  background: var(--sfl-ivory);
}

body.sfl-site .sfe-detail-section .sfe-original-content {
  margin-block: 0;
}

/* Sector landing-page rows */
body.sfl-site .sfe-sector-list {
  display: grid;
  gap: clamp(56px, 8vw, 110px);
}

body.sfl-site .sfe-sector-feature {
  scroll-margin-top: calc(var(--sfl-header-height) + 25px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(38px, 7vw, 100px);
}

body.sfl-site .sfe-sector-feature:nth-child(even) {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

body.sfl-site .sfe-sector-feature:nth-child(even) > div:first-child {
  order: 2;
}

body.sfl-site .sfe-sector-feature > div:first-child {
  min-height: clamp(400px, 48vw, 640px);
  position: relative;
  overflow: hidden;
  background: var(--sfl-forest);
  box-shadow: var(--sfl-shadow-sm);
}

body.sfl-site .sfe-sector-feature > div:first-child img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

body.sfl-site .sfe-sector-feature h2 {
  margin: 14px 0 18px;
  color: var(--sfl-ink);
  font: 750 clamp(33px, 4.5vw, 58px)/1.03 "Manrope", Arial, sans-serif;
  letter-spacing: -0.052em;
}

body.sfl-site .sfe-sector-feature p {
  max-width: 560px;
  color: var(--sfl-muted);
  font-size: 17px;
}

/* Values / proof cards */
body.sfl-site .sfe-values-grid {
  margin-top: clamp(56px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sfl-line);
  background: var(--sfl-line);
}

body.sfl-site .sfe-values-grid article {
  min-height: 260px;
  padding: clamp(27px, 3.5vw, 42px);
  background: var(--sfl-paper);
}

body.sfl-site .sfe-values-grid b {
  color: var(--sfl-forest);
  font-size: 11px;
  letter-spacing: 0.14em;
}

body.sfl-site .sfe-values-grid h3 {
  margin: 35px 0 13px;
  color: var(--sfl-ink);
  font: 700 clamp(22px, 2.3vw, 29px)/1.15 "Manrope", Arial, sans-serif;
  letter-spacing: -0.035em;
}

body.sfl-site .sfe-values-grid p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
}

/* Genuine project detail gallery */
body.sfl-site .sfe-installation-gallery {
  margin-top: clamp(35px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(230px, 26vw, 360px);
  gap: 12px;
}

body.sfl-site .sfe-installation-gallery > a {
  position: relative;
  overflow: hidden;
  background: var(--sfl-forest);
}

body.sfl-site .sfe-installation-gallery > a:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

body.sfl-site .sfe-installation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--sfl-ease);
}

body.sfl-site .sfe-installation-gallery > a:hover img,
body.sfl-site .sfe-installation-gallery > a:focus-visible img {
  transform: scale(1.04);
}

/* Spam honeypot must remain available to submission logic but never affect layout. */
body.sfl-site .sfe-hp {
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  left: -10000px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Product catalogue and category pages */
body.sfl-site .sfe-catalogue-tools {
  margin-bottom: clamp(34px, 5vw, 56px);
}

body.sfl-site .sfe-product-card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 27, 23, 0.1);
  background: var(--sfl-paper);
  box-shadow: 0 0 0 rgba(10, 17, 14, 0);
  transition: transform 0.35s var(--sfl-ease), box-shadow 0.35s ease, border-color 0.25s ease;
}

body.sfl-site .sfe-product-card:hover,
body.sfl-site .sfe-product-card:focus-visible {
  border-color: rgba(198, 161, 91, 0.52);
  box-shadow: var(--sfl-shadow-sm);
  transform: translateY(-5px);
}

body.sfl-site .sfe-product-card > img {
  width: 100%;
  height: clamp(220px, 22vw, 300px);
  object-fit: cover;
  transition: transform 0.6s var(--sfl-ease);
}

body.sfl-site .sfe-product-card-image {
  width: 100%;
  height: clamp(220px, 22vw, 300px);
  position: relative;
  overflow: hidden;
  background: var(--sfl-forest);
}

body.sfl-site .sfe-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--sfl-ease);
}

body.sfl-site .sfe-product-card:hover > img,
body.sfl-site .sfe-product-card:focus-visible > img,
body.sfl-site .sfe-product-card:hover .sfe-product-card-image img,
body.sfl-site .sfe-product-card:focus-visible .sfe-product-card-image img {
  transform: scale(1.035);
}

body.sfl-site .sfe-product-card > div {
  flex: 1;
  padding: clamp(23px, 2.5vw, 31px);
  display: flex;
  flex-direction: column;
}

body.sfl-site .sfe-product-card span {
  color: var(--sfl-forest);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.sfl-site .sfe-product-card h3 {
  margin: 9px 0 10px;
  color: var(--sfl-ink);
  font: 700 clamp(21px, 2vw, 27px)/1.16 "Manrope", Arial, sans-serif;
  letter-spacing: -0.034em;
}

body.sfl-site .sfe-product-card p {
  margin: 0 0 22px;
  color: var(--sfl-muted);
  font-size: 13.5px;
  line-height: 1.58;
}

body.sfl-site .sfe-product-card b {
  margin-top: auto;
  color: var(--sfl-forest);
  font-size: 12px;
}

body.sfl-site .sfe-range-grid {
  margin-top: clamp(48px, 7vw, 84px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sfl-line);
  background: var(--sfl-line);
}

body.sfl-site .sfe-range-grid > a {
  min-height: 190px;
  padding: clamp(24px, 3vw, 35px);
  display: flex;
  flex-direction: column;
  background: var(--sfl-paper);
  transition: background 0.25s ease, color 0.25s ease;
}

body.sfl-site .sfe-range-grid > a:hover,
body.sfl-site .sfe-range-grid > a:focus-visible {
  background: var(--sfl-forest);
  color: var(--sfl-white);
}

body.sfl-site .sfe-range-grid span {
  color: var(--sfl-forest);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.sfl-site .sfe-range-grid > a:hover span,
body.sfl-site .sfe-range-grid > a:focus-visible span {
  color: var(--sfl-gold-light);
}

body.sfl-site .sfe-range-grid h3 {
  margin: 20px 0 auto;
  color: inherit;
  font: 700 clamp(20px, 1.8vw, 25px)/1.18 "Manrope", Arial, sans-serif;
  letter-spacing: -0.03em;
}

body.sfl-site .sfe-range-grid b {
  margin-top: 18px;
  font-size: 11px;
}

body.sfl-site .sfe-feature-panel {
  margin-top: clamp(45px, 7vw, 78px);
  padding: clamp(28px, 5vw, 62px);
  border-left: 4px solid var(--sfl-gold);
  background: var(--sfl-paper);
  box-shadow: var(--sfl-shadow-sm);
}

body.sfl-site .sfe-feature-panel h3 {
  max-width: 700px;
  margin: 0 0 13px;
  color: var(--sfl-ink);
  font: 700 clamp(26px, 3vw, 38px)/1.12 "Manrope", Arial, sans-serif;
  letter-spacing: -0.04em;
}

body.sfl-site .sfe-feature-panel p {
  max-width: 760px;
  color: var(--sfl-muted);
}

body.sfl-site .sfe-feature-panel .sfe-btn-ghost {
  border-color: var(--sfl-ink);
  color: var(--sfl-ink);
}

/* Services / project support */
body.sfl-site .sfe-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--sfl-line);
  background: var(--sfl-line);
}

body.sfl-site .sfe-service-grid article {
  min-height: 300px;
  padding: clamp(27px, 3.4vw, 43px);
  background: var(--sfl-paper);
  transition: background 0.3s ease;
}

body.sfl-site .sfe-service-grid article:hover {
  background: var(--sfl-white);
}

body.sfl-site .sfe-service-grid article > b {
  color: var(--sfl-forest);
  font: 700 11px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.14em;
}

body.sfl-site .sfe-service-grid h2,
body.sfl-site .sfe-service-grid h3 {
  margin: 34px 0 14px;
  color: var(--sfl-ink);
  font: 700 clamp(23px, 2vw, 29px)/1.13 "Manrope", Arial, sans-serif;
  letter-spacing: -0.035em;
}

body.sfl-site .sfe-service-grid p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
  line-height: 1.65;
}

body.sfl-site .sfe-ticks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

body.sfl-site .sfe-ticks li {
  padding: 11px 0 11px 31px;
  position: relative;
  border-bottom: 1px solid var(--sfl-line);
  color: var(--sfl-text);
}

body.sfl-site .sfe-ticks li::before {
  content: "✓";
  position: absolute;
  top: 11px;
  left: 1px;
  color: var(--sfl-forest);
  font-weight: 900;
}

/* Full-width closing call to action */
body.sfl-site .sfe-cta {
  padding-block: clamp(82px, 10vw, 138px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--sfl-ink);
  background-image:
    linear-gradient(90deg, rgba(7, 15, 12, 0.98) 0%, rgba(7, 15, 12, 0.82) 58%, rgba(7, 15, 12, 0.48) 100%),
    url("images/commercial.jpg");
  background-position: center;
  background-size: cover;
  color: var(--sfl-white);
}

body.sfl-site .sfe-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: var(--sfl-gutter);
  bottom: 0;
  width: min(32vw, 440px);
  height: 4px;
  background: var(--sfl-gold);
}

body.sfl-site .sfe-cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 20px);
}

/* Contact details and form */
body.sfl-site .sfe-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(44px, 8vw, 112px);
}

body.sfl-site .sfe-contact-details > h2 {
  margin-top: 13px;
  font-size: clamp(36px, 4.3vw, 58px);
}

body.sfl-site .sfe-contact-details > a,
body.sfl-site .sfe-contact-details > div {
  padding: 19px 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--sfl-line);
}

body.sfl-site .sfe-contact-details > a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

body.sfl-site .sfe-contact-details > a:hover {
  padding-left: 7px;
  color: var(--sfl-forest);
}

body.sfl-site .sfe-contact-details small {
  margin-bottom: 4px;
  color: var(--sfl-forest);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.sfl-site .sfe-contact-details strong {
  color: var(--sfl-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body.sfl-site .sfe-contact-details > :where(a, div) > span:not(.sfe-eyebrow) {
  margin-top: 5px;
  color: var(--sfl-muted);
  font-size: 11px;
  font-weight: 650;
}

body.sfl-site .sfe-form {
  padding: clamp(27px, 4vw, 54px);
  border-top: 4px solid var(--sfl-gold);
  background: var(--sfl-paper);
  box-shadow: var(--sfl-shadow-sm);
}

body.sfl-site .sfe-form-head > span {
  color: var(--sfl-forest);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.sfl-site .sfe-form-head h2 {
  margin: 6px 0 31px;
  font-size: clamp(28px, 3.2vw, 39px);
}

body.sfl-site .sfe-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.sfl-site .sfe-form label {
  margin-bottom: 17px;
  display: flex;
  flex-direction: column;
  color: var(--sfl-text);
  font-size: 12px;
  font-weight: 800;
}

body.sfl-site .sfe-form :where(input, select, textarea) {
  width: 100%;
  min-height: 52px;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #c9cec8;
  border-radius: 0;
  background: var(--sfl-white);
  color: var(--sfl-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.sfl-site .sfe-form textarea {
  min-height: 138px;
  resize: vertical;
}

body.sfl-site .sfe-form :where(input, select, textarea)::placeholder {
  color: #899089;
  opacity: 1;
}

body.sfl-site .sfe-form :where(input, select, textarea):focus {
  outline: 0;
  border-color: var(--sfl-forest);
  box-shadow: 0 0 0 3px rgba(29, 57, 45, 0.12);
}

body.sfl-site .sfe-form .sfe-btn {
  width: 100%;
}

body.sfl-site .sfe-form-note {
  margin: 12px 0 0;
  color: var(--sfl-muted);
  font-size: 11px;
  text-align: center;
}

body.sfl-site .sfe-password-form {
  min-height: 42vh;
  display: grid;
  place-items: center;
}

body.sfl-site .sfe-password-form .post-password-form {
  width: min(620px, 100%);
  margin: 0;
  padding: clamp(25px, 4vw, 45px);
  border-top: 4px solid var(--sfl-gold);
  background: var(--sfl-paper);
  box-shadow: var(--sfl-shadow-sm);
}

body.sfl-site .sfe-password-form .post-password-form p {
  margin: 0 0 17px;
}

body.sfl-site .sfe-password-form .post-password-form label {
  display: grid;
  gap: 8px;
  color: var(--sfl-ink);
  font-weight: 800;
}

body.sfl-site .sfe-password-form .post-password-form input[type="password"] {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--sfl-line);
  border-radius: 0;
  background: var(--sfl-white);
}

body.sfl-site .sfe-password-form .post-password-form input[type="submit"] {
  min-height: 48px;
  margin-top: 10px;
  padding: 12px 20px;
  border: 1px solid var(--sfl-forest);
  border-radius: 0;
  background: var(--sfl-forest);
  color: var(--sfl-white);
  cursor: pointer;
  font-weight: 800;
}

/* Existing product-page content, retained below the new product hero */
body.sfl-site .sfe-original-content {
  width: min(calc(100% - (var(--sfl-gutter) * 2)), var(--sfl-max));
  margin: clamp(44px, 7vw, 90px) auto;
  padding: clamp(25px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(17, 27, 23, 0.09);
  background: var(--sfl-paper);
  box-shadow: var(--sfl-shadow-sm);
  color: var(--sfl-text);
}

body.sfl-site .sfe-original-content > :first-child:not(style):not(script),
body.sfl-site .sfe-original-content > style + * {
  margin-top: 0;
}

body.sfl-site .sfe-original-content > :last-child {
  margin-bottom: 0;
}

body.sfl-site .sfe-original-content :where(h1, h2, h3, h4, h5, h6) {
  max-width: 930px;
  color: var(--sfl-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.sfl-site .sfe-original-content h1 {
  font-size: clamp(38px, 5vw, 65px);
  line-height: 1.04;
}

body.sfl-site .sfe-original-content h2 {
  margin: clamp(38px, 6vw, 72px) 0 19px;
  font-size: clamp(29px, 3.8vw, 45px);
  line-height: 1.08;
}

body.sfl-site .sfe-original-content h3 {
  margin: 34px 0 13px;
  font-size: clamp(22px, 2.7vw, 31px);
  line-height: 1.15;
}

body.sfl-site .sfe-original-content :where(h4, h5, h6) {
  margin: 28px 0 11px;
  line-height: 1.25;
}

body.sfl-site .sfe-original-content :where(p, li) {
  color: var(--sfl-muted);
}

body.sfl-site .sfe-original-content > p,
body.sfl-site .sfe-original-content > ul,
body.sfl-site .sfe-original-content > ol {
  max-width: 900px;
}

body.sfl-site .sfe-original-content :where(ul, ol) {
  padding-left: 1.3em;
}

body.sfl-site .sfe-original-content li + li {
  margin-top: 0.35em;
}

body.sfl-site .sfe-original-content a:not(:where(.button, .wp-block-button__link, .btn-main, .btn-alt)) {
  color: var(--sfl-forest);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(29, 57, 45, 0.38);
  text-underline-offset: 0.18em;
}

body.sfl-site .sfe-original-content :where(.button, .wp-block-button__link, input[type="submit"]) {
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--sfl-forest);
  border-radius: 0;
  background: var(--sfl-forest);
  color: var(--sfl-white);
  font-weight: 800;
}

body.sfl-site .sfe-original-content :where(img, .wp-block-image img) {
  max-width: 100%;
  height: auto;
}

body.sfl-site .sfe-original-content :where(figure, .wp-block-image) {
  max-width: 100%;
  margin-inline: 0;
}

body.sfl-site .sfe-original-content figcaption {
  margin-top: 7px;
  color: var(--sfl-muted);
  font-size: 11px;
}

body.sfl-site .sfe-original-content :where(.wp-block-columns, .wp-block-gallery) {
  gap: clamp(14px, 2.5vw, 28px);
}

body.sfl-site .sfe-original-content :where(.alignwide, .alignfull) {
  max-width: 100%;
  margin-inline: 0;
}

body.sfl-site .sfe-original-content :where(table, pre, .wp-block-table) {
  max-width: 100%;
  overflow-x: auto;
}

body.sfl-site .sfe-original-content table {
  width: 100%;
  display: block;
  border-collapse: collapse;
  white-space: normal;
}

body.sfl-site .sfe-original-content :where(th, td) {
  min-width: 130px;
  padding: 11px 13px;
  border: 1px solid var(--sfl-line);
  text-align: left;
}

body.sfl-site .sfe-original-content th {
  background: var(--sfl-forest);
  color: var(--sfl-white);
}

body.sfl-site .sfe-original-content :where(iframe, video) {
  width: 100%;
  max-width: 100%;
}

body.sfl-site .sfe-original-content blockquote {
  margin: 35px 0;
  padding: 8px 0 8px 25px;
  border-left: 3px solid var(--sfl-gold);
  color: var(--sfl-ink);
  font-size: 19px;
}

/* Migrated product layouts retained from the live catalogue. */
body.sfl-site .sfe-original-content .surface-product {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--sfl-text);
}

body.sfl-site .sfe-original-content .surface-product .surface-hero {
  padding: 0 0 clamp(48px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
  border-bottom: 1px solid var(--sfl-line);
  background: transparent;
}

body.sfl-site .sfe-original-content .surface-product .surface-hero h1 {
  max-width: 820px;
  margin: 10px 0 20px;
  color: var(--sfl-ink);
  font-size: clamp(39px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

body.sfl-site .sfe-original-content .surface-product .surface-hero p {
  max-width: 710px;
  margin: 0;
  color: var(--sfl-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.62;
}

body.sfl-site .sfe-original-content .surface-product .surface-hero-media {
  min-height: clamp(390px, 42vw, 590px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--sfl-forest);
  box-shadow: var(--sfl-shadow-lg);
}

body.sfl-site .sfe-original-content .surface-product .surface-hero-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

body.sfl-site .sfe-original-content .surface-product .surface-hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

body.sfl-site .sfe-original-content .surface-product .hero-points {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
}

body.sfl-site .sfe-original-content .surface-product .hero-point {
  min-height: 54px;
  margin: 0;
  padding: 12px 14px 12px 39px;
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(17, 27, 23, 0.09);
  background: var(--sfl-ivory);
  color: var(--sfl-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

body.sfl-site .sfe-original-content .surface-product .hero-point::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 17px;
  border-radius: 50%;
  background: var(--sfl-gold);
  box-shadow: 0 0 0 4px rgba(198, 161, 91, 0.16);
}

body.sfl-site .sfe-original-content .surface-product .hero-actions {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.sfl-site .sfe-original-content .surface-product :where(.btn-main, .btn-alt) {
  min-height: 50px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sfl-forest);
  border-radius: 0;
  color: var(--sfl-ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.sfl-site .sfe-original-content .surface-product .btn-main {
  border-color: var(--sfl-forest);
  background: var(--sfl-forest);
  color: var(--sfl-white);
}

body.sfl-site .sfe-original-content .surface-product .btn-alt {
  background: transparent;
  color: var(--sfl-forest);
}

body.sfl-site .sfe-original-content .surface-product :where(.btn-main, .btn-alt):hover {
  border-color: var(--sfl-ink-deep);
  background: var(--sfl-ink-deep);
  color: var(--sfl-white);
  transform: translateY(-2px);
}

body.sfl-site .sfe-original-content .surface-product .section {
  margin: 0;
  padding: clamp(58px, 7vw, 92px) 0;
  border-bottom: 1px solid var(--sfl-line);
  background: transparent;
}

body.sfl-site .sfe-original-content .surface-product .section:last-of-type {
  border-bottom: 0;
}

body.sfl-site .sfe-original-content .surface-product .section-head {
  max-width: 870px;
  margin: 0 0 clamp(27px, 4vw, 44px);
}

body.sfl-site .sfe-original-content .surface-product .section-head h2 {
  margin: 0 0 13px;
  color: var(--sfl-ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

body.sfl-site .sfe-original-content .surface-product .section-head p {
  max-width: 750px;
  margin: 0;
  color: var(--sfl-muted);
  font-size: 16px;
}

body.sfl-site .sfe-original-content .surface-product .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

body.sfl-site .sfe-original-content .surface-product .gallery-card {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 27, 23, 0.11);
  background: var(--sfl-white);
  box-shadow: 0 9px 28px rgba(10, 17, 14, 0.06);
}

body.sfl-site .sfe-original-content .surface-product .gallery-card > :where(a, picture),
body.sfl-site .sfe-original-content .surface-product .gallery-card > img {
  width: 100%;
  height: clamp(210px, 25vw, 340px);
  flex: 0 0 auto;
  overflow: hidden;
  display: block;
}

body.sfl-site .sfe-original-content .surface-product .gallery-card > :where(a, picture) img,
body.sfl-site .sfe-original-content .surface-product .gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--sfl-ease);
}

body.sfl-site .sfe-original-content .surface-product .gallery-card:hover img {
  transform: scale(1.035);
}

body.sfl-site .sfe-original-content .surface-product .gallery-body {
  padding: clamp(19px, 2.4vw, 28px);
}

body.sfl-site .sfe-original-content .surface-product .gallery-body :where(h3, h4) {
  margin: 0 0 9px;
  color: var(--sfl-ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

body.sfl-site .sfe-original-content .surface-product .gallery-body p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
}

body.sfl-site .sfe-original-content .surface-product .gallery-title {
  margin: 0 0 9px;
  color: var(--sfl-ink);
  font: 800 clamp(18px, 2vw, 24px)/1.18 "Manrope", Arial, sans-serif;
  letter-spacing: -0.025em;
}

body.sfl-site .sfe-original-content .surface-product .gallery-text {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
  line-height: 1.55;
}

body.sfl-site .sfe-original-content .surface-product .colour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.7vw, 18px);
}

body.sfl-site .sfe-original-content .surface-product .colour-card {
  min-height: 100%;
  padding: 10px 10px 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 27, 23, 0.1);
  background: var(--sfl-white);
  color: var(--sfl-ink);
  box-shadow: 0 7px 22px rgba(10, 17, 14, 0.045);
}

body.sfl-site .sfe-original-content .surface-product .colour-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  margin-bottom: 12px;
  object-fit: cover;
}

body.sfl-site .sfe-original-content .surface-product .swatch {
  width: 100%;
  min-height: 120px;
  aspect-ratio: 1.35 / 1;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--sfl-line);
  background-color: var(--sfl-ivory);
  background-position: center;
  background-size: cover;
}

body.sfl-site .sfe-original-content .surface-product .swatch :where(img, picture),
body.sfl-site .sfe-original-content .surface-product .swatch > img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}

body.sfl-site .sfe-original-content .surface-product .colour-body {
  padding: 13px 5px 2px;
  display: grid;
  gap: 4px;
}

body.sfl-site .sfe-original-content .surface-product .colour-name {
  color: var(--sfl-ink);
  font: 800 14px/1.3 "Manrope", Arial, sans-serif;
}

body.sfl-site .sfe-original-content .surface-product :where(.colour-code, .colour-lrv) {
  color: var(--sfl-muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

body.sfl-site .sfe-original-content .surface-product .colour-card :where(h3, h4, strong) {
  margin: 0 5px;
  display: block;
  color: var(--sfl-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

body.sfl-site .sfe-original-content .surface-product .colour-card p {
  margin: 5px 5px 0;
  color: var(--sfl-muted);
  font-size: 11px;
  line-height: 1.4;
}

body.sfl-site .sfe-original-content .surface-product .spec-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--sfl-line);
  background: var(--sfl-white);
  -webkit-overflow-scrolling: touch;
}

body.sfl-site .sfe-original-content .surface-product .spec-table {
  width: 100%;
  min-width: 620px;
  display: table;
  border: 0;
  border-collapse: collapse;
  white-space: normal;
}

body.sfl-site .sfe-original-content .surface-product .spec-table :where(th, td) {
  min-width: 0;
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid var(--sfl-line);
  vertical-align: top;
}

body.sfl-site .sfe-original-content .surface-product .spec-table tr:last-child :where(th, td) {
  border-bottom: 0;
}

body.sfl-site .sfe-original-content .surface-product .spec-table th {
  width: 42%;
  background: rgba(29, 57, 45, 0.065);
  color: var(--sfl-ink);
  font-weight: 800;
}

body.sfl-site .sfe-original-content .surface-product .spec-table td {
  color: var(--sfl-muted);
}

body.sfl-site .sfe-original-content .surface-product .apps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}

body.sfl-site .sfe-original-content .surface-product .app-card {
  min-height: 132px;
  margin: 0;
  padding: 22px 19px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(17, 27, 23, 0.1);
  border-top: 3px solid var(--sfl-gold);
  background: var(--sfl-ivory);
  color: var(--sfl-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

body.sfl-site .sfe-original-content .surface-product .app-card :where(h3, h4, p, strong) {
  margin: 0;
  color: inherit;
  font: inherit;
}

body.sfl-site .sfe-original-content .surface-product .eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sfl-forest);
  font: 850 10px/1.3 "Manrope", Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

body.sfl-site .sfe-original-content .surface-product .eyebrow::before {
  content: "";
  width: 25px;
  height: 1px;
  background: var(--sfl-gold);
}

body.sfl-site .sfe-original-content .surface-product .hero-badge {
  max-width: calc(100% - 32px);
  padding: 10px 13px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 15, 12, 0.84);
  color: var(--sfl-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

body.sfl-site .sfe-original-content .surface-product .hero-badge strong {
  margin-bottom: 3px;
  display: block;
  color: var(--sfl-gold-light);
  font-size: 14px;
  line-height: 1.2;
}

body.sfl-site .sfe-original-content .surface-product .surface-hero-media .hero-badge {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-grid, .icons-grid, .note-stack, .system-grid, .guidance-wrap, .products-grid) {
  display: grid;
  align-items: stretch;
  gap: clamp(11px, 1.8vw, 20px);
}

body.sfl-site .sfe-original-content .surface-product :where(.example-grid, .system-grid, .products-grid) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .surface-product .icons-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .surface-product :where(.note-stack, .guidance-wrap) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .surface-product :where(.example-card, .icon-card, .note-box, .system-card, .guidance-card, .product-card) {
  min-width: 0;
  min-height: 100%;
  border: 1px solid rgba(17, 27, 23, 0.1);
  background: var(--sfl-white);
  box-shadow: 0 8px 26px rgba(10, 17, 14, 0.055);
  overflow-wrap: anywhere;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-card, .system-card, .product-card) {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.sfl-site .sfe-original-content .surface-product .example-card {
  min-height: 235px;
  border: 0;
  background: linear-gradient(145deg, var(--sfl-forest), var(--sfl-ink-deep));
  color: var(--sfl-white);
}

body.sfl-site .sfe-original-content .surface-product .example-card-inner {
  height: 100%;
  padding: clamp(19px, 2.3vw, 27px);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-top, .example-footer) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.sfl-site .sfe-original-content .surface-product .example-tag,
body.sfl-site .sfe-original-content .surface-product .example-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.sfl-site .sfe-original-content .surface-product .example-badge {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
}

body.sfl-site .sfe-original-content .surface-product .example-title {
  margin: 28px 0 8px;
  color: var(--sfl-white);
}

body.sfl-site .sfe-original-content .surface-product .example-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.55;
}

body.sfl-site .sfe-original-content .surface-product .example-footer {
  margin-top: 22px;
}

body.sfl-site .sfe-original-content .surface-product .example-link {
  padding: 7px 10px;
  background: var(--sfl-white);
  color: var(--sfl-ink);
  font-size: 10px;
  font-weight: 850;
}

body.sfl-site .sfe-original-content .surface-product .product-card {
  padding: clamp(19px, 2.3vw, 27px);
}

body.sfl-site .sfe-original-content .surface-product .product-card h3 {
  margin: 0 0 9px;
  color: var(--sfl-ink);
  font-size: 18px;
}

body.sfl-site .sfe-original-content .surface-product .product-card p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 13px;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-card, .system-card, .product-card) > :where(img, picture, .example-media, .example-image, .system-media, .product-media) {
  width: 100%;
  height: clamp(205px, 23vw, 315px);
  min-height: 0;
  flex: 0 0 auto;
  overflow: hidden;
  display: block;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-card, .system-card, .product-card) > :where(img, picture, .example-media, .example-image, .system-media, .product-media) img,
body.sfl-site .sfe-original-content .surface-product :where(.example-card, .system-card, .product-card) > img {
  width: 100%;
  height: 100%;
  position: static;
  object-fit: cover;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-body, .system-body, .product-body) {
  padding: clamp(19px, 2.3vw, 27px);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-title, .system-title, .product-title) {
  margin: 5px 0 9px;
  color: var(--sfl-ink);
  font: 800 clamp(18px, 2vw, 24px)/1.18 "Manrope", Arial, sans-serif;
  letter-spacing: -0.025em;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-text, .system-text, .product-text) {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 13.5px;
  line-height: 1.55;
}

body.sfl-site .sfe-original-content .surface-product :where(.system-tag, .product-tag) {
  margin: 0 0 4px;
  padding: 5px 8px;
  display: inline-flex;
  border: 1px solid rgba(29, 57, 45, 0.2);
  background: rgba(29, 57, 45, 0.055);
  color: var(--sfl-forest);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.sfl-site .sfe-original-content .surface-product .icon-card {
  min-height: 155px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 3px solid var(--sfl-gold);
  background: var(--sfl-ivory);
}

body.sfl-site .sfe-original-content .surface-product .icon-card > :where(svg, img, .icon) {
  width: 31px;
  height: 31px;
  margin-bottom: auto;
  color: var(--sfl-forest);
  object-fit: contain;
}

body.sfl-site .sfe-original-content .surface-product .icon-card :where(h3, h4, strong) {
  margin: 22px 0 5px;
  color: var(--sfl-ink);
  font: 800 15px/1.3 "Manrope", Arial, sans-serif;
}

body.sfl-site .sfe-original-content .surface-product .icon-card p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 12px;
  line-height: 1.45;
}

body.sfl-site .sfe-original-content .surface-product .note-box {
  min-height: 130px;
  padding: clamp(20px, 2.5vw, 30px);
  border-left: 4px solid var(--sfl-gold);
  background: var(--sfl-ivory);
  box-shadow: none;
}

body.sfl-site .sfe-original-content .surface-product .note-box > :first-child {
  margin-top: 0;
}

body.sfl-site .sfe-original-content .surface-product .note-box > :last-child {
  margin-bottom: 0;
}

body.sfl-site .sfe-original-content .surface-product .system-box {
  margin-block: 24px;
}

body.sfl-site .sfe-original-content .surface-product .guidance-card {
  min-height: 170px;
  padding: clamp(22px, 3vw, 34px);
  border-top: 3px solid var(--sfl-forest);
}

body.sfl-site .sfe-original-content .surface-product .guidance-card :where(h2, h3, h4) {
  margin: 0 0 10px;
  color: var(--sfl-ink);
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.15;
}

body.sfl-site .sfe-original-content .surface-product .guidance-card p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
}

body.sfl-site .sfe-original-content .surface-product :where(.example-card, .system-card, .product-card, .guidance-card) a {
  color: inherit;
  text-decoration: none;
}

body.sfl-site .sfe-original-content .surface-contact {
  display: none !important;
}

body.sfl-site .sfe-original-content :where(.surface-wrap, .surface-inner) {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

body.sfl-site .sfe-original-content :where(.surface-grid-2, .surface-grid-3, .surface-grid-4) {
  display: grid;
  align-items: stretch;
  gap: clamp(12px, 2vw, 22px);
}

body.sfl-site .sfe-original-content .surface-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .surface-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .surface-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .product {
  padding-block: clamp(38px, 5vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(30px, 5vw, 68px);
  border-bottom: 1px solid var(--sfl-line);
}

body.sfl-site .sfe-original-content .product:first-child {
  padding-top: 0;
}

body.sfl-site .sfe-original-content .product:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.sfl-site .sfe-original-content .product > * {
  min-width: 0;
}

body.sfl-site .sfe-original-content .product :where(h2, h3) {
  margin-top: 0;
}

body.sfl-site .sfe-original-content .product-media {
  min-height: clamp(330px, 36vw, 510px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--sfl-forest);
}

body.sfl-site .sfe-original-content .product-media :where(img, picture) {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

body.sfl-site .sfe-original-content .product-media picture img {
  position: static;
}

body.sfl-site .sfe-original-content :where(.features, .catalogue-grid, .use-grid, .pattern-grid, .category-grid, .group-grid, .process-grid) {
  display: grid;
  align-items: stretch;
  gap: clamp(11px, 1.8vw, 20px);
}

body.sfl-site .sfe-original-content .features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content :where(.feature-list, .meta-list) {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  list-style: none;
}

body.sfl-site .sfe-original-content :where(.feature-list, .meta-list) > * {
  min-height: 48px;
  margin: 0;
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--sfl-line);
  color: var(--sfl-text);
}

body.sfl-site .sfe-original-content :where(.feature-list, .meta-list) > *::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--sfl-gold);
}

body.sfl-site .sfe-original-content .meta-list > * {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
}

body.sfl-site .sfe-original-content .meta-list > *::before {
  display: none;
}

body.sfl-site .sfe-original-content .catalogue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content :where(.catalogue-card, .surface-card, .category-card, .group-card, .pattern-card, .use-card, .process-step, .box) {
  min-width: 0;
  border: 1px solid rgba(17, 27, 23, 0.1);
  background: var(--sfl-white);
  box-shadow: 0 8px 26px rgba(10, 17, 14, 0.055);
  overflow-wrap: anywhere;
}

body.sfl-site .sfe-original-content :where(.catalogue-card, .surface-card, .category-card, .group-card, .pattern-card, .use-card, .process-step) a {
  color: inherit;
  text-decoration: none;
}

body.sfl-site .sfe-original-content .catalogue-card {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.sfl-site .sfe-original-content .catalogue-card > :where(img, picture, a:first-child) {
  width: 100%;
  height: clamp(210px, 23vw, 310px);
  flex: 0 0 auto;
  overflow: hidden;
  display: block;
}

body.sfl-site .sfe-original-content .catalogue-card > :where(img, picture, a:first-child) img,
body.sfl-site .sfe-original-content .catalogue-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--sfl-ease);
}

body.sfl-site .sfe-original-content .catalogue-card:hover img {
  transform: scale(1.035);
}

body.sfl-site .sfe-original-content .catalogue-body {
  padding: clamp(20px, 2.4vw, 29px);
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

body.sfl-site .sfe-original-content .catalogue-title {
  margin: 9px 0 10px;
  color: var(--sfl-ink);
  font: 800 clamp(19px, 2vw, 25px)/1.14 "Manrope", Arial, sans-serif;
  letter-spacing: -0.03em;
}

body.sfl-site .sfe-original-content .catalogue-text {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
  line-height: 1.55;
}

body.sfl-site .sfe-original-content .catalogue-pill {
  margin: 0 0 3px;
  padding: 5px 8px;
  display: inline-flex;
  border: 1px solid rgba(29, 57, 45, 0.22);
  background: rgba(29, 57, 45, 0.06);
  color: var(--sfl-forest);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

body.sfl-site .sfe-original-content .surface-card {
  min-height: 180px;
  padding: clamp(20px, 2.5vw, 30px);
}

body.sfl-site .sfe-original-content .surface-card :where(h2, h3, h4) {
  margin: 0 0 10px;
}

body.sfl-site .sfe-original-content .surface-card p:last-child {
  margin-bottom: 0;
}

body.sfl-site .sfe-original-content .box {
  margin-block: 28px;
  padding: clamp(21px, 3vw, 34px);
  border-left: 4px solid var(--sfl-gold);
  background: var(--sfl-ivory);
  box-shadow: none;
}

body.sfl-site .sfe-original-content .box > :first-child {
  margin-top: 0;
}

body.sfl-site .sfe-original-content .box > :last-child {
  margin-bottom: 0;
}

body.sfl-site .sfe-original-content .use {
  margin-block: clamp(32px, 5vw, 58px);
}

body.sfl-site .sfe-original-content .use > :where(h2, h3) {
  margin-top: 0;
}

body.sfl-site .sfe-original-content .use-grid,
body.sfl-site .sfe-original-content .pattern-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content .use-card {
  min-height: 132px;
  padding: 21px 18px;
  display: flex;
  align-items: flex-end;
  border-top: 3px solid var(--sfl-gold);
  background: var(--sfl-ivory);
  color: var(--sfl-ink);
  font: 800 15px/1.35 "Manrope", Arial, sans-serif;
}

body.sfl-site .sfe-original-content .use-card :where(h3, h4, p, strong) {
  margin: 0;
  color: inherit;
  font: inherit;
}

body.sfl-site .sfe-original-content .pattern-card {
  min-height: 100%;
  overflow: hidden;
}

body.sfl-site .sfe-original-content .pattern-swatch {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  overflow: hidden;
  display: block;
  border-bottom: 1px solid var(--sfl-line);
  background: var(--sfl-ivory);
}

body.sfl-site .sfe-original-content .pattern-swatch :where(img, picture),
body.sfl-site .sfe-original-content .pattern-swatch > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.sfl-site .sfe-original-content .pattern-body {
  padding: 15px 16px 18px;
}

body.sfl-site .sfe-original-content .pattern-body :where(h3, h4, strong) {
  margin: 0;
  display: block;
  color: var(--sfl-ink);
  font: 800 14px/1.3 "Manrope", Arial, sans-serif;
}

body.sfl-site .sfe-original-content .pattern-body p {
  margin: 5px 0 0;
  color: var(--sfl-muted);
  font-size: 11px;
}

body.sfl-site .sfe-original-content :where(.category-grid, .group-grid) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.sfl-site .sfe-original-content :where(.category-card, .group-card) {
  min-height: 190px;
  padding: clamp(21px, 2.7vw, 32px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 3px solid var(--sfl-forest);
}

body.sfl-site .sfe-original-content :where(.category-card, .group-card) :where(h2, h3, h4) {
  margin: 0 0 10px;
  color: var(--sfl-ink);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.18;
}

body.sfl-site .sfe-original-content :where(.category-card, .group-card) p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
}

body.sfl-site .sfe-original-content :where(.category-card, .group-card) a:last-child {
  margin-top: auto;
  padding-top: 18px;
  color: var(--sfl-forest);
  font-weight: 850;
}

body.sfl-site .sfe-original-content .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: sfl-process;
}

body.sfl-site .sfe-original-content .process-step {
  min-height: 210px;
  padding: clamp(21px, 2.7vw, 31px);
  position: relative;
  counter-increment: sfl-process;
}

body.sfl-site .sfe-original-content .process-step::before {
  content: counter(sfl-process, decimal-leading-zero);
  margin-bottom: 35px;
  display: block;
  color: var(--sfl-forest);
  font: 850 12px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.12em;
}

body.sfl-site .sfe-original-content .process-step :where(h2, h3, h4) {
  margin: 0 0 9px;
  color: var(--sfl-ink);
  font-size: 20px;
  line-height: 1.18;
}

body.sfl-site .sfe-original-content .process-step p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 13px;
}

body.sfl-site .sfe-original-content :where(.grid, .catalogue, .steps) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(12px, 2vw, 22px);
}

body.sfl-site .sfe-original-content :where(.card, .system-box) {
  --sfl-legacy-card-pad: clamp(20px, 2.6vw, 31px);
  min-width: 0;
  min-height: 170px;
  padding: var(--sfl-legacy-card-pad);
  border: 1px solid rgba(17, 27, 23, 0.11);
  background: var(--sfl-white);
  box-shadow: 0 8px 26px rgba(10, 17, 14, 0.055);
  overflow-wrap: anywhere;
}

body.sfl-site .sfe-original-content .system-box {
  border-left: 4px solid var(--sfl-gold);
  background: var(--sfl-ivory);
  box-shadow: none;
}

body.sfl-site .sfe-original-content :where(.card, .system-box) :where(h2, h3, h4) {
  margin: 0 0 10px;
  color: var(--sfl-ink);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.18;
}

body.sfl-site .sfe-original-content :where(.card, .system-box) p {
  margin: 0;
  color: var(--sfl-muted);
  font-size: 14px;
}

body.sfl-site .sfe-original-content :where(.card, .system-box) a {
  color: var(--sfl-forest);
  font-weight: 800;
  text-decoration: none;
}

body.sfl-site .sfe-original-content .card > img:first-child {
  width: calc(100% + var(--sfl-legacy-card-pad) + var(--sfl-legacy-card-pad));
  max-width: none;
  height: clamp(190px, 23vw, 310px);
  margin: calc(0px - var(--sfl-legacy-card-pad)) calc(0px - var(--sfl-legacy-card-pad)) 22px;
  object-fit: cover;
}

/* Older catalogue wrappers which pre-date the shared product shell. */
body.sfl-site .sfe-original-content > .wrap,
body.sfl-site .sfe-original-content .surface-trims-page,
body.sfl-site .sfe-original-content .surface-trims-page > .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.sfl-site .sfe-original-content > .hero,
body.sfl-site .sfe-original-content > .wrap > .hero,
body.sfl-site .sfe-original-content .surface-trims-page > .hero,
body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .hero {
  margin: 0;
  padding: clamp(38px, 6vw, 72px);
  overflow: hidden;
  background: var(--sfl-forest);
  color: var(--sfl-white);
}

body.sfl-site .sfe-original-content > .hero :where(h1, h2, h3, p),
body.sfl-site .sfe-original-content > .wrap > .hero :where(h1, h2, h3, p),
body.sfl-site .sfe-original-content .surface-trims-page > .hero :where(h1, h2, h3, p),
body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .hero :where(h1, h2, h3, p) {
  max-width: 820px;
  color: var(--sfl-white);
}

body.sfl-site .sfe-original-content > .hero :where(h1, h2),
body.sfl-site .sfe-original-content > .wrap > .hero :where(h1, h2),
body.sfl-site .sfe-original-content .surface-trims-page > .hero :where(h1, h2),
body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .hero :where(h1, h2) {
  margin: 0 0 16px;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.02;
}

body.sfl-site .sfe-original-content > .hero p,
body.sfl-site .sfe-original-content > .wrap > .hero p,
body.sfl-site .sfe-original-content .surface-trims-page > .hero p,
body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.8vw, 19px);
}

body.sfl-site .sfe-original-content > .section,
body.sfl-site .sfe-original-content > .wrap > .section,
body.sfl-site .sfe-original-content .surface-trims-page > .section,
body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .section {
  margin: 0;
  padding: clamp(52px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--sfl-line);
  background: transparent;
}

body.sfl-site .sfe-original-content > .section:last-child,
body.sfl-site .sfe-original-content > .wrap > .section:last-child,
body.sfl-site .sfe-original-content .surface-trims-page > .section:last-child,
body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.sfl-site .sfe-original-content > .section > :where(.wrap, .surface-wrap, .surface-inner),
body.sfl-site .sfe-original-content > .wrap > .section > :where(.wrap, .surface-wrap, .surface-inner),
body.sfl-site .sfe-original-content .surface-trims-page .section > :where(.wrap, .surface-wrap, .surface-inner) {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

/* Empty/search states */
body.sfl-site .sfe-empty {
  min-height: 55vh;
  padding-block: clamp(90px, 12vw, 150px);
}

body.sfl-site .sfe-empty h1 {
  margin: 0 0 12px;
  color: var(--sfl-ink);
  font: 750 clamp(40px, 7vw, 74px)/1 "Manrope", Arial, sans-serif;
  letter-spacing: -0.055em;
}

/* Footer */
body.sfl-site .sfe-footer {
  padding: clamp(70px, 8vw, 105px) 0 22px;
  position: relative;
  overflow: hidden;
  background: var(--sfl-ink-deep);
  color: rgba(255, 255, 255, 0.76);
}

body.sfl-site .sfe-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sfl-gold), rgba(198, 161, 91, 0.1) 70%);
}

body.sfl-site .sfe-footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) repeat(3, minmax(130px, 1fr));
  gap: clamp(34px, 5vw, 72px);
}

body.sfl-site .sfe-footer-main > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.sfl-site .sfe-footer-logo span {
  color: var(--sfl-white);
  font: 800 clamp(24px, 3vw, 34px)/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.18em;
}

body.sfl-site .sfe-footer-logo {
  color: var(--sfl-white) !important;
  font: 800 clamp(24px, 3vw, 34px)/1 "Manrope", Arial, sans-serif !important;
  letter-spacing: 0.18em;
}

body.sfl-site .sfe-footer p {
  max-width: 330px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12.5px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

body.sfl-site .sfe-footer h2,
body.sfl-site .sfe-footer h3 {
  margin: 3px 0 17px;
  color: var(--sfl-gold-light);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

body.sfl-site .sfe-footer-address {
  max-width: 240px;
  line-height: 1.65;
}

body.sfl-site .sfe-footer a,
body.sfl-site .sfe-footer button {
  margin: 3px 0;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

body.sfl-site .sfe-footer a:hover,
body.sfl-site .sfe-footer button:hover {
  color: var(--sfl-white);
}

body.sfl-site .sfe-footer-bottom {
  margin-top: clamp(45px, 6vw, 70px);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

/* Search overlay */
body.sfl-site .sfe-search-modal,
body.sfl-site #sfl-search-modal {
  position: fixed;
  z-index: 900;
  inset: 0;
  padding: max(8vh, 68px) var(--sfl-gutter) 30px;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(5, 10, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.sfl-site .sfe-search-modal.open,
body.sfl-site .sfe-search-modal.is-open,
body.sfl-site #sfl-search-modal.open,
body.sfl-site #sfl-search-modal.is-open,
body.sfl-site #sfl-search-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.sfl-site .sfe-search-box {
  width: min(760px, 100%);
  max-height: 82vh;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
  overflow-y: auto;
  border-top: 4px solid var(--sfl-gold);
  background: var(--sfl-paper);
  box-shadow: var(--sfl-shadow-lg);
}

body.sfl-site .sfe-search-box h2 {
  max-width: 610px;
  margin: 9px 0 25px;
  color: var(--sfl-ink);
  font: 750 clamp(29px, 4vw, 45px)/1.08 "Manrope", Arial, sans-serif;
  letter-spacing: -0.045em;
}

body.sfl-site .sfe-search-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 12px;
  right: 13px;
  border: 0;
  background: transparent;
  color: var(--sfl-ink);
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
}

body.sfl-site .sfe-search-input {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--sfl-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.sfl-site .sfe-search-input:focus-within {
  border-color: var(--sfl-gold);
  box-shadow: 0 3px 0 rgba(180, 139, 55, 0.28);
}

body.sfl-site .sfe-search-input input {
  width: 100%;
  min-width: 0;
  padding: 14px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--sfl-ink);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
}

body.sfl-site .sfe-search-results {
  padding-top: 17px;
}

body.sfl-site .sfe-search-results > p {
  color: var(--sfl-muted);
  font-size: 13px;
}

body.sfl-site .sfe-search-results > a {
  padding: 14px 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--sfl-line);
  color: var(--sfl-ink);
  font-weight: 800;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

body.sfl-site .sfe-search-results > a:hover {
  padding-left: 6px;
  color: var(--sfl-forest);
}

body.sfl-site .sfe-search-results > a small {
  flex: 0 0 auto;
  color: var(--sfl-muted);
  font-size: 10px;
  font-weight: 600;
}

/* Mobile drawer and scrim */
body.sfl-site .sfe-mobile-panel,
body.sfl-site #sfl-mobile-menu {
  width: min(88vw, 410px);
  position: fixed;
  z-index: 850;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 22px 25px max(28px, env(safe-area-inset-bottom));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--sfl-paper);
  box-shadow: -20px 0 70px rgba(6, 12, 9, 0.22);
  visibility: hidden;
  transform: translateX(105%);
  transition: transform 0.35s var(--sfl-ease), visibility 0.35s ease;
}

body.sfl-site .sfe-mobile-panel.open,
body.sfl-site .sfe-mobile-panel.is-open,
body.sfl-site #sfl-mobile-menu.open,
body.sfl-site #sfl-mobile-menu.is-open,
body.sfl-site #sfl-mobile-menu[aria-hidden="false"] {
  visibility: visible;
  transform: translateX(0);
}

body.sfl-site.admin-bar .sfe-mobile-panel,
body.sfl-site.admin-bar #sfl-mobile-menu {
  top: 32px;
}

body.sfl-site .sfe-mobile-head {
  margin-bottom: 8px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--sfl-line);
}

body.sfl-site .sfe-mobile-head b {
  color: var(--sfl-ink);
  font: 800 15px/1 "Manrope", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.sfl-site .sfe-mobile-head button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
}

body.sfl-site :where(.sfe-mobile-panel, #sfl-mobile-menu) > nav {
  display: flex;
  flex-direction: column;
}

body.sfl-site .sfe-mobile-panel > a,
body.sfl-site #sfl-mobile-menu > a,
body.sfl-site :where(.sfe-mobile-panel, #sfl-mobile-menu) > nav > a,
body.sfl-site .sfe-mobile-links > a {
  min-height: 46px;
  padding: 11px 2px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--sfl-line);
  color: var(--sfl-ink);
  font-size: 14px;
  font-weight: 750;
}

body.sfl-site .sfe-mobile-panel > a:hover,
body.sfl-site #sfl-mobile-menu > a:hover,
body.sfl-site :where(.sfe-mobile-panel, #sfl-mobile-menu) > nav > a:hover,
body.sfl-site .sfe-mobile-links > a:hover {
  color: var(--sfl-forest);
}

body.sfl-site .sfe-mobile-nav-group {
  border-bottom: 1px solid var(--sfl-line);
}

body.sfl-site .sfe-mobile-nav-group > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  align-items: center;
}

body.sfl-site .sfe-mobile-nav-group > div:first-child > a {
  min-height: 46px;
  padding: 11px 2px;
  display: flex;
  align-items: center;
  color: var(--sfl-ink);
  font-size: 14px;
  font-weight: 750;
}

body.sfl-site .sfe-mobile-nav-group > div:first-child > button {
  width: 42px;
  height: 42px;
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--sfl-forest);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

body.sfl-site .sfe-mobile-nav-group > div:first-child > button[aria-expanded="true"],
body.sfl-site .sfe-mobile-nav-group > div:first-child > button.is-open {
  transform: rotate(45deg);
}

body.sfl-site .sfe-mobile-submenu {
  margin: 0 0 9px;
  padding: 7px 12px 10px;
  border-left: 2px solid var(--sfl-gold);
  background: rgba(29, 57, 45, 0.045);
}

body.sfl-site .sfe-mobile-submenu[hidden] {
  display: none !important;
}

body.sfl-site .sfe-mobile-submenu.is-open {
  display: block;
}

body.sfl-site .sfe-mobile-submenu > a {
  min-height: 40px;
  padding: 8px 4px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(17, 27, 23, 0.08);
  color: var(--sfl-muted);
  font-size: 12.5px;
  font-weight: 700;
}

body.sfl-site .sfe-mobile-submenu > a:last-child {
  border-bottom: 0;
}

body.sfl-site .sfe-mobile-submenu > a:hover,
body.sfl-site .sfe-mobile-submenu > a:focus-visible {
  color: var(--sfl-forest);
}

body.sfl-site .sfe-mobile-panel .sfe-mobile-call,
body.sfl-site #sfl-mobile-menu .sfe-mobile-call {
  min-height: 52px;
  margin-top: 20px;
  padding: 13px 16px;
  justify-content: center;
  border: 1px solid var(--sfl-forest);
  background: var(--sfl-forest);
  color: var(--sfl-white);
  text-align: center;
}

body.sfl-site .sfe-scrim {
  position: fixed;
  z-index: 800;
  inset: 0;
  display: block;
  background: rgba(4, 9, 7, 0.66);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.sfl-site .sfe-scrim.open,
body.sfl-site .sfe-scrim.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Image lightbox */
body.sfl-site #sfl-lightbox,
body.sfl-site .sfe-lightbox {
  position: fixed;
  z-index: 100100;
  inset: 0;
  padding: clamp(18px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 7, 5, 0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.sfl-site #sfl-lightbox.open,
body.sfl-site #sfl-lightbox.is-open,
body.sfl-site #sfl-lightbox[aria-hidden="false"],
body.sfl-site .sfe-lightbox.open,
body.sfl-site .sfe-lightbox.is-open,
body.sfl-site.sfl-lightbox-open #sfl-lightbox {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(.sfe-lightbox-inner, .sfl-lightbox__stage) {
  width: min(1120px, 100%);
  max-height: calc(100vh - 60px);
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where([data-lightbox-image], .sfl-lightbox__image) {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(figcaption, .sfe-lightbox-caption, .sfl-lightbox__caption, [data-lightbox-caption]) {
  padding: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-align: center;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(.sfe-lightbox-close, .sfl-lightbox__close, [data-close-lightbox], [data-lightbox-close]) {
  width: 46px;
  height: 46px;
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(3, 7, 5, 0.72);
  color: var(--sfl-white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(.sfe-lightbox-prev, .sfe-lightbox-next, .sfl-lightbox__prev, .sfl-lightbox__next) {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(3, 7, 5, 0.68);
  color: var(--sfl-white);
  cursor: pointer;
  transform: translateY(-50%);
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where([data-lightbox-prev], [data-lightbox-next]) {
  width: 48px;
  height: 48px;
  position: absolute;
  z-index: 2;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(3, 7, 5, 0.68);
  color: var(--sfl-white);
  cursor: pointer;
  transform: translateY(-50%);
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(.sfe-lightbox-prev, .sfl-lightbox__prev) {
  left: 12px;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) [data-lightbox-prev] {
  left: 12px;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(.sfe-lightbox-next, .sfl-lightbox__next) {
  right: 12px;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) [data-lightbox-next] {
  right: 12px;
}

body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where([data-lightbox-count], .sfl-lightbox__count) {
  position: absolute;
  top: 17px;
  left: 18px;
  z-index: 2;
  padding: 4px 9px;
  background: rgba(3, 7, 5, 0.7);
  color: var(--sfl-white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Fixed mobile contact actions */
body.sfl-site .sfe-float-call {
  width: 54px;
  height: 54px;
  position: fixed;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sfl-gold);
  color: var(--sfl-ink-deep);
  box-shadow: 0 14px 36px rgba(5, 10, 8, 0.26);
}

body.sfl-site .sfe-float-call svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

body.sfl-site .sfe-mobile-actions {
  position: fixed;
  z-index: 89;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--sfl-ink-deep);
  box-shadow: 0 -12px 35px rgba(5, 10, 8, 0.18);
}

body.sfl-site .sfe-mobile-actions a {
  min-height: 56px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--sfl-white);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

body.sfl-site .sfe-mobile-actions a:last-child {
  background: var(--sfl-gold);
  color: var(--sfl-ink-deep);
}

body.sfl-site .sfe-mobile-actions svg {
  width: 18px;
  height: 18px;
}

/* Subtle reveal class applied progressively by JS */
body.sfl-site .sfl-reveal {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

body.sfl-site .sfe-reveal.is-visible {
  animation: sfl-reveal 0.7s var(--sfl-ease) both;
  animation-delay: var(--sfl-reveal-delay, 0ms);
}

body.sfl-site .sfl-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  animation: sfl-reveal 0.7s var(--sfl-ease) both;
  animation-delay: var(--sfl-reveal-delay, 0ms);
  will-change: auto;
}

body.sfl-site.sfl-menu-open,
body.sfl-site.sfl-search-open,
body.sfl-site.sfl-lightbox-open {
  overflow: hidden;
}

body.sfl-site.sfl-menu-open #sfl-mobile-menu,
body.sfl-site.sfl-search-open #sfl-search-modal {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.sfl-site.sfl-menu-open #sfl-mobile-menu {
  transform: translateX(0);
}

/* Large tablet */
@media (max-width: 1160px) {
  body.sfl-site .sfe-nav > nav {
    gap: 20px;
  }

  body.sfl-site .sfe-search-button span {
    display: none;
  }

  body.sfl-site .sfe-card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-sector-grid article,
  body.sfl-site .sfe-sector-grid > a,
  body.sfl-site .sfe-sector-card {
    min-height: 390px;
  }

  body.sfl-site .sfe-brand-strip > .sfe-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.sfl-site .sfe-brand-strip > .sfe-wrap > span:first-child {
    grid-column: 1 / -1;
    justify-content: center;
    text-align: center;
  }

  body.sfl-site .sfe-footer-main {
    grid-template-columns: minmax(240px, 1.4fr) repeat(2, minmax(130px, 1fr));
  }

  body.sfl-site .sfe-footer-main > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 1050px) {
  body.sfl-site .sfe-nav > nav {
    display: none;
  }

  body.sfl-site .sfe-menu-button {
    display: block;
  }
}

@media (max-width: 1024px) {
  body.sfl-site .sfe-nav > nav {
    display: none;
  }

  body.sfl-site .sfe-menu-button {
    display: block;
  }

  body.sfl-site .sfe-card-grid-3,
  body.sfl-site .sfe-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-project-grid,
  body.sfl-site .sfe-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 330px;
  }

  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project),
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):first-child,
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(2),
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(3),
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(n + 4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  body.sfl-site .sfe-brand-grid,
  body.sfl-site .sfe-brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.sfl-site .sfe-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-sector-feature,
  body.sfl-site .sfe-sector-feature:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: 45px;
  }

  body.sfl-site .sfe-installation-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .surface-product .surface-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    gap: clamp(28px, 4vw, 48px);
  }

  body.sfl-site .sfe-original-content .surface-product .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .surface-product .colour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .surface-product .apps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .surface-product :where(.example-grid, .icons-grid, .system-grid, .products-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .product {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.86fr);
    gap: 34px;
  }

  body.sfl-site .sfe-original-content :where(.surface-grid-3, .surface-grid-4, .catalogue-grid, .category-grid, .group-grid, .use-grid, .pattern-grid, .process-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content :where(.grid, .catalogue, .steps) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile navigation and stacked layouts */
@media (max-width: 782px) {
  :root {
    --sfl-header-height: 68px;
    --sfl-gutter: 18px;
    --sfl-section: 72px;
  }

  body.sfl-site {
    padding-bottom: 0;
  }

  body.sfl-site.admin-bar .sfe-header,
  body.sfl-site.admin-bar .sfe-mobile-panel,
  body.sfl-site.admin-bar #sfl-mobile-menu {
    top: 46px;
  }

  body.sfl-site .sfe-topbar {
    display: none;
  }

  body.sfl-site .sfe-noscript-nav {
    padding-inline: var(--sfl-gutter);
    justify-content: flex-start;
  }

  body.sfl-site .sfe-noscript-nav form {
    width: 100%;
    margin: 3px 0 0;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  body.sfl-site .sfe-header {
    height: var(--sfl-header-height);
  }

  body.sfl-site .sfe-logo {
    min-width: 0;
  }

  body.sfl-site .sfe-logo img {
    width: 40px;
    height: 40px;
  }

  body.sfl-site .sfe-logo b {
    font-size: 16px;
  }

  body.sfl-site .sfe-logo small {
    display: none;
  }

  body.sfl-site .sfe-quote {
    display: none;
  }

  body.sfl-site .sfe-hero,
  body.sfl-site .sfe-page-hero {
    min-height: calc(100svh - var(--sfl-header-height));
    padding: 96px 0 calc(88px + env(safe-area-inset-bottom));
    align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(6, 13, 10, 0.3) 0%, rgba(6, 13, 10, 0.66) 48%, rgba(6, 13, 10, 0.97) 100%),
      var(--hero);
    background-position: center;
  }

  body.sfl-site .sfe-page-hero {
    min-height: min(620px, calc(100svh - var(--sfl-header-height)));
  }

  body.sfl-site .sfe-hero::after,
  body.sfl-site .sfe-page-hero::after {
    right: var(--sfl-gutter);
    height: 15%;
  }

  body.sfl-site .sfe-hero h1,
  body.sfl-site .sfe-page-hero h1 {
    max-width: 670px;
    margin: 17px 0 19px;
    font-size: clamp(44px, 13.5vw, 72px);
    line-height: 0.97;
    letter-spacing: -0.06em;
  }

  body.sfl-site .sfe-page-hero h1 {
    font-size: clamp(41px, 11.8vw, 63px);
  }

  body.sfl-site .sfe-hero p,
  body.sfl-site .sfe-page-hero p {
    max-width: 610px;
    font-size: 16px;
    line-height: 1.55;
  }

  body.sfl-site .sfe-actions {
    margin-top: 25px;
  }

  body.sfl-site .sfe-trust {
    width: 100%;
    margin-top: 38px;
    padding: 18px 0 2px;
    grid-template-columns: repeat(3, minmax(115px, 1fr));
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.sfl-site .sfe-trust::-webkit-scrollbar {
    display: none;
  }

  body.sfl-site .sfe-split,
  body.sfl-site .sfe-band-grid,
  body.sfl-site .sfe-contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 37px;
  }

  body.sfl-site .sfe-intro {
    background: var(--sfl-ivory);
  }

  body.sfl-site .sfe-section h2,
  body.sfl-site .sfe-band h2,
  body.sfl-site .sfe-cta h2,
  body.sfl-site .sfe-contact-grid h2,
  body.sfl-site .sfe-projects h2,
  body.sfl-site .sfe-categories h2,
  body.sfl-site .sfe-sectors h2 {
    font-size: clamp(34px, 10vw, 47px);
    line-height: 1.04;
  }

  body.sfl-site .sfe-lead {
    font-size: 18px;
  }

  body.sfl-site .sfe-heading,
  body.sfl-site .sfe-catalogue-tools,
  body.sfl-site .sfe-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  body.sfl-site .sfe-card-grid-2,
  body.sfl-site .sfe-card-grid-3,
  body.sfl-site .sfe-card-grid-4,
  body.sfl-site .sfe-service-grid,
  body.sfl-site .sfe-range-grid,
  body.sfl-site .sfe-sector-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-photo-card {
    min-height: 420px;
  }

  body.sfl-site .sfe-sector-grid article,
  body.sfl-site .sfe-sector-grid > a,
  body.sfl-site .sfe-sector-card {
    min-height: 350px;
  }

  body.sfl-site .sfe-support-split::after {
    display: none;
  }

  body.sfl-site .sfe-support-photo {
    min-height: min(118vw, 560px);
  }

  body.sfl-site .sfe-final-cta {
    min-height: 560px;
    padding-block: 80px;
    align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(6, 13, 10, 0.24) 0%, rgba(6, 13, 10, 0.7) 52%, rgba(6, 13, 10, 0.97) 100%),
      var(--hero);
  }

  body.sfl-site .sfe-final-cta h2 {
    font-size: clamp(36px, 10.5vw, 54px);
  }

  body.sfl-site .sfe-product-top > .sfe-wrap > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  body.sfl-site .sfe-product-top h1 {
    font-size: clamp(38px, 10.5vw, 58px);
  }

  body.sfl-site .sfe-sector-feature,
  body.sfl-site .sfe-sector-feature:nth-child(even) {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  body.sfl-site .sfe-sector-feature:nth-child(even) > div:first-child {
    order: 0;
  }

  body.sfl-site .sfe-sector-feature > div:first-child {
    min-height: min(115vw, 540px);
  }

  body.sfl-site .sfe-values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-values-grid article {
    min-height: 220px;
  }

  body.sfl-site .sfe-project-grid,
  body.sfl-site .sfe-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 330px;
  }

  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project),
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):first-child,
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(2),
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(3),
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project):nth-child(n + 4) {
    grid-column: 1;
    grid-row: span 1;
  }

  body.sfl-site .sfe-band::after {
    width: 76vw;
    top: -5%;
    right: -38%;
  }

  body.sfl-site .sfe-service-grid article {
    min-height: 245px;
  }

  body.sfl-site .sfe-product-card > img {
    height: min(68vw, 290px);
  }

  body.sfl-site .sfe-product-card-image {
    height: min(68vw, 290px);
  }

  body.sfl-site .sfe-range-grid {
    margin-top: 42px;
  }

  body.sfl-site .sfe-range-grid > a {
    min-height: 165px;
  }

  body.sfl-site .sfe-field-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  body.sfl-site .sfe-original-content {
    width: calc(100% - (var(--sfl-gutter) * 2));
    margin-block: 34px 48px;
    padding: 25px 20px;
  }

  body.sfl-site .sfe-original-content h2 {
    margin-top: 38px;
  }

  body.sfl-site .sfe-original-content .surface-product .surface-hero {
    padding-bottom: 48px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  body.sfl-site .sfe-original-content .surface-product .surface-hero-media {
    min-height: min(94vw, 460px);
  }

  body.sfl-site .sfe-original-content .surface-product .surface-hero h1 {
    font-size: clamp(36px, 10vw, 55px);
  }

  body.sfl-site .sfe-original-content .surface-product .section {
    padding-block: 54px;
  }

  body.sfl-site .sfe-original-content .surface-product .colour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .product {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }

  body.sfl-site .sfe-original-content .product-media {
    min-height: min(88vw, 450px);
  }

  body.sfl-site .sfe-original-content > .hero > :where(.wrap, .surface-wrap, .surface-inner),
  body.sfl-site .sfe-original-content > .wrap > .hero > :where(.wrap, .surface-wrap, .surface-inner),
  body.sfl-site .sfe-original-content .surface-trims-page .hero > :where(.wrap, .surface-wrap, .surface-inner) {
    display: block;
  }

  body.sfl-site .sfe-original-content :where(.features, .surface-grid-3, .surface-grid-4) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-original-content .surface-product :where(.note-stack, .guidance-wrap) {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-installation-gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: min(88vw, 390px);
  }

  body.sfl-site .sfe-installation-gallery > a:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  body.sfl-site .sfe-footer {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body.sfl-site .sfe-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 37px 24px;
  }

  body.sfl-site .sfe-footer-main > div:first-child,
  body.sfl-site .sfe-footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  body.sfl-site .sfe-footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  body.sfl-site .sfe-float-call {
    display: none;
  }

  body.sfl-site .sfe-mobile-actions {
    display: grid;
  }

  body.sfl-site .sfe-search-modal,
  body.sfl-site #sfl-search-modal {
    padding: max(55px, 7vh) 14px 20px;
  }

  body.sfl-site .sfe-search-box {
    max-height: 86vh;
    padding: 34px 20px 24px;
  }

  body.sfl-site .sfe-search-results > a {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

@media (max-width: 600px) {
  body.sfl-site .sfe-brand-strip > .sfe-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-brand-strip > .sfe-wrap > span:first-child {
    grid-column: 1 / -1;
  }

  body.sfl-site .sfe-brand-grid,
  body.sfl-site .sfe-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.sfl-site .sfe-brand-grid > *,
  body.sfl-site .sfe-brand-list > * {
    min-height: 68px;
  }

  body.sfl-site .sfe-steps > div {
    grid-template-columns: 41px minmax(0, 1fr);
    gap: 12px;
  }

  body.sfl-site .sfe-noscript-nav {
    gap: 3px 14px;
    font-size: 11px;
  }

  body.sfl-site .sfe-noscript-nav form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.sfl-site .sfe-noscript-nav form label {
    grid-column: 1 / -1;
  }

  body.sfl-site .sfe-original-content .surface-product .hero-points,
  body.sfl-site .sfe-original-content .surface-product .gallery,
  body.sfl-site .sfe-original-content .surface-product .apps,
  body.sfl-site .sfe-original-content .surface-product .example-grid,
  body.sfl-site .sfe-original-content .surface-product .system-grid,
  body.sfl-site .sfe-original-content .surface-product .products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-original-content .surface-product .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.sfl-site .sfe-original-content .surface-product :where(.btn-main, .btn-alt) {
    width: 100%;
  }

  body.sfl-site .sfe-original-content .surface-product .gallery-card > :where(a, picture),
  body.sfl-site .sfe-original-content .surface-product .gallery-card > img {
    height: min(75vw, 350px);
  }

  body.sfl-site .sfe-original-content :where(.surface-grid-2, .surface-grid-3, .surface-grid-4, .features, .catalogue-grid, .category-grid, .group-grid, .process-grid) {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-original-content :where(.grid, .catalogue, .steps) {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-original-content .catalogue-card > :where(img, picture, a:first-child) {
    height: min(76vw, 340px);
  }

  body.sfl-site .sfe-original-content .surface-product :where(.example-card, .system-card, .product-card) > :where(img, picture, .example-media, .example-image, .system-media, .product-media) {
    height: min(76vw, 340px);
  }

  body.sfl-site .sfe-original-content > .hero,
  body.sfl-site .sfe-original-content > .wrap > .hero,
  body.sfl-site .sfe-original-content .surface-trims-page > .hero,
  body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .hero {
    padding: 32px 22px;
  }

  body.sfl-site .sfe-original-content > .section,
  body.sfl-site .sfe-original-content > .wrap > .section,
  body.sfl-site .sfe-original-content .surface-trims-page > .section,
  body.sfl-site .sfe-original-content .surface-trims-page > .wrap > .section {
    padding-block: 46px;
  }

  body.sfl-site :where(#sfl-lightbox, .sfe-lightbox) :where(.sfe-lightbox-prev, .sfe-lightbox-next, .sfl-lightbox__prev, .sfl-lightbox__next, [data-lightbox-prev], [data-lightbox-next]) {
    top: auto;
    bottom: 55px;
    transform: none;
  }
}

@media (max-width: 480px) {
  body.sfl-site .sfe-nav-actions {
    gap: 1px;
  }

  body.sfl-site .sfe-search-button,
  body.sfl-site .sfe-menu-button {
    padding-inline: 7px;
  }

  body.sfl-site .sfe-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  body.sfl-site .sfe-btn {
    width: 100%;
  }

  body.sfl-site .sfe-hero h1 {
    font-size: clamp(42px, 14.2vw, 62px);
  }

  body.sfl-site .sfe-page-hero h1 {
    font-size: clamp(39px, 12.5vw, 55px);
  }

  body.sfl-site .sfe-trust {
    grid-template-columns: repeat(3, 122px);
  }

  body.sfl-site .sfe-photo-card {
    min-height: 380px;
  }

  body.sfl-site .sfe-sector-grid article,
  body.sfl-site .sfe-sector-card,
  body.sfl-site .sfe-project-grid,
  body.sfl-site .sfe-gallery-grid {
    min-height: 0;
  }

  body.sfl-site .sfe-project-grid,
  body.sfl-site .sfe-gallery-grid {
    grid-auto-rows: 290px;
  }

  body.sfl-site .sfe-form {
    padding: 26px 17px;
  }

  body.sfl-site .sfe-footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-footer-main > div:first-child,
  body.sfl-site .sfe-footer-main > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  :root {
    --sfl-gutter: 15px;
  }

  body.sfl-site .sfe-logo img {
    width: 36px;
    height: 36px;
  }

  body.sfl-site .sfe-logo b {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  body.sfl-site .sfe-hero h1,
  body.sfl-site .sfe-page-hero h1 {
    overflow-wrap: anywhere;
  }

  body.sfl-site .sfe-mobile-panel,
  body.sfl-site #sfl-mobile-menu {
    width: 100%;
    padding-inline: 18px;
  }

  body.sfl-site .sfe-mobile-actions a {
    padding-inline: 8px;
    font-size: 11px;
  }

  body.sfl-site .sfe-original-content {
    padding-inline: 16px;
  }

  body.sfl-site .sfe-original-content .surface-product .colour-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-original-content :where(.use-grid, .pattern-grid) {
    grid-template-columns: minmax(0, 1fr);
  }

  body.sfl-site .sfe-original-content .meta-list > * {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  body.sfl-site .sfe-original-content .surface-product .icons-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.sfl-site,
  body.sfl-site *,
  body.sfl-site *::before,
  body.sfl-site *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.sfl-site .sfl-reveal,
  body.sfl-site .sfl-reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto;
  }
}

@media (forced-colors: active) {
  body.sfl-site .sfe-btn,
  body.sfl-site .sfe-quote,
  body.sfl-site .sfe-mobile-actions a,
  body.sfl-site .sfe-photo-card,
  body.sfl-site :where(.sfe-project-card, .sfe-gallery-card, .sfe-project) {
    border: 1px solid currentColor;
  }
}

@media print {
  body.sfl-site {
    padding: 0;
    background: var(--sfl-white);
    color: #000;
  }

  body.sfl-site :where(.sfe-topbar, .sfe-header, .sfe-mobile-panel, .sfe-scrim, .sfe-search-modal, #sfl-search-modal, .sfe-mobile-actions, .sfe-float-call, .sfe-footer, #sfl-lightbox, .sfe-lightbox) {
    display: none !important;
  }

  body.sfl-site :where(.sfe-hero, .sfe-page-hero, .sfe-cta) {
    min-height: 0;
    padding-block: 35px;
    background: #fff !important;
    color: #000;
  }

  body.sfl-site :where(.sfe-hero, .sfe-page-hero, .sfe-cta) :where(h1, h2, p) {
    color: #000;
  }
}
