/* =========================================================
   The Storage Hub Widgets — base layer
   Structural + default styling for every widget. Elementor
   panel controls layer on top (higher specificity) so the
   client can override typography, spacing, sizing, colour
   and per-device values from the editor.
   All classes are scoped under the sh- prefix.
   ========================================================= */

:root {
  /* Brand palette — white / navy / grey */
  --sh-bg:        #ffffff;   /* base background */
  --sh-bg-110:    #f5f6f8;   /* alternate light panels (stats, footer, dark-sections) */
  --sh-bg-90:     #eef0f4;   /* raised / hover panels */
  --sh-bg-80:     #e6e9ee;
  --sh-line:      #d4d7de;   /* borders */
  --sh-line-soft: #e6e8ec;   /* hairline rules */
  --sh-muted:     #3C3E3F;   /* body / secondary text (brand grey) */
  --sh-muted-2:   #7c8288;   /* dimmer text */
  --sh-fg:        #14174B;   /* primary text / headings (brand navy) */
  --sh-white:     #ffffff;
  --sh-accent:    #14174B;   /* accent — brand navy */
  --sh-accent-d:  #0d0f36;   /* darker navy (hover) */

  --fs-h1: clamp(41px, calc(20px + 4.6vw), 72px);
  --fs-h2: clamp(32px, calc(18px + 3.1vw), 56px);
  --fs-h3: clamp(26px, calc(16px + 2.1vw), 40px);
  --fs-h4: clamp(22px, calc(16px + 1.1vw), 28px);
  --fs-lg: clamp(18px, calc(15px + 0.5vw), 21px);

  --pad-x: clamp(20px, 5vw, 88px);
  --sec-y: clamp(64px, 9vw, 148px);
  --ease: cubic-bezier(0.4, 0, 0.1, 1);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

/* Scope a reset to widget roots so they render consistently on any theme. */
.sh-w, .sh-w *, .sh-w *::before, .sh-w *::after { box-sizing: border-box; }
.sh-w { font-family: var(--font-sans); color: var(--sh-fg); line-height: 1.55; background: var(--sh-bg); }
.sh-w img, .sh-w svg, .sh-w video { display: block; max-width: 100%; }
.sh-w a { color: inherit; text-decoration: none; }
.sh-w ul { list-style: none; margin: 0; padding: 0; }
.sh-w h1, .sh-w h2, .sh-w h3, .sh-w h4, .sh-w h5 { margin: 0; font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; }
.sh-w p { margin: 0; }

.sh-inner { max-width: 1440px; margin-inline: auto; padding-inline: var(--pad-x); }
.sh-sec { padding-block: var(--sec-y); position: relative; }

.sh-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sh-accent);
  display: inline-flex; align-items: center; gap: 10px; margin: 0;
}
.sh-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--sh-accent); display: inline-block; }

/* Buttons */
.sh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 40px; font-size: 15px; font-weight: 500;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.sh-btn--primary { background: var(--sh-accent); color: var(--sh-white); }
.sh-btn--primary:hover { background: var(--sh-accent-d); transform: translateY(-2px); }
.sh-btn--ghost { border: 1px solid var(--sh-line); color: var(--sh-fg); }
.sh-btn--ghost:hover { border-color: var(--sh-accent); background: var(--sh-accent); color: var(--sh-white); }
.sh-btn__arrow { transition: transform .3s var(--ease); }
.sh-btn:hover .sh-btn__arrow { transform: translateX(4px); }
.sh-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------- HERO ---------------- */
.sh-hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; padding-bottom: clamp(40px, 6vw, 80px);
}
.sh-hero__media { position: absolute; inset: 0; z-index: 0; }
.sh-hero__media img, .sh-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.sh-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,23,75,.35) 0%, rgba(20,23,75,.15) 40%, rgba(20,23,75,.6) 100%); }
.sh-hero__fallback {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 80% at 78% 8%, rgba(20,23,75,.07), transparent 55%), linear-gradient(160deg, #f6f7f9 0%, #ffffff 70%);
}
.sh-hero__fallback::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--sh-line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--sh-line-soft) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(90% 70% at 70% 20%, #000 20%, transparent 75%); opacity: .5;
}
.sh-hero__inner { position: relative; z-index: 2; width: 100%; }
.sh-hero__rule { height: 1px; background: var(--sh-line); margin-bottom: 28px; }
.sh-hero h1 { font-size: var(--fs-h1); max-width: 16ch; }
.sh-hero__sub { font-size: var(--fs-lg); color: var(--sh-muted); max-width: 52ch; margin-top: 22px; }
.sh-hero__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.sh-hero__tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--sh-fg);
  border: 1px solid var(--sh-line); border-radius: 40px; padding: 8px 15px;
}
.sh-hero__cta { margin-top: 34px; }

