/* =========================================================================
   Summit — public site theme
   Structured corporate: utility strip + white sticky header, CONTAINED hero
   banner with an enquiry box, card-driven homepage (3-up highlights, stats
   band, news cards, gallery grid), full-width content pages with breadcrumbs.

   Palette: navy #10233c, blue #1a73e8, gold #e8b23a, green #0f6b5c
   Font: Plus Jakarta Sans (loaded by the layout via cms_theme_meta fonts_url)

   Everything structural below is scoped to `.summit-theme` — the root class
   the layout puts on <html> — so nothing leaks into the other three themes.
   Written as plain CSS rather than Tailwind utilities on purpose: app.css is
   a pre-built Tailwind bundle with no build step wired into this repo, so a
   newly invented utility class would simply not exist at runtime.
   ========================================================================= */
:root {
  --db-primary:        #10233c;
  --db-primary-dark:   #0b1a2e;
  --db-accent:         #e8b23a;
  --db-accent-dark:    #c99423;
  --db-accent2:        #1a73e8;
  --db-accent2-dark:   #135cba;
  --db-success:        #0f6b5c;
  --db-success-dark:   #0b5147;

  --db-ink:            #1c2733;
  --db-muted:          #5c6b7e;
  --db-muted-on-dark:  #b9c6d8;
  --db-line:           #e4e9f0;
  --db-panel:          #f5f8fc;
  --db-surface:        #ffffff;

  --db-header-bg:      #ffffff;
  --db-header-fg:        #10233c;
  --db-header-fg-muted:  #5c6b7e;
  --db-topbar-bg:      #0b1a2e;
  --db-footer-bg:      #10233c;
  --db-footer-fg:      #cfd9e6;

  --db-radius:         14px;
  --db-radius-pill:    10px;

  --db-font-heading: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --db-font-body:    'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ----------------------------------------------------------------- base -- */
:where(.summit-theme),
:where(.summit-theme) body {
  margin: 0;
  background: var(--db-panel);
  color: var(--db-ink);
  font-family: var(--db-font-body);
  -webkit-font-smoothing: antialiased;
}
:where(.summit-theme) *,
:where(.summit-theme) *::before,
:where(.summit-theme) *::after { box-sizing: border-box; }
:where(.summit-theme) img { max-width: 100%; }
:where(.summit-theme) a { color: inherit; text-decoration: none; }
:where(.summit-theme) h1, :where(.summit-theme) h2, :where(.summit-theme) h3, :where(.summit-theme) h4 {
  font-family: var(--db-font-heading);
  margin: 0;
  line-height: 1.2;
}
:where(.summit-theme) p { margin: 0; }
:where(.summit-theme) ul { margin: 0; padding: 0; list-style: none; }

.smt-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.smt-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--db-accent2);
}
.smt-rule {
  width: 46px;
  height: 3px;
  background: var(--db-accent);
  margin: 12px 0 0;
}
.smt-sec-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--db-primary);
  margin-top: 8px;
}
.smt-sec-sub { color: var(--db-muted); font-size: 14px; margin-top: 8px; max-width: 620px; }

/* --------------------------------------------------------- utility strip -- */
.smt-utility {
  background: var(--db-topbar-bg);
  color: var(--db-muted-on-dark);
  font-size: 12px;
  border-bottom: 3px solid var(--db-accent);
}
.smt-utility .smt-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  min-height: 38px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.smt-utility a { color: var(--db-muted-on-dark); }
.smt-utility a:hover { color: #fff; }
.smt-util-item { display: inline-flex; align-items: center; gap: 7px; }
.smt-util-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.smt-util-sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.smt-util-social { display: inline-flex; gap: 7px; }
.smt-util-social a {
  width: 22px; height: 22px; border-radius: 4px;
  background: rgba(255,255,255,.10);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.smt-util-social a:hover { background: var(--db-accent2); color: #fff; }

/* --------------------------------------------------------- sticky header -- */
.smt-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--db-header-bg);
  border-bottom: 1px solid var(--db-line);
  box-shadow: 0 1px 0 rgba(16,35,60,.04), 0 6px 18px -12px rgba(16,35,60,.25);
}
.smt-head-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.smt-brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.smt-brand img { height: 52px; width: auto; flex: none; }
.smt-brand-text { min-width: 0; }
.smt-brand-name {
  display: block;
  font-family: var(--db-font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--db-primary);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}
.smt-brand-tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--db-muted);
  font-weight: 700;
  margin-top: 3px;
}
.smt-head-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.smt-call {
  display: flex; align-items: center; gap: 9px;
  padding-right: 14px; border-right: 1px solid var(--db-line);
}
.smt-call-ico {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(26,115,232,.10); color: var(--db-accent2);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.smt-call-label { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--db-muted); font-weight: 700; }
.smt-call-num { font-size: 13.5px; font-weight: 800; color: var(--db-primary); }

