:root {
  --sm-teal: #008082;
  --sm-teal-dark: #006568;
  --sm-teal-soft: #dff3f1;
  --sm-coral: #e8ad8c;
  --sm-coral-soft: #f7ded0;
  --sm-ink: #102c34;
  --sm-body: #40535a;
  --sm-muted: #63767c;
  --sm-soft: #f6f2ec;
  --sm-white: #fff;
  --sm-border: #d7e2df;
  --sm-success: #12663f;
  --sm-error: #9b2f2f;
  --sm-radius-sm: 10px;
  --sm-radius: 16px;
  --sm-radius-lg: 24px;
  --sm-shadow: 0 20px 55px rgba(16, 44, 52, .11);
  --sm-shadow-soft: 0 10px 30px rgba(16, 44, 52, .07);
  --sm-container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  color: var(--sm-body);
  background: var(--sm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--sm-teal-dark); text-underline-offset: 3px; }
a:hover { color: var(--sm-teal); }
h1, h2, h3, h4 { color: var(--sm-ink); line-height: 1.14; letter-spacing: -.025em; margin: 0 0 .62em; text-wrap: balance; }
h1 { font-size: clamp(2.55rem, 4.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.1vw, 3.05rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1.15em; }
ul, ol { margin-top: 0; }
button, input, select, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--sm-coral); outline-offset: 4px; }
::selection { background: var(--sm-coral-soft); color: var(--sm-ink); }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal!important; }
.sm-skip-link { position: fixed; left: 16px; top: -100px; z-index: 99999; background: var(--sm-ink); color: white; padding: 12px 18px; border-radius: 0 0 10px 10px; }
.sm-skip-link:focus { top: 0; }
.sm-container { width: min(calc(100% - 40px), var(--sm-container)); margin-inline: auto; }
.sm-narrow { max-width: 780px; }
.sm-main { min-height: 60vh; }
.sm-section { padding: clamp(64px, 7vw, 96px) 0; }
.sm-section-soft { background: var(--sm-soft); }
.sm-section-dark { background: var(--sm-ink); color: #dce9e8; }
.sm-section-dark h2, .sm-section-dark h3 { color: white; }
.sm-section-dark .sm-eyebrow { color: #83d4d0; }
.sm-eyebrow { color: var(--sm-teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.sm-lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.62; }
.sm-lead-sm { font-size: 1.12rem; }
.sm-small { font-size: .88rem; }
.sm-button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.sm-button-row-center { justify-content: center; }
.sm-button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 12px 21px;
  border: 2px solid var(--sm-teal); border-radius: var(--sm-radius-sm); background: var(--sm-teal); color: white; font-weight: 760;
  line-height: 1.2; text-decoration: none; cursor: pointer; transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.sm-button:hover { background: var(--sm-teal-dark); border-color: var(--sm-teal-dark); color: white; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0, 101, 104, .18); }
.sm-button-small { min-height: 42px; padding: 9px 15px; font-size: .88rem; white-space: nowrap; }
.sm-button-light { background: white; border-color: white; color: var(--sm-ink); }
.sm-button-light:hover { background: var(--sm-coral); border-color: var(--sm-coral); color: var(--sm-ink); }
.sm-button-ghost { background: transparent; border-color: rgba(255,255,255,.58); color: white; }
.sm-button-ghost:hover { border-color: white; background: rgba(255,255,255,.09); }
.sm-text-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 800; text-decoration-thickness: 2px; }

/* Header */
.sm-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); box-shadow: 0 1px 0 var(--sm-border); backdrop-filter: blur(12px); }
.admin-bar .sm-header { top: 32px; }
.sm-topbar { background: var(--sm-ink); color: #d9e7e6; font-size: .8rem; }
.sm-topbar-inner, .sm-topbar-links { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sm-topbar-inner { min-height: 32px; }
.sm-topbar a { color: white; text-decoration: none; }
.sm-navbar { min-height: 78px; display: grid; grid-template-columns: 174px minmax(0,1fr) auto; align-items: center; gap: 18px; }
.sm-brand { display: block; }
.sm-brand img { width: 168px; max-height: 58px; object-fit: contain; object-position: left center; }
.sm-navigation { min-width: 0; }
.sm-menu { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 1.25vw, 21px); list-style: none; margin: 0; padding: 0; }
.sm-menu li { position: relative; margin: 0; }
.sm-menu > li > a { color: var(--sm-ink); font-size: clamp(.84rem,.82vw,.92rem); font-weight: 710; text-decoration: none; white-space: nowrap; }
.sm-menu a:hover, .sm-menu .current-menu-item > a, .sm-menu .current-menu-ancestor > a { color: var(--sm-teal); }
.sm-menu .menu-item-has-children > a::after { content: "⌄"; display: inline-block; margin-left: 5px; font-size: .85em; }
.sm-menu .sub-menu {
  display: none; position: absolute; left: 50%; top: calc(100% + 15px); transform: translateX(-50%); width: 290px;
  margin: 0; padding: 10px; list-style: none; background: white; border: 1px solid var(--sm-border); border-radius: 13px; box-shadow: var(--sm-shadow);
}
.sm-menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.sm-menu .sub-menu a { display: block; padding: 10px 12px; color: var(--sm-ink); border-radius: 8px; font-size: .89rem; font-weight: 680; text-decoration: none; white-space: normal; }
.sm-menu .sub-menu a:hover, .sm-menu .sub-menu a:focus { background: var(--sm-soft); color: var(--sm-teal-dark); }
.sm-menu li:hover > .sub-menu, .sm-menu li:focus-within > .sub-menu { display: block; }
.sm-header-actions { display: flex; align-items: center; gap: 14px; }
.sm-language { display: flex; align-items: center; gap: 5px; color: #73858a; font-size: .78rem; }
.sm-language a { color: #73858a; text-decoration: none; }
.sm-language a:hover, .sm-language a.is-current { color: var(--sm-ink); font-weight: 800; }
.sm-mobile-actions, .sm-menu-toggle { display: none; }
.sm-menu-toggle { width: 46px; height: 46px; border: 1px solid var(--sm-border); background: white; border-radius: var(--sm-radius-sm); cursor: pointer; }
.sm-menu-icon, .sm-menu-icon::before, .sm-menu-icon::after { display: block; width: 22px; height: 2px; background: var(--sm-ink); margin: auto; content: ""; transition: transform .2s; }
.sm-menu-icon::before { transform: translateY(-7px); }
.sm-menu-icon::after { transform: translateY(5px); }
.sm-menu-toggle[aria-expanded="true"] .sm-menu-icon { background: transparent; }
.sm-menu-toggle[aria-expanded="true"] .sm-menu-icon::before { transform: translateY(1px) rotate(45deg); }
.sm-menu-toggle[aria-expanded="true"] .sm-menu-icon::after { transform: translateY(-1px) rotate(-45deg); }

/* Hero */
.sm-hero { position: relative; min-height: min(660px, 70vh); display: flex; align-items: center; overflow: hidden; background: var(--sm-ink); }
.sm-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(10,30,36,.96) 0%, rgba(10,30,36,.86) 38%, rgba(10,30,36,.22) 69%, rgba(10,30,36,.02) 100%), var(--hero-image); background-size: cover; background-position: center; }
.sm-hero-inner { position: relative; z-index: 2; padding-block: 66px; }
.sm-hero-copy { max-width: 720px; color: #edf5f4; }
.sm-hero h1 { color: white; font-size: clamp(2.7rem, 4.7vw, 4.35rem); max-width: 760px; }
.sm-hero .sm-eyebrow { color: #8bddda; }
.sm-hero .sm-lead { max-width: 680px; color: #d7e7e5; }
.sm-trust-strip { background: white; border-bottom: 1px solid var(--sm-border); }
.sm-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.sm-trust-grid > div { padding: 22px; border-right: 1px solid var(--sm-border); }
.sm-trust-grid > div:first-child { border-left: 1px solid var(--sm-border); }
.sm-trust-grid strong, .sm-trust-grid span { display: block; }
.sm-trust-grid strong { color: var(--sm-ink); font-size: 1.02rem; }
.sm-trust-grid span { color: var(--sm-muted); font-size: .84rem; }

/* Routes and sections */
.sm-section-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(35px,6vw,75px); align-items: end; margin-bottom: 40px; }
.sm-section-head h2 { margin-bottom: 0; }
.sm-section-head > p { max-width: 540px; }
.sm-route-section { background: linear-gradient(180deg,#fff 0%,#fbfdfc 100%); }
.sm-route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sm-route-card { min-height: 270px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--sm-border); border-radius: var(--sm-radius-lg); background: white; color: var(--sm-body); box-shadow: var(--sm-shadow-soft); text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s; }
.sm-route-card:hover { transform: translateY(-3px); border-color: #a6cbc8; box-shadow: var(--sm-shadow); color: var(--sm-body); }
.sm-route-card h3 { margin-top: 32px; font-size: clamp(1.5rem,2.3vw,2rem); }
.sm-route-card p { max-width: 560px; }
.sm-route-card strong { margin-top: auto; color: var(--sm-teal-dark); }
.sm-route-card-accent { background: var(--sm-ink); border-color: var(--sm-ink); color: #d9e8e7; }
.sm-route-card-accent h3, .sm-route-card-accent strong { color: white; }
.sm-route-card-accent .sm-card-number { color: #8bddda; }
.sm-card-grid { display: grid; gap: 16px; }
.sm-card-grid-4 { grid-template-columns: repeat(4,1fr); }
.sm-card-grid-3 { grid-template-columns: repeat(3,1fr); }
.sm-service-card { position: relative; min-height: 300px; padding: 31px 25px; border: 1px solid var(--sm-border); border-radius: var(--sm-radius); background: white; display: flex; flex-direction: column; overflow: hidden; }
.sm-service-card::after { content: ""; width: 44px; height: 3px; background: var(--sm-coral); position: absolute; left: 25px; top: 0; }
.sm-service-card h2, .sm-service-card h3 { margin-top: 29px; }
.sm-service-card p { font-size: .95rem; }
.sm-service-card > a { margin-top: auto; font-weight: 800; text-decoration: none; }
.sm-service-card-accent { background: var(--sm-teal); color: white; border-color: var(--sm-teal); }
.sm-service-card-accent h3, .sm-service-card-accent > a { color: white; }
.sm-card-number { color: #7b8e92; font-weight: 850; font-size: .8rem; letter-spacing: .12em; }
.sm-service-card-accent .sm-card-number { color: #c9f0ee; }
.sm-split { display: grid; grid-template-columns: minmax(0,1.03fr) minmax(0,.97fr); align-items: center; gap: clamp(42px, 6vw, 86px); }
.sm-split-reverse > :first-child { order: 2; }
.sm-split-reverse > :last-child { order: 1; }
.sm-align-start { align-items: start; }
.sm-image-frame { position: relative; overflow: hidden; border-radius: var(--sm-radius-lg); box-shadow: var(--sm-shadow); background: #e8efed; }
.sm-image-frame::after { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.58); border-radius: 13px; pointer-events: none; }
.sm-image-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sm-product-list { display: grid; grid-template-columns: 1fr 1fr; margin: 24px 0; border-top: 1px solid #cfdad7; }
.sm-product-list a { display: flex; justify-content: space-between; gap: 12px; padding: 14px 0; margin-right: 20px; color: var(--sm-ink); border-bottom: 1px solid #cfdad7; text-decoration: none; font-weight: 720; }
.sm-product-list a:hover { color: var(--sm-teal); }
.sm-process { display: grid; grid-template-columns: repeat(5,1fr); list-style: none; margin: 0; padding: 0; border-radius: var(--sm-radius); overflow: hidden; border: 1px solid var(--sm-border); background: white; }
.sm-process li { position: relative; min-width: 0; padding: 27px 21px 22px; border-top: 3px solid var(--sm-teal); border-right: 1px solid var(--sm-border); }
.sm-process li:last-child { border-right: 0; }
.sm-process span { display: block; color: var(--sm-teal-dark); font-weight: 900; font-size: .8rem; margin-bottom: 28px; }
.sm-process li:not(:last-child)::after { content: "→"; position: absolute; top: 18px; right: -10px; z-index: 2; background: white; color: #bd6f45; padding: 0 3px; }
.sm-process h3 { font-size: 1.04rem; }
.sm-process p { font-size: .85rem; line-height: 1.52; margin-bottom: 0; }
.sm-check-list { padding: 0; margin: 24px 0; list-style: none; display: grid; gap: 10px; }
.sm-check-list li { position: relative; padding-left: 29px; }
.sm-check-list li::before { content: "✓"; position: absolute; left: 0; color: #76d2ce; font-weight: 900; }
.sm-check-list-light li::before { color: var(--sm-teal); }
.sm-chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 30px; }
.sm-chip-list span { padding: 7px 12px; border: 1px solid #bdcfcc; color: var(--sm-ink); background: white; border-radius: 100px; font-size: .84rem; font-weight: 670; }
.sm-industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--sm-border); border: 1px solid var(--sm-border); border-radius: var(--sm-radius); overflow: hidden; }
.sm-industry-grid div { min-height: 108px; background: white; display: flex; align-items: flex-end; padding: 25px; color: var(--sm-ink); font-weight: 780; }
.sm-accordion { width: 100%; }
.sm-accordion details { border-top: 1px solid var(--sm-border); }
.sm-accordion details:last-child { border-bottom: 1px solid var(--sm-border); }
.sm-accordion summary { cursor: pointer; padding: 18px 40px 18px 0; color: var(--sm-ink); font-weight: 780; list-style: none; position: relative; }
.sm-accordion summary::-webkit-details-marker { display: none; }
.sm-accordion summary::after { content: "+"; position: absolute; right: 8px; font-size: 1.4rem; color: var(--sm-teal); }
.sm-accordion details[open] summary::after { content: "–"; }
.sm-accordion details p { padding-right: 30px; }
.sm-accordion-wide { max-width: 850px; margin: 30px auto 65px; }
.sm-final-cta { padding: clamp(68px, 8vw, 98px) 0; text-align: center; background: var(--sm-teal-dark); color: #e9f5f4; }
.sm-final-cta h2 { color: white; max-width: 820px; margin-inline: auto; }
.sm-final-cta p:not(.sm-eyebrow) { max-width: 680px; margin-inline: auto; }
.sm-final-cta .sm-eyebrow { color: #a8e4e1; }

/* Pages */
.sm-page-hero { padding: clamp(52px, 6vw, 78px) 0; background: var(--sm-soft); border-bottom: 1px solid var(--sm-border); }
.sm-page-hero h1 { font-size: clamp(2.5rem, 4.6vw, 4rem); margin-bottom: 0; }
.sm-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: var(--sm-muted); font-size: .82rem; }
.sm-breadcrumb a { color: var(--sm-muted); }
.sm-page-content { padding-block: clamp(58px, 7vw, 88px); }
.sm-page-content > p, .sm-page-content > h2, .sm-page-content > h3, .sm-page-content > ul, .sm-page-content > ol { max-width: 780px; }
.sm-page-content > h2 { margin-top: 1.3em; }
.sm-intro { max-width: 820px; margin-bottom: 48px; }
.sm-page-split { margin-bottom: 64px; }
.sm-category-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--sm-border); border: 1px solid var(--sm-border); border-radius: var(--sm-radius); overflow: hidden; margin-bottom: 55px; }
.sm-category-grid article { background: white; padding: 30px; }
.sm-category-grid h2 { font-size: 1.34rem; }
.sm-category-grid p { margin-bottom: 0; }
.sm-spec-box { margin-top: 52px; padding: clamp(28px,4vw,48px); background: var(--sm-soft); border-left: 5px solid var(--sm-teal); border-radius: var(--sm-radius); }
.sm-notice { padding: 19px 22px; margin: 32px 0; background: #fff8e8; border-left: 4px solid #b66e20; border-radius: var(--sm-radius-sm); color: #62471f; }
.sm-quote-card { padding: 40px; background: var(--sm-ink); border-radius: var(--sm-radius-lg); color: white; }
.sm-quote-card p { font-size: clamp(1.5rem,2.8vw,2.2rem); line-height: 1.35; color: white; }
.sm-quote-card span { color: #9bcac6; font-weight: 750; font-size: 1rem; }
.sm-contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--sm-border); border: 1px solid var(--sm-border); border-radius: var(--sm-radius); overflow: hidden; margin-bottom: 52px; }
.sm-contact-cards > div { background: white; padding: 24px; overflow-wrap: anywhere; }
.sm-contact-cards span, .sm-contact-cards a, .sm-contact-cards strong { display: block; }
.sm-contact-cards span { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--sm-muted); font-weight: 800; }
.sm-contact-cards a, .sm-contact-cards strong { margin-top: 7px; color: var(--sm-ink); font-weight: 750; text-decoration: none; }

/* Enquiry forms */
.sm-enquiry-panels { display: grid; gap: 18px; scroll-margin-top: 130px; }
.sm-enquiry-panel { border: 1px solid var(--sm-border); border-radius: var(--sm-radius-lg); overflow: hidden; background: white; box-shadow: var(--sm-shadow-soft); }
.sm-enquiry-panel > summary { display: flex; align-items: center; gap: 18px; padding: 24px 28px; cursor: pointer; list-style: none; background: #fbfdfc; color: var(--sm-ink); }
.sm-enquiry-panel > summary::-webkit-details-marker { display: none; }
.sm-enquiry-panel > summary::after { content: "+"; margin-left: auto; color: var(--sm-teal); font-size: 1.65rem; }
.sm-enquiry-panel[open] > summary::after { content: "–"; }
.sm-enquiry-panel > summary strong, .sm-enquiry-panel > summary small { display: block; }
.sm-enquiry-panel > summary strong { font-size: 1.14rem; }
.sm-enquiry-panel > summary small { margin-top: 3px; color: var(--sm-muted); font-size: .88rem; }
.sm-panel-number { display: grid; place-items: center; flex: 0 0 42px; height: 42px; border-radius: 50%; background: var(--sm-teal-soft); color: var(--sm-teal-dark); font-size: .76rem; font-weight: 850; }
.sm-enquiry-body { padding: clamp(25px,4vw,44px); border-top: 1px solid var(--sm-border); background: var(--sm-soft); }
.sm-form { max-width: 900px; }
.sm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.sm-field { margin-bottom: 17px; }
.sm-field-textarea { grid-column: 1 / -1; }
.sm-field label { display: block; margin-bottom: 7px; color: var(--sm-ink); font-size: .9rem; font-weight: 750; }
.sm-field input, .sm-field select, .sm-field textarea { width: 100%; min-height: 50px; padding: 10px 12px; border: 1px solid #9fb3af; border-radius: 10px; background: white; color: var(--sm-ink); }
.sm-field textarea { min-height: 116px; resize: vertical; }
.sm-field input:focus, .sm-field select:focus, .sm-field textarea:focus { border-color: var(--sm-teal); outline: 3px solid rgba(0,128,130,.15); }
.sm-form-more { margin: 8px 0 18px; border: 1px solid var(--sm-border); border-radius: 12px; background: white; }
.sm-form-more > summary { cursor: pointer; list-style: none; padding: 14px 18px; color: var(--sm-teal-dark); font-weight: 780; }
.sm-form-more > summary::-webkit-details-marker { display: none; }
.sm-form-more > summary::after { content: "+"; float: right; font-size: 1.3rem; }
.sm-form-more[open] > summary::after { content: "–"; }
.sm-form-more > .sm-form-grid { padding: 8px 18px 2px; border-top: 1px solid var(--sm-border); }
.sm-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font-size: .88rem; }
.sm-consent input { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 3px; }
.sm-form-note { margin: 14px 0 0; font-size: .82rem; color: var(--sm-muted); }
.sm-honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.sm-alert { padding: 15px 18px; margin-bottom: 22px; border-left: 4px solid; border-radius: 8px; }
.sm-alert-success { background: #eaf7ef; border-color: var(--sm-success); color: var(--sm-success); }
.sm-alert-error { background: #fff0f0; border-color: var(--sm-error); color: var(--sm-error); }
.cf-turnstile { margin: 18px 0; }

/* Blog, tables, WordPress content and 404 */
.sm-post-list { padding-block: 62px; }
.sm-post-card { max-width: 780px; padding: 27px 0; border-bottom: 1px solid var(--sm-border); }
.sm-post-card h2 { font-size: 1.65rem; }
.sm-post-card h2 a { color: var(--sm-ink); text-decoration: none; }
.sm-error-page { padding: clamp(90px,11vw,160px) 0; background: var(--sm-soft); }
.sm-page-content table { width: 100%; border-collapse: collapse; margin: 28px 0; }
.sm-page-content th, .sm-page-content td { padding: 12px; border: 1px solid var(--sm-border); text-align: left; }
.sm-page-content th { background: var(--sm-soft); color: var(--sm-ink); }
.alignwide { width: min(100%, var(--sm-container)); }
.aligncenter { margin-inline: auto; }

/* Footer */
.sm-footer { background: #0b2229; color: #bfd1d2; padding-top: 62px; }
.sm-footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1fr; gap: 45px; }
.sm-footer h2 { color: white; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; }
.sm-footer-logo { width: 190px; margin-bottom: 18px; }
.sm-footer p { font-size: .91rem; max-width: 360px; }
.sm-footer ul { list-style: none; margin: 0; padding: 0; }
.sm-footer li { margin: 8px 0; font-size: .91rem; overflow-wrap: anywhere; }
.sm-footer a { color: #e5eeee; text-decoration: none; }
.sm-footer a:hover { color: var(--sm-coral); }
.sm-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); }
.sm-footer-bottom p { margin: 0; }
.sm-back-to-top { font-weight: 740; }

@media (max-width: 1160px) {
  .admin-bar .sm-header { top: 32px; }
  .sm-navbar { min-height: 74px; grid-template-columns: 1fr auto; }
  .sm-brand img { width: 176px; }
  .sm-menu-toggle { display: block; }
  .sm-navigation { display: none; position: absolute; left: 0; right: 0; top: 106px; max-height: calc(100vh - 106px); overflow-y: auto; background: white; border-top: 1px solid var(--sm-border); box-shadow: var(--sm-shadow); }
  .sm-navigation.is-open { display: block; }
  .sm-navigation .sm-menu { display: block; padding: 14px 20px 6px; }
  .sm-navigation .sm-menu > li { border-bottom: 1px solid var(--sm-border); }
  .sm-navigation .sm-menu > li > a { display: block; padding: 13px 4px; font-size: 1rem; }
  .sm-menu .sub-menu { display: block; position: static; transform: none; width: auto; padding: 0 0 10px 16px; border: 0; border-radius: 0; box-shadow: none; }
  .sm-menu .sub-menu::before, .sm-menu .menu-item-has-children > a::after { display: none; }
  .sm-menu .sub-menu a { padding: 8px 4px; color: var(--sm-muted); }
  .sm-header-actions { display: none; }
  .sm-mobile-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px 22px; }
  .sm-section-head { grid-template-columns: 1fr; gap: 14px; }
  .sm-split, .sm-split-reverse { grid-template-columns: 1fr; }
  .sm-split-reverse > :first-child, .sm-split-reverse > :last-child { order: initial; }
  .sm-card-grid-4 { grid-template-columns: 1fr 1fr; }
  .sm-process { grid-template-columns: 1fr; }
  .sm-process li { border-right: 0; border-top: 0; border-bottom: 1px solid var(--sm-border); padding: 21px 24px; }
  .sm-process li:first-child { border-top: 3px solid var(--sm-teal); }
  .sm-process li:last-child { border-bottom: 0; }
  .sm-process li:not(:last-child)::after { content: "↓"; top: auto; bottom: -15px; right: 24px; }
  .sm-process span { margin-bottom: 8px; }
  .sm-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
  .admin-bar .sm-header { top: 46px; }
}

@media (max-width: 760px) {
  .sm-topbar { display: none; }
  .sm-navigation { top: 74px; max-height: calc(100vh - 74px); }
  .sm-route-grid, .sm-trust-grid, .sm-card-grid-4, .sm-card-grid-3, .sm-category-grid, .sm-contact-cards, .sm-industry-grid { grid-template-columns: 1fr; }
  .sm-trust-grid > div, .sm-trust-grid > div:first-child { border-left: 1px solid var(--sm-border); }
  .sm-route-card { min-height: 235px; padding: 28px; }
  .sm-section { padding-block: 60px; }
  .sm-image-frame { border-radius: 18px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 82px; }
  .sm-container { width: min(calc(100% - 28px), var(--sm-container)); }
  .sm-navbar { min-height: 70px; }
  .sm-brand img { width: 165px; }
  .sm-navigation { top: 70px; max-height: calc(100vh - 70px); }
  .sm-hero { min-height: 590px; align-items: flex-end; }
  .sm-hero::before { background-image: linear-gradient(0deg, rgba(10,30,36,.98) 0%, rgba(10,30,36,.84) 66%, rgba(10,30,36,.34) 100%), var(--hero-image); background-position: 66% center; }
  .sm-hero-inner { padding-block: 54px; }
  .sm-hero h1 { font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .sm-service-card { min-height: 245px; }
  .sm-product-list, .sm-form-grid, .sm-form-more > .sm-form-grid { grid-template-columns: 1fr; }
  .sm-contact-cards { margin-bottom: 35px; }
  .sm-enquiry-panel > summary { padding: 20px; }
  .sm-panel-number { flex-basis: 38px; height: 38px; }
  .sm-page-hero { padding-block: 45px; }
  .sm-breadcrumb { margin-bottom: 22px; }
  .sm-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .sm-footer-bottom { display: block; }
  .sm-footer-bottom .sm-back-to-top { display: inline-block; margin-top: 12px; }
  .sm-button-row .sm-button { width: 100%; }
  .sm-mobile-actions { align-items: stretch; flex-direction: column; }
  .sm-mobile-actions .sm-language { justify-content: center; }
}

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