/* ---------------- PAGE HEADER ---------------- */
.sh-pagehead { padding-top: clamp(140px, 18vh, 220px); padding-bottom: var(--sec-y); position: relative; overflow: hidden; }
.sh-pagehead__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(90% 90% at 85% 0%, rgba(20,23,75,.06), transparent 60%); }
.sh-pagehead__inner { position: relative; z-index: 1; }
.sh-pagehead h1 { font-size: var(--fs-h1); max-width: 18ch; margin-top: 22px; }
.sh-pagehead__sub { color: var(--sh-muted); font-size: var(--fs-lg); max-width: 58ch; margin-top: 22px; }
.sh-crumb { font-family: var(--font-mono); font-size: 12px; color: var(--sh-muted-2); letter-spacing: .06em; }
.sh-crumb a:hover { color: var(--sh-accent); }

/* ---------------- STATS ---------------- */
.sh-stats { background: var(--sh-bg-110); }
.sh-stats__head { padding-block: clamp(40px, 5vw, 72px) 0; }
.sh-stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.sh-stat { padding: clamp(28px,4vw,52px) clamp(20px,3vw,40px); border-right: 1px solid var(--sh-line-soft); border-bottom: 1px solid var(--sh-line-soft); position: relative; }
.sh-stat__val { font-size: clamp(34px,4.5vw,58px); font-weight: 600; letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 6px; }
.sh-stat__val .u { font-size: .4em; color: var(--sh-accent); font-weight: 500; }
.sh-stat__label { color: var(--sh-muted); font-size: 14px; margin-top: 8px; }
.sh-stat__dot { position: absolute; top: 20px; right: 22px; width: 6px; height: 6px; border-radius: 50%; background: var(--sh-line); }

/* ---------------- INTRO / SPLIT ---------------- */
.sh-split { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 64px); }
.sh-lead { font-size: clamp(24px,3vw,40px); font-weight: 500; line-height: 1.18; letter-spacing: -0.02em; max-width: 20ch; }
.sh-body-copy p { color: var(--sh-muted); font-size: var(--fs-lg); margin-bottom: 20px; max-width: 62ch; }
.sh-body-copy p:last-child { margin-bottom: 0; }
.sh-body-copy strong { color: var(--sh-fg); font-weight: 600; }
.sh-intro__cta { margin-top: 30px; }

/* ---------------- CARDS ---------------- */
.sh-head { margin-bottom: 44px; }
.sh-head h2 { font-size: var(--fs-h2); max-width: 20ch; }
.sh-head .sh-eyebrow { margin-bottom: 22px; }
.sh-cards { display: grid; gap: 1px; background: var(--sh-line-soft); border: 1px solid var(--sh-line-soft); }
.sh-card { background: var(--sh-bg); padding: clamp(26px,3vw,40px); transition: background .4s var(--ease); position: relative; min-height: 220px; display: flex; flex-direction: column; }
.sh-card:hover { background: var(--sh-bg-90); }
.sh-card__num { font-family: var(--font-mono); font-size: 12px; color: var(--sh-accent); letter-spacing: .1em; }
.sh-card__icon { color: var(--sh-accent); margin-bottom: 20px; }
.sh-card__icon svg, .sh-card__icon i { width: 30px; height: 30px; font-size: 30px; }
.sh-card h3, .sh-card h4 { font-size: var(--fs-h4); margin: 14px 0 12px; letter-spacing: -0.01em; }
.sh-card p { color: var(--sh-muted); font-size: 15px; margin-top: auto; }
.sh-card__line { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--sh-accent); transition: width .5s var(--ease); }
.sh-card:hover .sh-card__line { width: 100%; }

/* ---------------- FEATURE LIST ---------------- */
.sh-featlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--sh-line-soft); border: 1px solid var(--sh-line-soft); }
.sh-feat { background: var(--sh-bg); padding: 22px clamp(20px,2.4vw,30px); display: flex; align-items: center; gap: 16px; transition: background .35s var(--ease); }
.sh-feat:hover { background: var(--sh-bg-90); }
.sh-feat__tick { color: var(--sh-accent); flex-shrink: 0; }
.sh-feat span { font-size: 16px; }

