:root {
  --smb-bg: #f5f5f3;
  --smb-surface: #ffffff;
  --smb-surface-soft: #ececea;
  --smb-dark: #141516;
  --smb-dark-2: #1e2022;
  --smb-text: #242628;
  --smb-muted: #686d70;
  --smb-line: rgba(20, 21, 22, .12);
  --smb-accent: #d8332f;
  --smb-accent-dark: #aa211f;
  --smb-white: #ffffff;
  --smb-radius: 2px;
  --smb-shadow: 0 24px 60px rgba(10, 12, 14, .12);
  --smb-container: 1320px;
  --smb-header: 88px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--smb-bg);
  color: var(--smb-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.smb-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--smb-accent); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--smb-accent); color: var(--smb-white); }

.smb-container { width: min(calc(100% - 48px), var(--smb-container)); margin-inline: auto; }
.smb-main { overflow: clip; }
.smb-skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 9999; transform: translateY(-150%);
  padding: 10px 14px; background: var(--smb-white); color: var(--smb-dark); box-shadow: var(--smb-shadow);
}
.smb-skip-link:focus { transform: none; }
.screen-reader-text { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }

/* Header */
.smb-site-header { position: relative; z-index: 1000; background: var(--smb-surface); transition: box-shadow .25s ease, transform .25s ease; }
.smb-site-header.is-scrolled { position: sticky; top: 0; box-shadow: 0 12px 40px rgba(0,0,0,.09); }
.admin-bar .smb-site-header.is-scrolled { top: 32px; }
.smb-topbar { background: var(--smb-dark); color: rgba(255,255,255,.78); font-size: 13px; letter-spacing: .03em; }
.smb-topbar__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.smb-topbar__inner > span:last-child { display: flex; align-items: center; gap: 22px; }
.smb-topbar a { color: var(--smb-white); }
.smb-topbar a:hover { color: #ff7b77; }
.smb-nav-wrap { background: var(--smb-white); }
.smb-nav-inner { min-height: var(--smb-header); display: grid; grid-template-columns: 238px 1fr auto; align-items: center; gap: 30px; }
.smb-brand img, .smb-brand .custom-logo { width: auto; max-width: 218px; max-height: 62px; object-fit: contain; }
.smb-primary-nav { justify-self: end; }
.smb-menu, .smb-menu ul { list-style: none; margin: 0; padding: 0; }
.smb-menu { display: flex; align-items: center; gap: clamp(16px, 2vw, 34px); }
.smb-menu > li { position: relative; }
.smb-menu > li > a {
  position: relative; display: flex; align-items: center; min-height: 88px; color: var(--smb-dark);
  font-size: 14px; font-weight: 760; letter-spacing: .045em; text-transform: uppercase;
}
.smb-menu > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--smb-accent); transform: scaleX(0); transform-origin: right; transition: transform .24s ease; }
.smb-menu > li:hover > a::after, .smb-menu > li.current-menu-item > a::after, .smb-menu > li.current-menu-ancestor > a::after { transform: scaleX(1); transform-origin: left; }
.smb-menu .menu-item-has-children > a::before { content: "+"; order: 2; margin-left: 7px; font-size: 15px; color: var(--smb-accent); }
.smb-menu .sub-menu {
  position: absolute; top: calc(100% - 1px); left: -24px; width: 315px; padding: 15px 0; background: var(--smb-dark);
  box-shadow: 0 25px 50px rgba(0,0,0,.22); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .22s ease;
}
.smb-menu li:hover > .sub-menu, .smb-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.smb-menu .sub-menu a { display: block; padding: 11px 24px; color: rgba(255,255,255,.83); font-size: 14px; font-weight: 650; border-left: 3px solid transparent; }
.smb-menu .sub-menu a:hover, .smb-menu .sub-menu .current-menu-item > a { color: var(--smb-white); background: rgba(255,255,255,.06); border-left-color: var(--smb-accent); padding-left: 29px; }
.smb-header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; background: var(--smb-accent); color: var(--smb-white); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: background .2s ease, transform .2s ease; }
.smb-header-cta:hover { background: var(--smb-dark); color: var(--smb-white); transform: translateY(-2px); }
.smb-menu-toggle { display: none; border: 0; background: transparent; width: 46px; height: 46px; padding: 11px; }
.smb-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--smb-dark); transition: .22s ease; }

/* Typography and shared content */
h1, h2, h3, h4 { margin: 0 0 .65em; color: var(--smb-dark); font-weight: 800; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(46px, 6vw, 86px); }
h2 { font-size: clamp(36px, 4.3vw, 62px); }
h3 { font-size: clamp(23px, 2.1vw, 32px); }
p { margin: 0 0 1.35em; }
.smb-lead { max-width: 830px; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.5; color: #4f5356; }
.smb-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 18px; color: var(--smb-accent); font-size: 13px; font-weight: 850; line-height: 1.2; letter-spacing: .15em; text-transform: uppercase; }
.smb-eyebrow::before { content: ""; width: 35px; height: 2px; background: currentColor; }
.smb-eyebrow--light { color: #ff716c; }
.smb-section { position: relative; padding: clamp(84px, 10vw, 150px) 0; }
.smb-section--light { background: var(--smb-surface); }
.smb-section--dark { background: var(--smb-dark); color: rgba(255,255,255,.77); }
.smb-section--dark h2, .smb-section--dark h3, .smb-section--dark h4 { color: var(--smb-white); }
.smb-section--steel { background: #e6e6e3; }
.smb-section-heading { max-width: 780px; margin-bottom: clamp(42px, 5vw, 72px); }
.smb-section-heading--wide { max-width: 990px; }
.smb-section-heading p:last-child { margin-bottom: 0; color: var(--smb-muted); font-size: 19px; }
.smb-center { text-align: center; }
.smb-section-action { margin-top: 52px; }

.smb-button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 28px; border: 1px solid transparent; font-size: 13px; font-weight: 850; letter-spacing: .075em; line-height: 1; text-transform: uppercase; transition: .22s ease; }
.smb-button::after { content: "→"; margin-left: 13px; font-size: 18px; transition: transform .22s ease; }
.smb-button:hover::after { transform: translateX(5px); }
.smb-button--accent { background: var(--smb-accent); color: var(--smb-white); }
.smb-button--accent:hover { background: var(--smb-accent-dark); color: var(--smb-white); transform: translateY(-2px); }
.smb-button--dark { background: var(--smb-dark); color: var(--smb-white); }
.smb-button--dark:hover { background: var(--smb-accent); color: var(--smb-white); }
.smb-button--white { background: var(--smb-white); color: var(--smb-dark); }
.smb-button--white:hover { background: var(--smb-accent); color: var(--smb-white); }
.smb-button--outline { border-color: rgba(20,21,22,.25); color: var(--smb-dark); }
.smb-button--outline:hover { border-color: var(--smb-dark); background: var(--smb-dark); color: var(--smb-white); }
.smb-button--ghost { border-color: rgba(255,255,255,.42); color: var(--smb-white); }
.smb-button--ghost:hover { background: var(--smb-white); border-color: var(--smb-white); color: var(--smb-dark); }
.smb-actions, .smb-cta-pro__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.smb-text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--smb-dark); font-size: 13px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.smb-text-link::after { content: "→"; color: var(--smb-accent); font-size: 18px; transition: transform .2s ease; }
.smb-text-link:hover::after { transform: translateX(5px); }
.smb-text-link--light { color: var(--smb-white); }