.smt-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 15px;
  border-radius: var(--db-radius-pill);
  font-size: 12.5px; font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.smt-btn-outline { border-color: var(--db-line); color: var(--db-primary); background: #fff; }
.smt-btn-outline:hover { border-color: var(--db-accent2); color: var(--db-accent2); }
.smt-btn-primary { background: var(--db-accent2); color: #fff; }
.smt-btn-primary:hover { background: var(--db-accent2-dark); }
.smt-btn-navy { background: var(--db-primary); color: #fff; }
.smt-btn-navy:hover { background: var(--db-primary-dark); }
.smt-btn-gold { background: var(--db-accent); color: var(--db-primary); }
.smt-btn-gold:hover { background: var(--db-accent-dark); }
.smt-btn-lg { padding: 13px 24px; font-size: 14px; }

.smt-burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--db-line);
  border-radius: 8px;
  background: #fff;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.smt-burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--db-primary); }

/* --------------------------------------------------------------- nav row -- */
.smt-navbar { border-top: 1px solid var(--db-line); background: #fff; }
.smt-nav-list { display: flex; flex-wrap: wrap; align-items: stretch; }
.smt-nav-item { position: relative; }
.smt-nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 13px 13px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--db-primary);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.smt-nav-link:hover { color: var(--db-accent2); border-bottom-color: var(--db-accent2); }
.smt-nav-item.is-active > .smt-nav-link { color: var(--db-accent2); border-bottom-color: var(--db-accent); }
.smt-sub {
  position: absolute; top: 100%; left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--db-line);
  border-top: 3px solid var(--db-accent2);
  box-shadow: 0 18px 40px -18px rgba(16,35,60,.45);
  padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .14s, transform .14s, visibility .14s;
  z-index: 70;
}
.smt-nav-item:hover > .smt-sub,
.smt-nav-item:focus-within > .smt-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.smt-sub a {
  display: block; padding: 9px 16px;
  font-size: 13px; color: var(--db-ink);
  border-left: 3px solid transparent;
}
.smt-sub a:hover { background: var(--db-panel); color: var(--db-accent2); border-left-color: var(--db-accent); }
.smt-nav-cta { display: none; }

/* -------------------------------------------------------- contained hero -- */
.smt-hero-outer { padding: 26px 0 0; }
.smt-hero {
  position: relative;
  border-radius: var(--db-radius);
  overflow: hidden;
  background: var(--db-primary);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 24px 60px -34px rgba(16,35,60,.7);
}
.smt-hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s ease;
}
.smt-hero-slide.is-on { opacity: 1; }
.smt-hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,26,46,.92) 0%, rgba(11,26,46,.66) 46%, rgba(11,26,46,.18) 100%);
}
.smt-hero-body { position: relative; padding: 46px 44px 52px; max-width: 640px; }
.smt-hero-kicker {
  display: inline-block;
  background: var(--db-accent);
  color: var(--db-primary);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 4px;
}
.smt-hero-title {
  color: #fff; font-size: 38px; font-weight: 800;
  margin-top: 18px; line-height: 1.12;
}
.smt-hero-sub { color: var(--db-muted-on-dark); margin-top: 14px; font-size: 14.5px; line-height: 1.6; }
.smt-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.smt-hero-nav {
  position: absolute; right: 22px; bottom: 22px;
  display: flex; gap: 8px; z-index: 3;
}
.smt-hero-nav button {
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(11,26,46,.55);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.smt-hero-nav button:hover { background: var(--db-accent2); border-color: var(--db-accent2); }

/* enquiry / search card that sits under the contained banner */
.smt-enquiry {
  position: relative;
  margin: -34px auto 0;
  width: calc(100% - 64px);
  max-width: 1136px;
  background: #fff;
  border: 1px solid var(--db-line);
  border-radius: var(--db-radius);
  box-shadow: 0 22px 44px -28px rgba(16,35,60,.45);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  z-index: 5;
}
.smt-enq-head { flex: 1 1 190px; min-width: 170px; }
.smt-enq-head h2 { font-size: 16px; font-weight: 800; color: var(--db-primary); }
.smt-enq-head p { font-size: 12.5px; color: var(--db-muted); margin-top: 4px; }
.smt-enq-field { flex: 1 1 150px; min-width: 130px; }
.smt-enq-label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--db-muted); margin-bottom: 6px;
}
.smt-enq-box {
  display: block;
  border: 1px solid var(--db-line);
  background: var(--db-panel);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--db-muted);
}
.smt-enq-box:hover { border-color: var(--db-accent2); color: var(--db-accent2); }