/* ---------------- GALLERY ---------------- */
.sh-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sh-tile { aspect-ratio: 4/3; border: 1px solid var(--sh-line-soft); overflow: hidden; position: relative; background: linear-gradient(160deg, #eef0f4, #f7f8fa); display: grid; place-items: end start; }
.sh-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.sh-tile:hover img { transform: scale(1.06); }
.sh-tile__grid::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--sh-line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--sh-line-soft) 1px, transparent 1px); background-size: 34px 34px; opacity: .35; }
.sh-tile__cap { position: relative; z-index: 2; margin: 16px; padding: 7px 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.85); backdrop-filter: blur(6px); border: 1px solid var(--sh-line); color: var(--sh-fg); }
.sh-tile--wide { grid-column: span 2; aspect-ratio: 16/9; }
.sh-tile--tall { aspect-ratio: 3/4; }

/* ---------------- TIMELINE ---------------- */
.sh-timeline { border-top: 1px solid var(--sh-line-soft); }
.sh-tl-row { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--sh-line-soft); align-items: baseline; }
.sh-tl-row__year { font-family: var(--font-mono); font-size: 20px; color: var(--sh-accent); }
.sh-tl-row h4 { font-size: var(--fs-h4); margin-bottom: 8px; }
.sh-tl-row p { color: var(--sh-muted); max-width: 60ch; }

/* ---------------- CTA BAND ---------------- */
.sh-ctaband { border-top: 1px solid var(--sh-line-soft); }
.sh-ctaband__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.sh-ctaband h2 { font-size: var(--fs-h2); max-width: 16ch; }
.sh-ctaband p { color: var(--sh-muted); font-size: var(--fs-lg); max-width: 40ch; margin-top: 14px; }

/* ---------------- CONTACT ---------------- */
.sh-contact { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 4vw, 60px); }
.sh-form { display: grid; gap: 18px; }
.sh-field label { display: block; font-size: 13px; color: var(--sh-muted); margin-bottom: 8px; font-family: var(--font-mono); letter-spacing: .04em; }
.sh-field input, .sh-field select, .sh-field textarea { width: 100%; background: var(--sh-bg-90); border: 1px solid var(--sh-line-soft); border-radius: 8px; padding: 14px 16px; color: var(--sh-fg); font-size: 15px; font-family: inherit; transition: border-color .25s; }
.sh-field input:focus, .sh-field select:focus, .sh-field textarea:focus { outline: none; border-color: var(--sh-accent); }
.sh-field textarea { resize: vertical; min-height: 140px; }
.sh-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sh-contact__aside dl { display: grid; gap: 22px; margin: 0; }
.sh-contact__aside dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sh-accent); margin-bottom: 6px; }
.sh-contact__aside dd { font-size: var(--fs-lg); margin: 0; }
.sh-map { margin-top: 26px; aspect-ratio: 16/10; border: 1px solid var(--sh-line-soft); overflow: hidden; border-radius: 8px; }
.sh-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.02); }
.sh-form__success { display: none; }
.sh-form__success.is-visible { display: block; }

/* ---------------- Reveal animation ---------------- */
.sh-reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.sh-reveal.in { opacity: 1; transform: none; }
.sh-reveal.d1 { transition-delay: .08s; } .sh-reveal.d2 { transition-delay: .16s; }
.sh-reveal.d3 { transition-delay: .24s; } .sh-reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .sh-reveal { opacity: 1; transform: none; transition: none; } }

/* Elementor editor: never hide with reveal (avoids blank editor) */
.elementor-editor-active .sh-reveal { opacity: 1; transform: none; }