/* Homepage hero */
.smb-hero-pro { position: relative; min-height: min(850px, calc(100vh - 38px)); display: flex; align-items: center; overflow: hidden; background: var(--smb-dark); color: var(--smb-white); }
.smb-hero-pro::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to right, #000, transparent 58%); }
.smb-hero-pro::after { content: ""; position: absolute; right: -8%; top: -22%; width: 47vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.025), 0 0 0 160px rgba(255,255,255,.018); }
.smb-hero-pro__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); align-items: center; gap: clamp(44px, 7vw, 105px); padding-block: 82px; }
.smb-hero-pro__copy h1 { max-width: 830px; color: var(--smb-white); }
.smb-hero-pro__copy h1 strong { color: #ff5a55; font-weight: inherit; }
.smb-hero-pro__lead { max-width: 690px; margin-bottom: 34px; color: rgba(255,255,255,.73); font-size: clamp(18px, 1.7vw, 23px); }
.smb-hero-pro__facts { display: flex; flex-wrap: wrap; gap: 24px 38px; margin-top: 38px; color: rgba(255,255,255,.75); font-size: 13px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.smb-hero-pro__facts span { display: inline-flex; align-items: center; gap: 9px; }
.smb-hero-pro__facts span::before { content: ""; width: 7px; height: 7px; background: var(--smb-accent); }
.smb-hero-collage { position: relative; min-height: 610px; }
.smb-hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.smb-hero-collage__main { position: absolute; inset: 0 8% 12% 13%; overflow: hidden; box-shadow: 0 34px 85px rgba(0,0,0,.42); }
.smb-hero-collage__main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.25), transparent 45%); }
.smb-hero-collage__small { position: absolute; width: 38%; aspect-ratio: 1.12; overflow: hidden; border: 7px solid var(--smb-dark); box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.smb-hero-collage__small--one { right: -1%; top: 7%; }
.smb-hero-collage__small--two { left: 0; bottom: 0; }
.smb-hero-collage__badge { position: absolute; right: 0; bottom: 4%; width: 152px; height: 152px; display: grid; place-content: center; text-align: center; background: var(--smb-accent); color: var(--smb-white); font-size: 12px; font-weight: 820; line-height: 1.45; letter-spacing: .1em; text-transform: uppercase; }
.smb-hero-collage__badge strong { display: block; font-size: 35px; line-height: 1; letter-spacing: -.04em; }
.smb-trustline { background: var(--smb-accent); color: var(--smb-white); }
.smb-trustline__inner { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.smb-trustline__inner span { min-height: 40px; display: flex; align-items: center; justify-content: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,.24); font-size: 13px; font-weight: 820; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.smb-trustline__inner span:last-child { border-right: 0; }

/* Intro / split sections */
.smb-intro-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: clamp(50px, 8vw, 120px); align-items: end; }
.smb-intro-grid > div:last-child { padding-left: 36px; border-left: 1px solid var(--smb-line); }
.smb-inline-checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 24px; margin: 30px 0 36px; }
.smb-inline-checks span, .smb-checklist li { position: relative; padding-left: 26px; }
.smb-inline-checks span::before, .smb-checklist li::before { content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px; background: var(--smb-accent); }
.smb-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.smb-split__content { max-width: 650px; }
.smb-split__media { position: relative; min-height: 560px; }
.smb-split__media > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; box-shadow: var(--smb-shadow); }
.smb-split__media--stack { padding: 0 13% 13% 0; }
.smb-split__media--stack img:first-child { position: relative; z-index: 1; }
.smb-split__media--stack img:last-child { position: absolute; z-index: 2; width: 48%; height: 46%; min-height: 0; right: 0; bottom: 0; border: 8px solid var(--smb-dark); }
.smb-image-note { position: absolute; left: -30px; bottom: 32px; z-index: 3; max-width: 260px; padding: 20px 24px; background: var(--smb-accent); color: var(--smb-white); font-size: 13px; font-weight: 760; line-height: 1.5; letter-spacing: .035em; }
.smb-value-list { display: grid; gap: 17px; margin-top: 32px; }
.smb-value-list div { padding: 20px 0 20px 22px; border-left: 3px solid var(--smb-accent); border-bottom: 1px solid rgba(255,255,255,.12); }
.smb-value-list strong { display: block; margin-bottom: 4px; color: var(--smb-white); font-size: 18px; }
.smb-value-list span { color: rgba(255,255,255,.64); }

/* Services */
.smb-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; background: rgba(20,21,22,.12); border: 1px solid rgba(20,21,22,.12); }
.smb-service-card { position: relative; display: flex; flex-direction: column; min-width: 0; background: var(--smb-white); overflow: hidden; }
.smb-service-card__media { position: relative; aspect-ratio: 1.32; overflow: hidden; background: #d6d6d3; }
.smb-service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35), transparent 60%); opacity: .5; transition: opacity .3s ease; }
.smb-service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.smb-service-card:hover .smb-service-card__media img { transform: scale(1.055); }
.smb-service-card:hover .smb-service-card__media::after { opacity: .8; }
.smb-service-card__number { position: absolute; z-index: 2; top: 22px; right: 22px; width: 48px; height: 48px; display: grid; place-items: center; background: var(--smb-accent); color: var(--smb-white); font-size: 12px; font-weight: 850; }
.smb-service-card__body { flex: 1; display: flex; flex-direction: column; padding: clamp(25px, 3vw, 38px); }
.smb-service-card__body h3 { margin-bottom: 15px; font-size: clamp(23px, 2.1vw, 30px); }
.smb-service-card__body p { color: var(--smb-muted); }
.smb-service-card__body .smb-text-link { margin-top: auto; padding-top: 12px; }
.smb-service-grid--overview .smb-service-card__body { min-height: 285px; }