/* -------------------------------------------------------------- sections -- */
.smt-section { padding: 58px 0; }
.smt-section-tight { padding: 44px 0; }
.smt-sec-head { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px; margin-bottom: 28px; }
.smt-sec-head .smt-btn { margin-left: auto; }

.smt-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.smt-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.smt-grid-6 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }

.smt-card {
  background: #fff;
  border: 1px solid var(--db-line);
  border-radius: var(--db-radius);
  padding: 26px 24px;
  border-top: 3px solid var(--db-accent2);
  transition: box-shadow .18s, transform .18s;
}
.smt-card:hover { box-shadow: 0 20px 40px -26px rgba(16,35,60,.5); transform: translateY(-2px); }
.smt-card-ico {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(26,115,232,.10); color: var(--db-accent2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.smt-card h3 { font-size: 17px; font-weight: 800; color: var(--db-primary); }
.smt-card p { font-size: 13.5px; color: var(--db-muted); margin-top: 9px; line-height: 1.65; }
.smt-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 12px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--db-accent2);
}

/* stats band */
.smt-stats { background: var(--db-primary); color: #fff; padding: 46px 0; }
.smt-stat { text-align: center; padding: 6px 10px; }
.smt-stat + .smt-stat { border-left: 1px solid rgba(255,255,255,.12); }
.smt-stat-num { font-family: var(--db-font-heading); font-size: 36px; font-weight: 800; color: var(--db-accent); line-height: 1; }
.smt-stat-label { margin-top: 10px; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--db-muted-on-dark); }

/* news cards */
.smt-news {
  background: #fff; border: 1px solid var(--db-line); border-radius: var(--db-radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .18s, transform .18s;
}
.smt-news:hover { box-shadow: 0 20px 40px -26px rgba(16,35,60,.5); transform: translateY(-2px); }
.smt-news-media { aspect-ratio: 16 / 10; background: var(--db-panel); overflow: hidden; }
.smt-news-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.smt-news-body { padding: 20px 22px 24px; }
.smt-news-tag {
  display: inline-block; font-size: 10px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--db-success); background: rgba(15,107,92,.10);
  padding: 4px 9px; border-radius: 4px;
}
.smt-news-body h3 { font-size: 16px; font-weight: 800; color: var(--db-primary); margin-top: 12px; line-height: 1.35; }
.smt-news-body p { font-size: 13px; color: var(--db-muted); margin-top: 8px; line-height: 1.6; }

/* gallery tiles */
.smt-tile {
  display: block; position: relative;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--db-radius); background: var(--db-panel);
  border: 1px solid var(--db-line);
}
.smt-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.smt-tile:hover img { transform: scale(1.06); }

/* -------------------------------------------------- page head + breadcrumb -- */
.smt-pagehead {
  background: linear-gradient(115deg, var(--db-primary) 0%, var(--db-primary-dark) 55%, #143255 100%);
  color: #fff;
  padding: 38px 0 36px;
  border-bottom: 4px solid var(--db-accent);
}
.smt-pagehead h1 { font-size: 32px; font-weight: 800; color: #fff; line-height: 1.15; }
.smt-crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 12px; color: var(--db-muted-on-dark); margin-bottom: 14px;
}
.smt-crumbs a:hover { color: var(--db-accent); }
.smt-crumbs .sep { opacity: .5; }
.smt-crumbs .cur { color: var(--db-accent); font-weight: 700; }
.smt-pagehead-meta { margin-top: 12px; font-size: 13px; color: var(--db-muted-on-dark); }

/* full-width content page body */
.smt-page { padding: 42px 0 62px; }
.smt-paper {
  background: #fff;
  border: 1px solid var(--db-line);
  border-radius: var(--db-radius);
  padding: 34px 38px 38px;
}
.smt-paper + .smt-paper { margin-top: 24px; }
/* Legacy Elementor markup on some CMS pages carries hardcoded pixel widths
   (up to 1332px on page/news). Let the wide block scroll inside the paper
   column instead of being clipped by the page-level overflow-x:hidden. */
.smt-paper .db-cms-content { max-width: none; overflow-x: auto; }
.smt-empty { font-size: 13.5px; color: var(--db-muted); }

/* content-page split (contact) */
.smt-split { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 24px; align-items: start; }
.smt-info-row { display: flex; gap: 13px; align-items: flex-start; padding: 15px 0; border-top: 1px solid var(--db-line); }
.smt-info-row:first-child { border-top: 0; padding-top: 0; }
.smt-info-ico {
  width: 38px; height: 38px; border-radius: 8px; flex: none;
  background: rgba(26,115,232,.10); color: var(--db-accent2);
  display: flex; align-items: center; justify-content: center;
}
.smt-info-label { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--db-muted); }
.smt-info-val { font-size: 14px; font-weight: 700; color: var(--db-primary); margin-top: 3px; word-break: break-word; }