/* ---------------- Responsive defaults ---------------- */
@media (min-width: 768px) {
  .sh-split { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .sh-contact { grid-template-columns: 1.3fr 0.7fr; }
  .sh-ctaband__inner { flex-wrap: nowrap; }
}
@media (max-width: 1024px) {
  .sh-cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 767px) {
  .sh-stats__grid { grid-template-columns: 1fr !important; }
  .sh-cards { grid-template-columns: 1fr !important; }
  .sh-featlist { grid-template-columns: 1fr !important; }
  .sh-gallery { grid-template-columns: 1fr !important; }
  .sh-tile--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .sh-form__row { grid-template-columns: 1fr; }
  .sh-tl-row { grid-template-columns: 1fr; gap: 6px; }
}

/* =========================================================
   HEADER (nav) + FOOTER
   ========================================================= */
.sh-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s var(--ease), border-color .4s var(--ease); border-bottom: 1px solid var(--sh-line-soft); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); }
.sh-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 6px 24px rgba(20,23,75,.06); }
.elementor-editor-active .sh-header { position: relative; }
.sh-header__inner { max-width: 1440px; margin-inline: auto; padding: 18px var(--pad-x); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sh-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sh-logo__mark { width: 34px; height: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.sh-logo__mark i { background: var(--sh-accent); border-radius: 1px; transition: transform .5s var(--ease), opacity .5s var(--ease); }
.sh-logo__mark i:nth-child(2), .sh-logo__mark i:nth-child(4), .sh-logo__mark i:nth-child(6), .sh-logo__mark i:nth-child(8) { opacity: .35; }
.sh-logo:hover .sh-logo__mark i:nth-child(odd) { transform: translateY(-2px); }
.sh-logo__img img { max-height: 40px; width: auto; }
.sh-logo__text { line-height: 1.05; }
.sh-logo__text strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; display: block; }
.sh-logo__text span { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sh-muted); font-family: var(--font-mono); }
.sh-nav { display: flex; align-items: center; gap: 4px; }
.sh-nav__link { position: relative; padding: 10px 14px; font-size: 14px; color: var(--sh-muted); transition: color .25s var(--ease); }
.sh-nav__link:hover, .sh-nav__link.is-active { color: var(--sh-fg); }
.sh-nav__link.is-active::after { content: ""; position: absolute; left: 14px; bottom: 4px; width: 5px; height: 5px; border-radius: 50%; background: var(--sh-accent); }
.sh-nav__item { position: relative; }
.sh-nav__menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px; background: var(--sh-bg-90); border: 1px solid var(--sh-line-soft); border-radius: 10px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .25s var(--ease); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.sh-nav__item:hover .sh-nav__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sh-nav__menu a { display: block; padding: 10px 12px; font-size: 13.5px; color: var(--sh-muted); border-radius: 6px; transition: background .2s, color .2s; }
.sh-nav__menu a:hover { background: var(--sh-bg-80); color: var(--sh-fg); }
.sh-header__cta { padding: 11px 20px; border: 1px solid var(--sh-line); border-radius: 40px; font-size: 14px; color: var(--sh-fg); transition: background .3s var(--ease), border-color .3s, color .3s; flex-shrink: 0; }
.sh-header__cta:hover { background: var(--sh-accent); border-color: var(--sh-accent); color: var(--sh-white); }
.sh-burger { display: none; width: 40px; height: 40px; position: relative; }
.sh-burger span { position: absolute; left: 9px; right: 9px; height: 1.6px; background: var(--sh-fg); transition: transform .35s var(--ease), opacity .2s; }
.sh-burger span:nth-child(1) { top: 14px; } .sh-burger span:nth-child(2) { top: 20px; } .sh-burger span:nth-child(3) { top: 26px; }
body.sh-menu-open .sh-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.sh-menu-open .sh-burger span:nth-child(2) { opacity: 0; }
body.sh-menu-open .sh-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.sh-mobile { position: fixed; inset: 0; z-index: 99; background: var(--sh-bg-110); padding: 100px var(--pad-x) 40px; display: flex; flex-direction: column; transform: translateY(-100%); transition: transform .5s var(--ease); overflow-y: auto; }
body.sh-menu-open .sh-mobile { transform: translateY(0); }
.sh-mobile a { padding: 16px 0; font-size: 26px; font-weight: 500; border-bottom: 1px solid var(--sh-line-soft); color: var(--sh-fg); }
.sh-mobile a.sub { font-size: 17px; color: var(--sh-muted); padding-left: 16px; }
.sh-mobile__foot { margin-top: auto; padding-top: 28px; color: var(--sh-muted); font-size: 13px; }
@media (max-width: 960px) { .sh-nav, .sh-header__cta { display: none; } .sh-burger { display: block; } }