/* Process */
.smb-process-pro { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: steps; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.18); }
.smb-process-pro > div { position: relative; min-height: 265px; padding: 42px 30px 20px 0; border-right: 1px solid rgba(255,255,255,.14); counter-increment: steps; }
.smb-process-pro > div:not(:first-child) { padding-left: 30px; }
.smb-process-pro > div:last-child { border-right: 0; }
.smb-process-pro > div::before { content: "0" counter(steps); display: block; margin-bottom: 60px; color: #ff625d; font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.smb-process-pro h3 { font-size: 23px; }
.smb-process-pro p { color: rgba(255,255,255,.62); font-size: 15px; }
.smb-process-pro:not(.smb-process-pro--dark) { border-color: var(--smb-line); }
.smb-process-pro:not(.smb-process-pro--dark) > div { border-color: var(--smb-line); }
.smb-process-pro:not(.smb-process-pro--dark) p { color: var(--smb-muted); }

/* Projects */
.smb-project-mosaic { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-auto-rows: 260px; gap: 8px; }
.smb-project-mosaic figure, .smb-project-gallery figure { position: relative; margin: 0; overflow: hidden; background: #c8c8c6; }
.smb-project-mosaic figure:first-child { grid-row: span 2; }
.smb-project-mosaic figure:nth-child(5) { grid-column: span 2; }
.smb-project-mosaic img, .smb-project-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.smb-project-mosaic figure::after, .smb-project-gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 62%); opacity: .8; transition: opacity .3s ease; }
.smb-project-mosaic figure:hover img, .smb-project-gallery figure:hover img { transform: scale(1.045); }
.smb-project-mosaic figcaption, .smb-project-gallery figcaption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 22px; color: var(--smb-white); font-size: 16px; font-weight: 780; line-height: 1.35; }
.smb-project-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; }
.smb-project-filter button { border: 1px solid var(--smb-line); background: transparent; padding: 11px 17px; color: var(--smb-dark); font-size: 12px; font-weight: 820; letter-spacing: .06em; text-transform: uppercase; transition: .2s ease; }
.smb-project-filter button:hover, .smb-project-filter button.is-active { background: var(--smb-dark); border-color: var(--smb-dark); color: var(--smb-white); }
.smb-project-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-flow: dense; gap: 10px; }
.smb-project-gallery figure { min-height: 330px; transition: opacity .25s ease, transform .25s ease; }
.smb-project-gallery figure:nth-child(7n + 1), .smb-project-gallery figure:nth-child(7n + 5) { grid-row: span 2; min-height: 670px; }
.smb-project-gallery figure.is-hidden { display: none; }
.smb-image-index { display: inline-grid; place-items: center; width: 34px; height: 34px; margin-right: 10px; background: var(--smb-accent); font-size: 11px; }

/* Inner page hero and contents */
.smb-page-hero { position: relative; min-height: 440px; display: flex; align-items: flex-end; overflow: hidden; padding: 90px 0 75px; background: var(--smb-dark); color: var(--smb-white); }
.smb-page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 72px 72px; }
.smb-page-hero--image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,13,14,.95), rgba(12,13,14,.6) 60%, rgba(12,13,14,.48)), var(--smb-page-image) center / cover no-repeat; }
.smb-page-hero .smb-container { position: relative; z-index: 2; }
.smb-page-hero h1 { max-width: 940px; color: var(--smb-white); font-size: clamp(45px, 6vw, 78px); }
.smb-page-hero p:last-child { max-width: 780px; margin: 0; color: rgba(255,255,255,.72); font-size: 21px; }
.smb-page-content > *:not(.alignfull):not(.alignwide):not(.smb-section):not(.smb-hero-pro):not(.smb-trustline):not(.smb-cta-pro) { width: min(calc(100% - 48px), 900px); margin-left: auto; margin-right: auto; }
.smb-page-content > .alignwide { width: min(calc(100% - 48px), var(--smb-container)); margin-left: auto; margin-right: auto; }
.smb-page-content > .alignfull { width: 100%; }
.smb-split--service { align-items: stretch; }
.smb-split__media--service { min-height: 570px; }
.smb-split__media--service img { min-height: 570px; }
.smb-detail-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); }
.smb-detail-columns > div { padding: clamp(28px, 3vw, 42px); background: var(--smb-dark-2); }
.smb-detail-columns h3 { margin-bottom: 22px; font-size: 23px; }
.smb-checklist { list-style: none; margin: 0; padding: 0; }
.smb-checklist li { margin: 0 0 13px; color: rgba(255,255,255,.67); }
.smb-checklist--single li { color: var(--smb-text); }
.smb-photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.smb-photo-strip figure { position: relative; margin: 0; min-height: 390px; overflow: hidden; }
.smb-photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.smb-photo-strip figure:hover img { transform: scale(1.04); }
.smb-photo-strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 24px 22px; background: linear-gradient(transparent, rgba(0,0,0,.78)); color: var(--smb-white); font-size: 15px; font-weight: 750; }

/* Values */
.smb-values-pro { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 50px; background: var(--smb-line); border: 1px solid var(--smb-line); }
.smb-values-pro > * { min-height: 270px; padding: 35px 30px; background: var(--smb-white); }
.smb-values-pro span { display: block; margin-bottom: 58px; color: var(--smb-accent); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.smb-values-pro h3 { font-size: 23px; }
.smb-values-pro p { margin: 0; color: var(--smb-muted); font-size: 15px; }

/* FAQ */
.smb-faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.smb-faq { border-top: 1px solid var(--smb-line); }
.smb-faq details { border-bottom: 1px solid var(--smb-line); }
.smb-faq summary { position: relative; padding: 25px 55px 25px 0; color: var(--smb-dark); font-weight: 780; cursor: pointer; list-style: none; }
.smb-faq summary::-webkit-details-marker { display: none; }
.smb-faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--smb-accent); font-size: 28px; font-weight: 400; }
.smb-faq details[open] summary::after { content: "−"; }
.smb-faq details p { padding: 0 50px 20px 0; color: var(--smb-muted); }