/* calendar */
.smt-tabs { display: flex; gap: 8px; margin-left: auto; }
.smt-tab {
  padding: 8px 16px; border-radius: var(--db-radius-pill);
  border: 1px solid var(--db-line); background: #fff;
  font-size: 12.5px; font-weight: 700; color: var(--db-primary); cursor: pointer;
}
.smt-tab.is-on { background: var(--db-accent2); border-color: var(--db-accent2); color: #fff; }
.smt-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.smt-table th {
  text-align: left; padding: 13px 16px; background: var(--db-panel);
  color: var(--db-primary); font-weight: 800; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid var(--db-line);
}
.smt-table td { padding: 13px 16px; border-bottom: 1px solid var(--db-line); vertical-align: top; }
.smt-table tr:last-child td { border-bottom: 0; }
.smt-cal-group { border: 1px solid var(--db-line); border-radius: var(--db-radius); background: #fff; overflow: hidden; }
.smt-cal-group + .smt-cal-group { margin-top: 18px; }
.smt-cal-group h2 {
  font-size: 13.5px; font-weight: 800; color: #fff; background: var(--db-primary);
  padding: 12px 20px; letter-spacing: .04em;
}
.smt-cal-row { padding: 13px 20px; border-top: 1px solid var(--db-line); font-size: 13.5px; }
.smt-cal-row:first-of-type { border-top: 0; }
.smt-cal-date { font-weight: 800; color: var(--db-primary); }
.smt-cal-desc { color: var(--db-muted); }
.smt-hide { display: none !important; }

/* gallery / read */
.smt-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.smt-photo {
  aspect-ratio: 1 / 1; border-radius: var(--db-radius); overflow: hidden;
  border: 1px solid var(--db-line); background: var(--db-panel);
  padding: 0; cursor: pointer; display: block; width: 100%;
}
.smt-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.smt-photo:hover img { transform: scale(1.06); }
.smt-video {
  aspect-ratio: 1 / 1; border-radius: var(--db-radius); overflow: hidden;
  background: var(--db-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
#smt-lightbox { background: transparent; border: 0; padding: 0; max-width: 92vw; max-height: 92vh; }
#smt-lightbox::backdrop { background: rgba(6,14,26,.85); }
#smt-lightbox img { max-width: 92vw; max-height: 92vh; border-radius: var(--db-radius); display: block; }

/* ---------------------------------------------------------------- footer -- */
.smt-footer { background: var(--db-footer-bg); color: var(--db-footer-fg); }
.smt-footer-top { border-top: 4px solid var(--db-accent); }
.smt-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0 40px;
}
.smt-footer h3 {
  font-size: 11.5px; font-weight: 800; color: #fff;
  letter-spacing: .14em; text-transform: uppercase;
  padding-bottom: 10px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.smt-footer a { color: var(--db-footer-fg); }
.smt-footer a:hover { color: var(--db-accent); }
.smt-footer li { font-size: 13.5px; margin-bottom: 9px; }
.smt-footer-about { font-size: 13.5px; line-height: 1.7; }
.smt-footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.smt-footer-brand img { height: 46px; width: auto; background: #fff; padding: 5px; border-radius: 8px; }
.smt-footer-brand strong { color: #fff; font-family: var(--db-font-heading); font-size: 15px; }
.smt-footer-contact li { display: flex; gap: 9px; align-items: flex-start; }
.smt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 0;
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,.68);
}
.smt-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.5);
}

/* ------------------------------------------------------------ responsive -- */
@media (max-width: 1100px) {
  .smt-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smt-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smt-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .smt-burger { display: flex; }
  .smt-head-right { display: none; }
  .smt-navbar { display: none; }
  .smt-navbar.is-open { display: block; }
  .smt-nav-list { flex-direction: column; align-items: stretch; padding-bottom: 8px; }
  .smt-nav-link { border-bottom: 1px solid var(--db-line); }
  .smt-sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 3px solid var(--db-accent);
    background: var(--db-panel); min-width: 0;
  }
  .smt-nav-cta { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px 16px; }
  .smt-hero-body { padding: 34px 26px 40px; }
  .smt-hero-title { font-size: 30px; }
  .smt-split { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 860px) {
  .smt-grid-3, .smt-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smt-paper { padding: 26px 22px 30px; }
  .smt-pagehead h1 { font-size: 25px; }
}
@media (max-width: 620px) {
  .smt-wrap { padding: 0 16px; }
  .smt-grid-3, .smt-grid-4, .smt-grid-6 { grid-template-columns: minmax(0, 1fr); }
  .smt-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .smt-stat + .smt-stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .smt-footer-grid { grid-template-columns: minmax(0, 1fr); }
  .smt-enquiry { width: calc(100% - 32px); }
  .smt-hero-title { font-size: 25px; }
}