/* Footer */
.sh-footer { background: var(--sh-bg-110); border-top: 1px solid var(--sh-line-soft); position: relative; overflow: hidden; }
.sh-footer__glow { position: absolute; inset: auto 0 -30% 0; height: 60%; background: radial-gradient(60% 100% at 50% 100%, rgba(20,23,75,.06), transparent 70%); }
.sh-footer__main { position: relative; padding-block: clamp(56px, 7vw, 96px); display: grid; grid-template-columns: 1fr; gap: 48px; }
.sh-footer__brand h2 { font-size: clamp(30px, 4vw, 52px); max-width: 12ch; }
.sh-footer__brand p { color: var(--sh-muted); margin-top: 16px; max-width: 34ch; }
.sh-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sh-footer__col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--sh-muted-2); margin-bottom: 18px; }
.sh-footer__col a { display: block; color: var(--sh-muted); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.sh-footer__col a:hover { color: var(--sh-accent); }
.sh-footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.sh-footer__socials a { width: 40px; height: 40px; border: 1px solid var(--sh-line-soft); border-radius: 50%; display: grid; place-items: center; color: var(--sh-muted); transition: border-color .25s, color .25s, transform .25s; }
.sh-footer__socials a:hover { border-color: var(--sh-accent); color: var(--sh-accent); transform: translateY(-2px); }
.sh-footer__bottom { position: relative; border-top: 1px solid var(--sh-line-soft); padding-block: 26px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; color: var(--sh-muted-2); font-size: 13px; }
.sh-footer__bottom a:hover { color: var(--sh-accent); }
@media (min-width: 768px) { .sh-footer__main { grid-template-columns: 1.1fr 1.4fr; } }
@media (max-width: 620px) { .sh-footer__cols { grid-template-columns: 1fr; gap: 24px; } }

/* =========================================================
   SECTION COLOUR SCHEMES (per-widget toggle)
   Light (default) = white bg, navy headings, grey text.
   Navy = redefine tokens so the whole section flips to
   white-on-navy automatically. Grey = light-grey bg.
   ========================================================= */
.sh-scheme-navy .sh-w {
  --sh-bg:        #14174B;   /* navy background */
  --sh-bg-110:    #1b1e57;   /* raised navy panel */
  --sh-bg-90:     #242873;   /* hover navy panel */
  --sh-bg-80:     #2c3080;
  --sh-fg:        #ffffff;   /* headings / primary → white */
  --sh-muted:     rgba(255,255,255,.74);  /* body text → light */
  --sh-muted-2:   rgba(255,255,255,.5);
  --sh-line:      rgba(255,255,255,.22);  /* borders → light */
  --sh-line-soft: rgba(255,255,255,.14);
  --sh-accent:    #ffffff;   /* accent (eyebrow, icons, dividers) → white */
  background: var(--sh-bg);
}
/* Buttons: accent is white now, so give them navy ink. */
.sh-scheme-navy .sh-btn--primary { color: #14174B; }
.sh-scheme-navy .sh-btn--primary:hover { background: rgba(255,255,255,.85); color: #14174B; }
.sh-scheme-navy .sh-btn--ghost { border-color: rgba(255,255,255,.35); color: #ffffff; }
.sh-scheme-navy .sh-btn--ghost:hover { background: #ffffff; color: #14174B; }
/* Hero ambient pattern on navy. */
.sh-scheme-navy .sh-hero__fallback { background: radial-gradient(120% 80% at 78% 8%, rgba(255,255,255,.06), transparent 55%), linear-gradient(160deg, #191d63 0%, #14174B 70%); }
.sh-scheme-navy .sh-hero__fallback::before { opacity: .22; }
/* Gallery empty tiles + caption on navy. */
.sh-scheme-navy .sh-tile { background: linear-gradient(160deg, #1b1e57, #14174B); }
.sh-scheme-navy .sh-tile__cap { background: rgba(20,23,75,.72); color: #ffffff; border-color: rgba(255,255,255,.2); }
/* Contact field placeholders readable on navy. */
.sh-scheme-navy .sh-field input::placeholder,
.sh-scheme-navy .sh-field textarea::placeholder { color: rgba(255,255,255,.5); }

/* Charcoal scheme — dark grey background, white text. */
.sh-scheme-charcoal .sh-w {
  --sh-bg:        #3C4142;   /* charcoal background */
  --sh-bg-110:    #454a4b;   /* raised panel */
  --sh-bg-90:     #4e5455;   /* hover panel */
  --sh-bg-80:     #565d5e;
  --sh-fg:        #ffffff;   /* headings / primary → white */
  --sh-muted:     rgba(255,255,255,.74);
  --sh-muted-2:   rgba(255,255,255,.5);
  --sh-line:      rgba(255,255,255,.22);
  --sh-line-soft: rgba(255,255,255,.14);
  --sh-accent:    #ffffff;
  background: var(--sh-bg);
}
.sh-scheme-charcoal .sh-btn--primary { color: #3C4142; }
.sh-scheme-charcoal .sh-btn--primary:hover { background: rgba(255,255,255,.85); color: #3C4142; }
.sh-scheme-charcoal .sh-btn--ghost { border-color: rgba(255,255,255,.35); color: #ffffff; }
.sh-scheme-charcoal .sh-btn--ghost:hover { background: #ffffff; color: #3C4142; }
.sh-scheme-charcoal .sh-hero__fallback { background: radial-gradient(120% 80% at 78% 8%, rgba(255,255,255,.06), transparent 55%), linear-gradient(160deg, #464c4d 0%, #3C4142 70%); }
.sh-scheme-charcoal .sh-hero__fallback::before { opacity: .22; }
.sh-scheme-charcoal .sh-tile { background: linear-gradient(160deg, #454a4b, #3C4142); }
.sh-scheme-charcoal .sh-tile__cap { background: rgba(60,65,66,.72); color: #ffffff; border-color: rgba(255,255,255,.2); }
.sh-scheme-charcoal .sh-field input::placeholder,
.sh-scheme-charcoal .sh-field textarea::placeholder { color: rgba(255,255,255,.5); }

/* Black & White — black background, white text. */
.sh-scheme-blackwhite .sh-w {
  --sh-bg:        #000000;
  --sh-bg-110:    #0e0e0e;
  --sh-bg-90:     #191919;
  --sh-bg-80:     #232323;
  --sh-fg:        #ffffff;
  --sh-muted:     rgba(255,255,255,.74);
  --sh-muted-2:   rgba(255,255,255,.5);
  --sh-line:      rgba(255,255,255,.22);
  --sh-line-soft: rgba(255,255,255,.14);
  --sh-accent:    #ffffff;
  background: var(--sh-bg);
}
.sh-scheme-blackwhite .sh-btn--primary { color: #000000; }
.sh-scheme-blackwhite .sh-btn--primary:hover { background: rgba(255,255,255,.85); color: #000000; }
.sh-scheme-blackwhite .sh-btn--ghost { border-color: rgba(255,255,255,.35); color: #ffffff; }
.sh-scheme-blackwhite .sh-btn--ghost:hover { background: #ffffff; color: #000000; }
.sh-scheme-blackwhite .sh-hero__fallback { background: radial-gradient(120% 80% at 78% 8%, rgba(255,255,255,.05), transparent 55%), linear-gradient(160deg, #141414 0%, #000000 70%); }
.sh-scheme-blackwhite .sh-hero__fallback::before { opacity: .2; }
.sh-scheme-blackwhite .sh-tile { background: linear-gradient(160deg, #141414, #000000); }
.sh-scheme-blackwhite .sh-tile__cap { background: rgba(0,0,0,.72); color: #ffffff; border-color: rgba(255,255,255,.2); }
.sh-scheme-blackwhite .sh-field input::placeholder,
.sh-scheme-blackwhite .sh-field textarea::placeholder { color: rgba(255,255,255,.5); }

/* White & Black — white background, black text. */
.sh-scheme-whiteblack .sh-w {
  --sh-bg:        #ffffff;
  --sh-bg-110:    #f4f4f4;
  --sh-bg-90:     #ededed;
  --sh-bg-80:     #e4e4e4;
  --sh-fg:        #000000;
  --sh-muted:     #333333;
  --sh-muted-2:   #6b6b6b;
  --sh-line:      #d0d0d0;
  --sh-line-soft: #e6e6e6;
  --sh-accent:    #000000;
  background: var(--sh-bg);
}

/* Navy Blue & Gray — navy background, gray/light text. */
.sh-scheme-navygray .sh-w {
  --sh-bg:        #14174B;
  --sh-bg-110:    #1b1e57;
  --sh-bg-90:     #242873;
  --sh-bg-80:     #2c3080;
  --sh-fg:        #eef0f4;
  --sh-muted:     #b6bac6;
  --sh-muted-2:   #8b90a0;
  --sh-line:      rgba(255,255,255,.2);
  --sh-line-soft: rgba(255,255,255,.13);
  --sh-accent:    #aeb4c4;
  background: var(--sh-bg);
}
.sh-scheme-navygray .sh-btn--primary { background: #ffffff; color: #14174B; }
.sh-scheme-navygray .sh-btn--primary:hover { background: rgba(255,255,255,.85); color: #14174B; }
.sh-scheme-navygray .sh-btn--ghost { border-color: rgba(255,255,255,.3); color: #eef0f4; }
.sh-scheme-navygray .sh-btn--ghost:hover { background: #ffffff; color: #14174B; }
.sh-scheme-navygray .sh-hero__fallback { background: radial-gradient(120% 80% at 78% 8%, rgba(255,255,255,.05), transparent 55%), linear-gradient(160deg, #191d63 0%, #14174B 70%); }
.sh-scheme-navygray .sh-hero__fallback::before { opacity: .2; }
.sh-scheme-navygray .sh-tile { background: linear-gradient(160deg, #1b1e57, #14174B); }
.sh-scheme-navygray .sh-tile__cap { background: rgba(20,23,75,.72); color: #ffffff; border-color: rgba(255,255,255,.2); }
.sh-scheme-navygray .sh-field input::placeholder,
.sh-scheme-navygray .sh-field textarea::placeholder { color: rgba(255,255,255,.5); }

/* Gray & Navy Blue — light gray background, navy text. */
.sh-scheme-graynavy .sh-w {
  --sh-bg:        #e7e9ee;
  --sh-bg-110:    #dde0e7;
  --sh-bg-90:     #d3d7df;
  --sh-bg-80:     #c8cdd6;
  --sh-fg:        #14174B;
  --sh-muted:     #3C3E3F;
  --sh-muted-2:   #6b747a;
  --sh-line:      #c4c8d0;
  --sh-line-soft: #d5d8e0;
  --sh-accent:    #14174B;
  background: var(--sh-bg);
}
.sh-scheme-graynavy .sh-card, .sh-scheme-graynavy .sh-feat { background: #ffffff; }
.sh-scheme-graynavy .sh-card:hover, .sh-scheme-graynavy .sh-feat:hover { background: #f3f4f7; }

/* Light-grey section option. */
.sh-scheme-grey .sh-w { background: #f5f6f8; }

/* Light Gray — light grey bg, navy heading, black text, navy primary btn, black secondary btn. */
.sh-scheme-graynb .sh-w {
  --sh-bg:        #eceef2;
  --sh-bg-110:    #e2e5ea;
  --sh-bg-90:     #f3f4f7;
  --sh-bg-80:     #d8dce2;
  --sh-fg:        #14174B;   /* headings navy */
  --sh-muted:     #000000;   /* body text black */
  --sh-muted-2:   #444444;
  --sh-line:      #cfd3db;
  --sh-line-soft: #dde0e6;
  --sh-accent:    #14174B;   /* accent navy (eyebrow, icons, dividers, numbers) */
  background: var(--sh-bg);
}
.sh-scheme-graynb .sh-card, .sh-scheme-graynb .sh-feat { background: #ffffff; }
.sh-scheme-graynb .sh-card:hover, .sh-scheme-graynb .sh-feat:hover { background: #f6f7f9; }
/* Primary button: navy bg / white text → white bg / navy text on hover. */
.sh-scheme-graynb .sh-btn--primary { background: #14174B; color: #ffffff; }
.sh-scheme-graynb .sh-btn--primary:hover { background: #ffffff; color: #14174B; }
/* Secondary (ghost) button: filled black / white text → white bg / black text on hover. */
.sh-scheme-graynb .sh-btn--ghost { background: #000000; border-color: #000000; color: #ffffff; }
.sh-scheme-graynb .sh-btn--ghost:hover { background: #ffffff; border-color: #ffffff; color: #000000; }
.sh-scheme-graynb .sh-hero__fallback { background: radial-gradient(120% 80% at 78% 8%, rgba(20,23,75,.06), transparent 55%), linear-gradient(160deg, #f1f2f5 0%, #eceef2 70%); }
.sh-scheme-graynb .sh-tile { background: linear-gradient(160deg, #e2e5ea, #eceef2); }

/* =========================================================
   SECTION BACKGROUND MEDIA (image / video behind any section)
   ========================================================= */
.sh-sec, .sh-stats, .sh-pagehead, .sh-ctaband { position: relative; }
.sh-secbg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.sh-secbg img, .sh-secbg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-secbg__overlay { position: absolute; inset: 0; }
/* keep section content above the media layer */
.sh-sec > .sh-inner,
.sh-stats > .sh-stats__head,
.sh-stats > .sh-stats__grid,
.sh-pagehead > .sh-pagehead__inner,
.sh-ctaband > .sh-ctaband__inner { position: relative; z-index: 1; }
/* white text when the section sits over media (modern :has support) */
.sh-w:has(.sh-secbg--white) {
  --sh-fg:        #ffffff;
  --sh-muted:     rgba(255,255,255,.82);
  --sh-muted-2:   rgba(255,255,255,.6);
  --sh-line:      rgba(255,255,255,.25);
  --sh-line-soft: rgba(255,255,255,.16);
  --sh-accent:    #ffffff;
}
.sh-w:has(.sh-secbg--white) .sh-btn--primary { color: #14174B; }
.sh-w:has(.sh-secbg--white) .sh-btn--primary:hover { background: rgba(255,255,255,.85); color: #14174B; }
.sh-w:has(.sh-secbg--white) .sh-btn--ghost { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.sh-w:has(.sh-secbg--white) .sh-btn--ghost:hover { background: #fff; color: #14174B; border-color: #fff; }
/* cards/features stay readable over media */
.sh-w:has(.sh-secbg--white) .sh-card,
.sh-w:has(.sh-secbg--white) .sh-feat { background: rgba(255,255,255,.06); }
.sh-w:has(.sh-secbg--white) .sh-cards,
.sh-w:has(.sh-secbg--white) .sh-featlist { background: rgba(255,255,255,.16); }

/* Light Gray (mono) — light grey bg, black heading, gray text, black/white buttons. */
.sh-scheme-grayblack .sh-w {
  --sh-bg:        #eceef2;
  --sh-bg-110:    #e2e5ea;
  --sh-bg-90:     #f3f4f7;
  --sh-bg-80:     #d8dce2;
  --sh-fg:        #000000;   /* headings black */
  --sh-muted:     #4d5152;   /* body text gray */
  --sh-muted-2:   #6f7375;
  --sh-line:      #cfd3db;
  --sh-line-soft: #dde0e6;
  --sh-accent:    #000000;   /* accent black (eyebrow, icons, dividers, numbers) */
  background: var(--sh-bg);
}
.sh-scheme-grayblack .sh-card, .sh-scheme-grayblack .sh-feat { background: #ffffff; }
.sh-scheme-grayblack .sh-card:hover, .sh-scheme-grayblack .sh-feat:hover { background: #f6f7f9; }
/* Primary button: black bg / white text / black border → white bg / black text on hover. */
.sh-scheme-grayblack .sh-btn--primary { background: #000000; color: #ffffff; border: 1px solid #000000; }
.sh-scheme-grayblack .sh-btn--primary:hover { background: #ffffff; color: #000000; border-color: #000000; }
/* Secondary (ghost) button: white bg / black text / black border → black bg / white text on hover. */
.sh-scheme-grayblack .sh-btn--ghost { background: #ffffff; border-color: #000000; color: #000000; }
.sh-scheme-grayblack .sh-btn--ghost:hover { background: #000000; border-color: #000000; color: #ffffff; }
.sh-scheme-grayblack .sh-hero__fallback { background: radial-gradient(120% 80% at 78% 8%, rgba(0,0,0,.05), transparent 55%), linear-gradient(160deg, #f1f2f5 0%, #eceef2 70%); }
.sh-scheme-grayblack .sh-tile { background: linear-gradient(160deg, #e2e5ea, #eceef2); }

/* =========================================================
   TOP BAR (sits above the header)
   ========================================================= */
.sh-topbar { background: #14174B; color: #ffffff; position: relative; z-index: 101; font-size: 13px; }
.sh-topbar__inner { max-width: 1440px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 9px var(--pad-x); }
.sh-topbar__left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.sh-topbar__item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.85); transition: color .2s var(--ease); }
.sh-topbar__item:hover { color: #ffffff; }
.sh-topbar__item svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .9; }
.sh-topbar__msg { color: rgba(255,255,255,.7); }
.sh-topbar__socials { display: flex; align-items: center; gap: 15px; }
.sh-topbar__socials a { color: rgba(255,255,255,.82); display: inline-flex; transition: color .2s var(--ease), transform .2s var(--ease); }
.sh-topbar__socials a:hover { color: #ffffff; transform: translateY(-1px); }
.sh-topbar__socials svg { width: 15px; height: 15px; }
@media (max-width: 720px) {
  .sh-topbar__inner { flex-wrap: wrap; justify-content: center; row-gap: 6px; }
  .sh-topbar__left { gap: 14px; justify-content: center; }
  .sh-topbar__msg { display: none; }
}

/* =========================================================
   SECTION IMAGE (optional in-layout banner image)
   ========================================================= */
.sh-secimg { max-width: 1440px; margin-inline: auto; padding-inline: var(--pad-x); }
.sh-secimg img { width: 100%; height: 400px; object-fit: cover; object-position: center; border-radius: 16px; display: block; }
.sh-secimg--above { margin-bottom: clamp(30px, 4vw, 58px); }
.sh-secimg--below { margin-top: clamp(30px, 4vw, 58px); }
/* keep the image above any section background media */
.sh-secimg { position: relative; z-index: 1; }