/* Contact */
.smb-contact-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); gap: clamp(55px, 7vw, 90px); align-items: start; margin-top: clamp(56px, 7vw, 92px); }
.smb-contact-aside { position: sticky; top: 150px; padding: 38px; background: var(--smb-dark); color: rgba(255,255,255,.72); }
.smb-contact-aside h2, .smb-contact-aside h3 { color: var(--smb-white); }
.smb-contact-address { margin: 28px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.smb-contact-address strong { color: var(--smb-white); }
.smb-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.smb-form .smb-field--full, .smb-form .smb-form-actions, .smb-form .smb-consent { grid-column: 1 / -1; }
.smb-field label { display: block; margin-bottom: 8px; color: var(--smb-dark); font-size: 13px; font-weight: 780; letter-spacing: .04em; text-transform: uppercase; }
.smb-field input, .smb-field select, .smb-field textarea { width: 100%; border: 1px solid #c9cbc9; border-radius: 0; background: var(--smb-white); color: var(--smb-text); padding: 14px 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.smb-field textarea { min-height: 185px; resize: vertical; }
.smb-field input:focus, .smb-field select:focus, .smb-field textarea:focus { border-color: var(--smb-accent); box-shadow: 0 0 0 3px rgba(216,51,47,.11); }
.smb-consent { display: flex; align-items: flex-start; gap: 11px; color: var(--smb-muted); font-size: 14px; }
.smb-consent input { margin-top: 5px; }
.smb-form-notice { grid-column: 1/-1; padding: 14px 17px; border-left: 4px solid var(--smb-accent); background: #fff3f2; }
.smb-form-notice--success { border-color: #258654; background: #eef9f2; }

/* Legal */
.smb-legal { padding: clamp(70px, 8vw, 115px) 0; }
.smb-legal h2 { margin-top: 1.6em; font-size: 29px; }
.smb-legal h3 { margin-top: 1.4em; font-size: 22px; }
.smb-legal a { color: var(--smb-accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.smb-legal p, .smb-legal li { color: #44484a; }

/* CTA */
.smb-cta-pro { position: relative; overflow: hidden; background: var(--smb-accent); color: var(--smb-white); }
.smb-cta-pro::before { content: ""; position: absolute; right: -8%; top: -120%; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.19); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.07), 0 0 0 160px rgba(255,255,255,.04); }
.smb-cta-pro__layout { position: relative; z-index: 2; min-height: 330px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 60px; padding-block: 65px; }
.smb-cta-pro h2 { max-width: 760px; margin: 0; color: var(--smb-white); }
.smb-cta-pro p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.82); }
.smb-cta-pro__actions { justify-content: flex-end; }

/* Footer */
.smb-site-footer { background: #0e0f10; color: rgba(255,255,255,.62); }
.smb-footer-grid { display: grid; grid-template-columns: 1.25fr .9fr 1fr .8fr; gap: clamp(35px, 5vw, 75px); padding-block: 80px 65px; }
.smb-footer-brand img { width: auto; max-width: 220px; max-height: 68px; filter: brightness(0) invert(1); margin-bottom: 24px; }
.smb-footer-brand p { max-width: 330px; }
.smb-site-footer h2 { margin: 0 0 22px; color: var(--smb-white); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; }
.smb-site-footer ul { list-style: none; margin: 0; padding: 0; }
.smb-site-footer li { margin-bottom: 9px; }
.smb-site-footer a { color: rgba(255,255,255,.72); }
.smb-site-footer a:hover { color: #ff6863; }
.smb-footer-bottom { border-top: 1px solid rgba(255,255,255,.11); }
.smb-footer-bottom .smb-container { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }

/* Entry/fallback */
.smb-entry { padding: 90px 0; }
.smb-entry-content { width: min(calc(100% - 48px), 900px); margin-inline: auto; }
.smb-404 { min-height: 60vh; display: grid; place-content: center; text-align: center; padding: 80px 24px; }
.smb-chip { display: inline-flex; align-items: center; padding: 6px 10px; background: #eee; font-size: 12px; font-weight: 800; }

/* Motion */
.smb-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.smb-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .smb-reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --smb-header: 78px; }
  .smb-nav-inner { grid-template-columns: 205px 1fr auto; gap: 20px; }
  .smb-brand img, .smb-brand .custom-logo { max-width: 190px; }
  .smb-menu { gap: 17px; }
  .smb-menu > li > a { min-height: 78px; font-size: 12px; }
  .smb-header-cta { padding: 0 17px; }
  .smb-hero-pro__layout { grid-template-columns: 1fr .88fr; }
  .smb-service-grid { grid-template-columns: repeat(2, 1fr); }
  .smb-values-pro { grid-template-columns: repeat(2, 1fr); }
  .smb-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .smb-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 980px) {
  .admin-bar .smb-site-header.is-scrolled { top: 46px; }
  .smb-topbar { display: none; }
  .smb-nav-inner { min-height: 76px; grid-template-columns: 1fr auto auto; }
  .smb-brand img, .smb-brand .custom-logo { max-width: 190px; max-height: 55px; }
  .smb-menu-toggle { display: block; order: 3; }
  .smb-menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .smb-menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .smb-menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .smb-header-cta { justify-self: end; }
  .smb-primary-nav { position: fixed; inset: 76px 0 0; display: block; background: var(--smb-dark); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .22s ease; overflow-y: auto; }
  .admin-bar .smb-primary-nav { top: 122px; }
  .smb-primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .smb-menu { display: block; padding: 26px 24px 60px; }
  .smb-menu > li { border-bottom: 1px solid rgba(255,255,255,.12); }
  .smb-menu > li > a { min-height: 58px; color: var(--smb-white); font-size: 15px; }
  .smb-menu > li > a::after { display: none; }
  .smb-menu .sub-menu { position: static; width: auto; padding: 0 0 14px; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .smb-menu .sub-menu a { padding: 8px 18px; color: rgba(255,255,255,.68); border-left-color: rgba(255,255,255,.13); }
  .smb-menu .sub-menu a:hover { padding-left: 23px; }
  .smb-hero-pro { min-height: auto; }
  .smb-hero-pro__layout { grid-template-columns: 1fr; padding-block: 82px 95px; }
  .smb-hero-pro__copy { max-width: 780px; }
  .smb-hero-collage { min-height: 620px; width: min(100%, 710px); margin: 0 auto; }
  .smb-trustline__inner { grid-template-columns: repeat(2, 1fr); }
  .smb-trustline__inner span:nth-child(2) { border-right: 0; }
  .smb-trustline__inner span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.24); }
  .smb-intro-grid, .smb-split, .smb-faq-layout, .smb-contact-layout, .smb-cta-pro__layout { grid-template-columns: 1fr; }
  .smb-intro-grid > div:last-child { padding-left: 0; padding-top: 30px; border-left: 0; border-top: 1px solid var(--smb-line); }
  .smb-split__content { max-width: 780px; }
  .smb-process-pro { grid-template-columns: repeat(2, 1fr); }
  .smb-process-pro > div:nth-child(2) { border-right: 0; }
  .smb-process-pro > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .smb-project-mosaic { grid-template-columns: repeat(2, 1fr); }
  .smb-project-mosaic figure:first-child { grid-row: span 1; }
  .smb-project-mosaic figure:nth-child(5) { grid-column: span 1; }
  .smb-project-gallery { grid-template-columns: repeat(2, 1fr); }
  .smb-project-gallery figure:nth-child(7n + 1), .smb-project-gallery figure:nth-child(7n + 5) { grid-row: span 1; min-height: 420px; }
  .smb-detail-columns { grid-template-columns: 1fr; }
  .smb-photo-strip { grid-template-columns: 1fr 1fr; }
  .smb-photo-strip figure:first-child { grid-column: span 2; }
  .smb-contact-aside { position: static; }
  .smb-cta-pro__actions { justify-content: flex-start; }
  .smb-footer-grid { grid-template-columns: 1fr 1fr; }
  .smb-footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .smb-container { width: min(calc(100% - 30px), var(--smb-container)); }
  .smb-nav-inner { grid-template-columns: 1fr auto; }
  .smb-header-cta { display: none; }
  .smb-brand img, .smb-brand .custom-logo { max-width: 170px; }
  .smb-primary-nav { inset-top: 76px; }
  .smb-section { padding: 75px 0; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  h2 { font-size: clamp(34px, 10vw, 48px); }
  .smb-hero-pro__layout { padding-block: 65px 80px; }
  .smb-hero-pro__facts { display: grid; gap: 11px; }
  .smb-hero-collage { min-height: 455px; }
  .smb-hero-collage__main { inset: 0 4% 9% 7%; }
  .smb-hero-collage__small { width: 43%; border-width: 5px; }
  .smb-hero-collage__badge { width: 112px; height: 112px; font-size: 9px; }
  .smb-hero-collage__badge strong { font-size: 27px; }
  .smb-trustline__inner { grid-template-columns: 1fr; }
  .smb-trustline__inner span { min-height: 58px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .smb-trustline__inner span:last-child { border-bottom: 0; }
  .smb-inline-checks, .smb-service-grid, .smb-process-pro, .smb-project-mosaic, .smb-project-gallery, .smb-photo-strip, .smb-values-pro, .smb-form, .smb-footer-grid { grid-template-columns: 1fr; }
  .smb-service-card__body { min-height: auto!important; }
  .smb-process-pro > div, .smb-process-pro > div:not(:first-child) { min-height: auto; padding: 32px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .smb-process-pro > div::before { margin-bottom: 25px; }
  .smb-project-mosaic { grid-auto-rows: 300px; }
  .smb-project-gallery figure, .smb-project-gallery figure:nth-child(7n + 1), .smb-project-gallery figure:nth-child(7n + 5) { min-height: 330px; }
  .smb-photo-strip figure, .smb-photo-strip figure:first-child { grid-column: auto; min-height: 330px; }
  .smb-split__media, .smb-split__media > img, .smb-split__media--service, .smb-split__media--service img { min-height: 410px; }
  .smb-split__media--stack { padding: 0 10% 14% 0; }
  .smb-image-note { left: 0; bottom: 0; }
  .smb-values-pro > * { min-height: auto; }
  .smb-values-pro span { margin-bottom: 32px; }
  .smb-page-hero { min-height: 350px; padding: 75px 0 55px; }
  .smb-page-hero h1 { font-size: 43px; }
  .smb-contact-aside { padding: 28px 24px; }
  .smb-form .smb-field--full, .smb-form .smb-form-actions, .smb-form .smb-consent { grid-column: auto; }
  .smb-cta-pro__layout { min-height: auto; padding-block: 60px; }
  .smb-footer-grid { padding-block: 60px 45px; }
  .smb-footer-bottom .smb-container { padding-block: 20px; flex-direction: column; align-items: flex-start; }
  .smb-actions, .smb-cta-pro__actions { align-items: stretch; flex-direction: column; }
  .smb-button { width: 100%; }
}

/* Contact form shortcode */
.smb-contact-form-wrap { width: 100%; }
.smb-contact-form { display: block; }
.smb-contact-form > p { margin-bottom: 20px; }
.smb-contact-form label { display: block; margin-bottom: 8px; color: var(--smb-dark); font-size: 13px; font-weight: 780; letter-spacing: .04em; text-transform: uppercase; }
.smb-contact-form input[type="text"],
.smb-contact-form input[type="email"],
.smb-contact-form input[type="tel"],
.smb-contact-form select,
.smb-contact-form textarea { width: 100%; border: 1px solid #c9cbc9; border-radius: 0; background: var(--smb-white); color: var(--smb-text); padding: 14px 15px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.smb-contact-form textarea { min-height: 190px; resize: vertical; }
.smb-contact-form input:focus, .smb-contact-form select:focus, .smb-contact-form textarea:focus { border-color: var(--smb-accent); box-shadow: 0 0 0 3px rgba(216,51,47,.11); }
.smb-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.smb-form-grid p { margin: 0; }
.smb-checkbox label { display: flex; align-items: flex-start; gap: 10px; color: var(--smb-muted); font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.smb-checkbox input { flex: 0 0 auto; margin-top: 4px; }
.smb-checkbox a { color: var(--smb-accent-dark); text-decoration: underline; text-underline-offset: 3px; }
.smb-form-small { margin-top: 14px; color: var(--smb-muted); font-size: 13px; }
.smb-honeypot { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.smb-contact-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 2px; margin-top: 42px; background: var(--smb-line); border: 1px solid var(--smb-line); }
.smb-contact-card { padding: 30px; background: var(--smb-white); }
.smb-contact-card h3 { margin-bottom: 12px; font-size: 21px; }
.smb-contact-card p { margin-bottom: 12px; color: var(--smb-muted); }
.smb-contact-card > a { color: var(--smb-accent-dark); font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.smb-contact-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 24px; background: var(--smb-accent); color: var(--smb-white); font-size: 21px; }

/* Blog and fallback templates */
.smb-post-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; padding-block: 80px; }
.smb-post-list article { padding: 28px; background: var(--smb-white); border-top: 4px solid var(--smb-accent); }
.smb-post-list h2 { font-size: 27px; }
.smb-error-page { min-height: 62vh; display: grid; place-content: center; padding: 80px 24px; text-align: center; }
.smb-page-hero--article { min-height: 330px; }

@media (max-width: 980px) {
  .smb-contact-cards, .smb-post-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .smb-form-grid, .smb-contact-cards, .smb-post-list { grid-template-columns: 1fr; }
}

/* Modern brand lockup */
.smb-brand-link { display: inline-flex; align-items: center; gap: 12px; color: var(--smb-dark); }
.smb-brand-link:hover { color: var(--smb-dark); }
.smb-brand-mark-wrap { flex: 0 0 auto; display: grid; place-items: center; width: 52px; height: 52px; background: var(--smb-dark); }
.smb-brand-mark { width: 39px!important; height: 39px!important; object-fit: contain; filter: brightness(0) invert(1); }
.smb-brand-name { display: flex; flex-direction: column; min-width: 0; line-height: 1.02; }
.smb-brand-name strong { font-size: 17px; letter-spacing: .025em; text-transform: uppercase; white-space: nowrap; }
.smb-brand-name small { margin-top: 5px; color: var(--smb-accent); font-size: 13px; font-weight: 820; letter-spacing: .045em; }
.smb-brand-link--footer { margin-bottom: 25px; color: var(--smb-white); }
.smb-brand-link--footer:hover { color: var(--smb-white); }
.smb-brand-link--footer .smb-brand-mark-wrap { background: var(--smb-accent); }
.smb-brand-link--footer .smb-brand-name strong { color: var(--smb-white); }
.smb-brand-link--footer .smb-brand-name small { color: #ff7772; }
.smb-footer-brand .smb-brand-link + p { max-width: 330px; }
@media (max-width: 1180px) {
  .smb-brand-name strong { font-size: 15px; }
  .smb-brand-name small { font-size: 12px; }
  .smb-brand-mark-wrap { width: 47px; height: 47px; }
}
@media (max-width: 680px) {
  .smb-brand-name strong { font-size: 13px; }
  .smb-brand-name small { font-size: 11px; }
  .smb-brand-mark-wrap { width: 43px; height: 43px; }
  .smb-brand-mark { width: 32px!important; height: 32px!important; }
}
.smb-footer-brand .smb-brand-link img { margin: 0; max-width: none; max-height: none; }

/* Version 2.1 – complete internal navigation and service subpages */
.smb-breadcrumbs { margin: 0 0 24px; }
.smb-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.smb-breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 760; letter-spacing: .055em; text-transform: uppercase; }
.smb-breadcrumbs li:not(:last-child)::after { content: "/"; color: #ff716c; }
.smb-breadcrumbs a { color: rgba(255,255,255,.78); }
.smb-breadcrumbs a:hover { color: var(--smb-white); }
.smb-breadcrumbs [aria-current="page"] { color: #ff716c; }

.smb-hero-collage figure > a,
.smb-project-tile > a,
.smb-photo-strip figure > a,
.smb-split__media--service > a { position: relative; z-index: 1; display: block; width: 100%; height: 100%; color: inherit; }
.smb-hero-collage__main > a,
.smb-hero-collage__small > a { height: 100%; }
.smb-hero-collage__main figcaption span { display: block; margin-top: 5px; color: #ff8b87; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.smb-hero-collage figure > a:focus-visible,
.smb-project-tile > a:focus-visible,
.smb-photo-strip figure > a:focus-visible { outline: 3px solid #ff716c; outline-offset: -3px; }
.smb-project-mosaic figure::after,
.smb-project-gallery figure::after { z-index: 1; pointer-events: none; }
.smb-project-mosaic figure > a,
.smb-project-gallery figure > a { position: absolute; inset: 0; display: block; }
.smb-project-mosaic figcaption,
.smb-project-gallery figcaption { pointer-events: none; }
.smb-project-hint { margin: 28px 0 0; color: var(--smb-muted); font-size: 14px; }

.smb-page-content > .smb-service-directory { width: 100%!important; margin: 0!important; }
.smb-service-directory { position: relative; z-index: 8; background: var(--smb-white); border-bottom: 1px solid var(--smb-line); box-shadow: 0 12px 32px rgba(10,12,14,.06); }
.smb-service-directory > .smb-container { display: grid; grid-template-columns: 145px minmax(0,1fr); align-items: stretch; }
.smb-service-directory__overview { display: flex; align-items: center; padding: 18px 18px 18px 0; color: var(--smb-accent-dark); font-size: 12px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; border-right: 1px solid var(--smb-line); }
.smb-service-directory__overview::before { content: "←"; margin-right: 9px; font-size: 17px; }
.smb-service-directory__list { display: grid; grid-template-columns: repeat(6,minmax(135px,1fr)); overflow-x: auto; scrollbar-width: thin; }
.smb-service-directory__item { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 88px; padding: 14px 16px; border-right: 1px solid var(--smb-line); transition: background .2s ease, color .2s ease; }
.smb-service-directory__item span { margin-bottom: 4px; color: var(--smb-accent); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.smb-service-directory__item strong { font-size: 12px; line-height: 1.3; }
.smb-service-directory__item:hover,
.smb-service-directory__item.is-active { background: var(--smb-dark); color: var(--smb-white); }
.smb-service-directory__item.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--smb-accent); }

.smb-section--related { background: var(--smb-white); }
.smb-service-grid--related { grid-template-columns: repeat(3,minmax(0,1fr)); }
.smb-service-grid--related .smb-service-card__body { min-height: 290px; }
.smb-service-pager { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2px; margin-top: 64px; background: var(--smb-line); border: 1px solid var(--smb-line); }
.smb-service-pager a { display: flex; flex-direction: column; justify-content: center; min-height: 112px; padding: 24px 28px; background: var(--smb-bg); transition: background .2s ease, color .2s ease; }
.smb-service-pager a:hover { background: var(--smb-dark); color: var(--smb-white); }
.smb-service-pager span { margin-bottom: 7px; color: var(--smb-accent); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.smb-service-pager strong { font-size: 16px; line-height: 1.3; }
.smb-service-pager__overview { min-width: 180px; align-items: center; text-align: center; }
.smb-service-pager__next { align-items: flex-end; text-align: right; }

.smb-photo-strip figure::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 60%); pointer-events: none; }
.smb-photo-strip figcaption { z-index: 2; background: none; pointer-events: none; }
.smb-photo-strip figcaption span { display: block; margin-top: 5px; color: #ff8b87; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.smb-split__media--service > a img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; transition: transform .45s ease; }
.smb-split__media--service > a:hover img { transform: scale(1.025); }

/* Correct article-based grids used by the generated pages. */
.smb-process-pro > article { position: relative; min-height: 265px; padding: 42px 30px 20px 0; border-right: 1px solid rgba(255,255,255,.14); counter-increment: steps; }
.smb-process-pro > article:not(:first-child) { padding-left: 30px; }
.smb-process-pro > article:last-child { border-right: 0; }
.smb-process-pro > article > span { display: block; margin-bottom: 60px; color: #ff625d; font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.smb-process-pro:not(.smb-process-pro--dark) > article { border-color: var(--smb-line); }
.smb-process-pro:not(.smb-process-pro--dark) > article p { color: var(--smb-muted); }
.smb-detail-columns > article { padding: clamp(28px,3vw,42px); background: var(--smb-dark-2); }
.smb-detail-columns > article > span { display: block; margin-bottom: 16px; color: #ff716c; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.smb-detail-columns > article h3 { color: var(--smb-white); }
.smb-detail-columns > article ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.7); }
.smb-detail-columns > article li { margin-bottom: 10px; }

.smb-footer-services { margin: 0; padding: 0; list-style: none; }
.smb-footer-services li { margin-bottom: 8px; }
.smb-footer-request { display: inline-flex; margin-top: 12px; color: #ff7772!important; font-size: 13px; font-weight: 800; }

@media (max-width: 1120px) {
  .smb-service-directory > .smb-container { grid-template-columns: 130px minmax(0,1fr); }
  .smb-service-directory__list { grid-template-columns: repeat(6,170px); }
}

@media (max-width: 820px) {
  .smb-service-directory > .smb-container { display: block; width: 100%; }
  .smb-service-directory__overview { min-height: 52px; padding: 12px 24px; border-right: 0; border-bottom: 1px solid var(--smb-line); }
  .smb-service-directory__list { grid-template-columns: repeat(6,190px); padding-left: 16px; }
  .smb-service-directory__item { min-height: 78px; }
  .smb-service-grid--related { grid-template-columns: 1fr 1fr; }
  .smb-service-pager { grid-template-columns: 1fr 1fr; }
  .smb-service-pager__overview { grid-column: 1/-1; grid-row: 2; min-width: 0; }
}

@media (max-width: 680px) {
  .smb-breadcrumbs { margin-bottom: 18px; }
  .smb-breadcrumbs li { font-size: 10px; }
  .smb-service-grid--related { grid-template-columns: 1fr; }
  .smb-service-pager { grid-template-columns: 1fr; }
  .smb-service-pager__overview { grid-column: auto; grid-row: auto; }
  .smb-service-pager__next { align-items: flex-start; text-align: left; }
  .smb-process-pro > article,
  .smb-process-pro > article:not(:first-child) { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .smb-process-pro > article > span { margin-bottom: 22px; }
}
.smb-hero-collage__main::after { pointer-events: none; }

/* Version 2.2 – contrast-safe lists, project understanding and XeonEurope credit */
.smb-inline-checks,
.smb-checklist {
  list-style: none;
  padding-left: 0;
}
.smb-inline-checks li {
  position: relative;
  padding-left: 26px;
  color: var(--smb-text);
}
.smb-inline-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--smb-accent);
}

/* Default list text on white and light surfaces. */
.smb-checklist li,
.smb-checklist--single li,
.smb-section:not(.smb-section--dark) .smb-checklist li,
.smb-section--steel .smb-checklist li {
  color: #111315;
}

/* Dark surfaces always receive light list text and clearly visible links. */
.smb-section--dark .smb-checklist li,
.smb-contact-aside .smb-checklist li,
.smb-detail-columns li,
.smb-site-footer li {
  color: rgba(255,255,255,.88);
}
.smb-section--dark ul li a,
.smb-section--dark ol li a,
.smb-contact-aside ul li a,
.smb-contact-aside ol li a,
.smb-detail-columns ul li a,
.smb-detail-columns ol li a,
.smb-site-footer li a {
  color: #ffffff;
  text-decoration-color: rgba(255,255,255,.5);
}
.smb-section--dark ul li a:hover,
.smb-section--dark ol li a:hover,
.smb-contact-aside ul li a:hover,
.smb-contact-aside ol li a:hover,
.smb-detail-columns ul li a:hover,
.smb-detail-columns ol li a:hover,
.smb-site-footer li a:hover {
  color: #ff8b87;
  text-decoration-color: currentColor;
}

/* Content links inside lists on white/light backgrounds. */
.smb-section:not(.smb-section--dark) ul li a,
.smb-section:not(.smb-section--dark) ol li a,
.smb-legal ul li a,
.smb-legal ol li a {
  color: #8f1d1a;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.smb-section:not(.smb-section--dark) ul li a:hover,
.smb-section:not(.smb-section--dark) ol li a:hover,
.smb-legal ul li a:hover,
.smb-legal ol li a:hover {
  color: #111315;
}

/* Project understanding uses deliberately black copy on the light background. */
.smb-project-understanding .smb-split__content,
.smb-project-understanding .smb-split__content h2,
.smb-project-understanding .smb-split__content p,
.smb-project-understanding .smb-split__content li {
  color: #08090a;
}
.smb-project-understanding .smb-eyebrow {
  color: var(--smb-accent-dark);
}

/* Footer attribution. */
.smb-footer-credit a {
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: 3px;
}
.smb-footer-credit a:hover {
  color: #ff8b87;
  text-decoration-color: currentColor;
}




/* Version 2.3.0: accessible three-image hero slider */
.smb-hero-slider { position: relative; min-height: 610px; overflow: hidden; background: #0b0c0d; box-shadow: 0 34px 85px rgba(0,0,0,.42); isolation: isolate; }
.smb-hero-slider__viewport { position: absolute; inset: 0; }
.smb-hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .75s ease, visibility .75s ease, transform 6s ease; }
.smb-hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.smb-hero-slide > a { position: absolute; inset: 0; display: block; color: #fff; }
.smb-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.smb-hero-slide__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03) 20%, rgba(0,0,0,.78) 100%); }
.smb-hero-slide__caption { position: absolute; z-index: 2; left: clamp(24px,4vw,48px); right: 120px; bottom: clamp(62px,8vw,92px); display: grid; gap: 5px; }
.smb-hero-slide__caption small { color: #ff7772; font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.smb-hero-slide__caption strong { color: #fff; font-size: clamp(24px,3vw,42px); line-height: 1.05; letter-spacing: -.035em; }
.smb-hero-slide__caption em { color: rgba(255,255,255,.82); font-size: 13px; font-style: normal; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.smb-hero-slider__controls { position: absolute; z-index: 5; left: 28px; bottom: 25px; display: flex; align-items: center; gap: 13px; }
.smb-slider-arrow { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: rgba(10,10,10,.32); color: #fff; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.smb-slider-arrow:hover, .smb-slider-arrow:focus-visible { background: var(--smb-accent); border-color: var(--smb-accent); transform: translateY(-2px); }
.smb-slider-dots { display: flex; align-items: center; gap: 8px; }
.smb-slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.43); cursor: pointer; transition: width .25s ease, background .25s ease; }
.smb-slider-dots button.is-active { width: 30px; background: #fff; }
.smb-hero-slider__badge { position: absolute; z-index: 5; right: 0; top: 0; width: 145px; height: 145px; display: grid; place-content: center; padding: 18px; text-align: center; background: var(--smb-accent); color: #fff; font-size: 10px; font-weight: 820; line-height: 1.35; letter-spacing: .1em; text-transform: uppercase; }
.smb-hero-slider__badge strong { display: block; margin-top: 5px; font-size: 22px; line-height: 1; letter-spacing: -.035em; }

/* Footer logo requested by the client. */
.smb-footer-logo-link { display: inline-flex; align-items: center; width: min(100%, 290px); margin-bottom: 24px; }
.smb-footer-logo { display: block; width: auto!important; max-width: 100%!important; height: auto!important; max-height: 105px!important; margin: 0!important; object-fit: contain; filter: none!important; }

/* Contact upload field */
.smb-upload-field { margin: 0 0 22px; padding: 20px; border: 1px dashed #aaaeaa; background: #f4f5f3; }
.smb-upload-field > label { margin-bottom: 11px; }
.smb-upload-field input[type="file"] { width: 100%; padding: 12px; border: 1px solid #c9cbc9; background: #fff; color: var(--smb-text); }
.smb-upload-help, .smb-upload-status, .smb-upload-warning { margin: 9px 0 0; font-size: 13px; line-height: 1.55; text-transform: none; letter-spacing: 0; }
.smb-upload-help { color: #4c504c; }
.smb-upload-status { min-height: 20px; color: #18743a; font-weight: 750; }
.smb-upload-status.is-error, .smb-upload-warning { color: #9a211e; }
.smb-upload-warning { padding: 10px 12px; background: #fff0ef; border-left: 3px solid var(--smb-accent); }
.smb-upload-warning code { color: inherit; }

@media (max-width: 980px) {
  .smb-hero-slider { min-height: 620px; width: min(100%, 710px); margin: 0 auto; }
}
@media (max-width: 620px) {
  .smb-hero-slider { min-height: 455px; }
  .smb-hero-slide__caption { left: 22px; right: 28px; bottom: 78px; }
  .smb-hero-slider__controls { left: 20px; bottom: 20px; }
  .smb-hero-slider__badge { width: 100px; height: 100px; padding: 12px; font-size: 8px; }
  .smb-hero-slider__badge strong { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .smb-hero-slide { transition: none; transform: none; }
}

/* Version 2.3.1: readable service list in the dark contact panel. */
.smb-contact-aside .smb-checklist,
.smb-contact-aside .smb-checklist--single {
  color: #ffffff !important;
}
.smb-contact-aside .smb-checklist > li,
.smb-contact-aside .smb-checklist--single > li,
.smb-contact-aside .smb-checklist > li a,
.smb-contact-aside .smb-checklist--single > li a,
.smb-contact-aside .smb-checklist > li span,
.smb-contact-aside .smb-checklist--single > li span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}
.smb-contact-aside .smb-checklist > li::before,
.smb-contact-aside .smb-checklist--single > li::before {
  background: #ff5a55 !important;
  opacity: 1 !important;
}

/* Version 2.3.3: more space around the project enquiry form. */
#anfrageformular { scroll-margin-top: 150px; }
.smb-contact-form-wrap { padding-top: 8px; }
@media (max-width: 680px) {
  .smb-contact-layout { margin-top: 44px; }
  .smb-contact-form-wrap { padding-top: 4px; }
}


/* Version 2.3.4: force readable lists in dark service detail cards. */
.smb-section--steel .smb-detail-columns ul,
.smb-section--steel .smb-detail-columns ol,
.smb-section--steel .smb-detail-columns li,
.smb-section--steel .smb-detail-columns li span,
.smb-section--steel .smb-detail-columns li strong,
.smb-detail-columns ul,
.smb-detail-columns ol,
.smb-detail-columns li,
.smb-detail-columns li span,
.smb-detail-columns li strong {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}
.smb-section--steel .smb-detail-columns li::marker,
.smb-detail-columns li::marker {
  color: #ff5a55 !important;
}
