/*
 * Steelhead Composites
 * Aerospace, Space & Defense homepage section
 */

.sh-aero {
  --sh-navy: #092f4b;
  --sh-navy-dark: #061f32;
  --sh-blue: #067ca8;
  --sh-cyan: #00a4cf;
  --sh-white: #ffffff;
  --sh-text: #152634;
  --sh-border: rgba(255, 255, 255, 0.22);
  --sh-shadow: 0 18px 44px rgba(2, 28, 46, 0.2);

  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--sh-text);
  background: var(--sh-navy-dark);
  font-family: inherit;
}

.sh-aero *,
.sh-aero *::before,
.sh-aero *::after {
  box-sizing: border-box;
}

.sh-aero img {
  display: block;
  width: 100%;
  height: auto;
}

.sh-aero h2,
.sh-aero h3,
.sh-aero p {
  margin-top: 0;
}

.sh-aero h3 {
  line-height: 1.16;
}


/*
 * Drupal block compatibility
 */

.block .sh-aero,
.block__content .sh-aero,
.field--name-body .sh-aero,
.field__item .sh-aero {
  width: 100%;
  max-width: none;
}

.field--name-body > .sh-aero:first-child {
  margin-top: 0;
}

.field--name-body > .sh-aero:last-child {
  margin-bottom: 0;
}


/*
 * Shared internal container
 */

.sh-aero__container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(20px, 3vw, 48px);
}


/*
 * Hero
 */

.sh-aero__hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.sh-aero__hero-image,
.sh-aero__overlay {
  position: absolute;
  inset: 0;
}

.sh-aero__hero-image {
  z-index: -2;
}

.sh-aero__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sh-aero__overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(1, 16, 27, 0.97) 0%,
      rgba(3, 29, 48, 0.91) 42%,
      rgba(4, 35, 57, 0.42) 72%,
      rgba(4, 35, 57, 0.12) 100%
    );
}

.sh-aero__hero-content {
  width: 100%;
  padding-block: clamp(72px, 10vw, 130px);
  padding-inline: clamp(20px, 3vw, 48px);
  color: var(--sh-white);
}

.sh-aero__hero-inner {
  width: 100%;
  max-width: 820px;
}

.sh-aero__eyebrow {
  margin: 0 0 14px;
  color: var(--sh-cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sh-aero__eyebrow span {
  margin-inline: 5px;
  color: rgba(255, 255, 255, 0.65);
}

.sh-aero h2 {
  margin-bottom: 22px;
  color: var(--sh-white);
  font-size: clamp(2rem, 4.8vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.sh-aero__hero-content p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.72;
}

.sh-aero__hero-content .sh-aero__intro {
  color: var(--sh-white);
  font-weight: 600;
}


/*
 * Buttons
 */

.sh-aero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.sh-aero__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.sh-aero__button:hover,
.sh-aero__button:focus-visible {
  transform: translateY(-2px);
  text-decoration: none;
}

.sh-aero__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.sh-aero__button--primary {
  color: var(--sh-white);
  background: var(--sh-blue);
}

.sh-aero__button--primary:hover,
.sh-aero__button--primary:focus-visible {
  color: var(--sh-white);
  background: var(--sh-cyan);
}

.sh-aero__button--secondary {
  color: var(--sh-white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(4, 35, 57, 0.42);
  backdrop-filter: blur(8px);
}

.sh-aero__button--secondary:hover,
.sh-aero__button--secondary:focus-visible {
  color: var(--sh-navy-dark);
  border-color: var(--sh-white);
  background: var(--sh-white);
}


/*
 * Main body
 */

.sh-aero__body {
  width: 100%;
  padding-block: clamp(42px, 6vw, 78px);
  color: var(--sh-white);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(0, 164, 207, 0.13),
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      var(--sh-navy-dark),
      var(--sh-navy)
    );
}


/*
 * Application cards
 */

.sh-aero__cards {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  margin-top: -110px;
}

.sh-aero__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  background: rgba(8, 48, 76, 0.96);
  box-shadow: var(--sh-shadow);
}

.sh-aero__card-image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #0d3b5b;
}

.sh-aero__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.sh-aero__card:hover .sh-aero__card-image img {
  transform: scale(1.035);
}

.sh-aero__card-content {
  padding: 22px;
}

.sh-aero__card h3 {
  margin-bottom: 10px;
  color: var(--sh-white);
  font-size: 1.18rem;
}

.sh-aero__card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.96rem;
  line-height: 1.58;
}


/*
 * Trust and capability list
 */

.sh-aero__trust {
  width: 100%;
  padding-block: clamp(46px, 7vw, 76px);
}

.sh-aero__trust h3 {
  margin-bottom: 28px;
  color: var(--sh-white);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  text-align: center;
}

.sh-aero__trust-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--sh-border);
  border-left: 1px solid var(--sh-border);
  list-style: none;
}

.sh-aero__trust-list li {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 11px;
  padding: 18px;
  border-right: 1px solid var(--sh-border);
  border-bottom: 1px solid var(--sh-border);
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.sh-aero__trust-list span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--sh-cyan);
  font-size: 0.92rem;
}


/*
 * Final feature
 */

.sh-aero__feature {
  display: grid;
  width: 100%;
  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(0, 0.92fr);
  align-items: stretch;
  overflow: hidden;
  background: #0b3553;
  box-shadow: var(--sh-shadow);
}

.sh-aero__feature-image {
  min-height: 440px;
}

.sh-aero__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-aero__feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 62px);
}

.sh-aero__feature-content h3 {
  margin-bottom: 20px;
  color: var(--sh-white);
  font-size: clamp(1.8rem, 3.5vw, 3.15rem);
  letter-spacing: -0.025em;
}

.sh-aero__feature-content p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.68;
}

.sh-aero__feature-content .sh-aero__button {
  align-self: flex-start;
  margin-top: 8px;
}


/*
 * Tablet
 */

@media (max-width: 1050px) {

  .sh-aero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sh-aero__trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/*
 * Mobile
 */

@media (max-width: 760px) {

  .sh-aero__container {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
  }

  .sh-aero__hero {
    min-height: 620px;
    align-items: end;
  }

  .sh-aero__hero-image img {
    object-position: 62% center;
  }

  .sh-aero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 20, 34, 0.28) 0%,
        rgba(2, 20, 34, 0.82) 40%,
        rgba(2, 20, 34, 0.98) 100%
      );
  }

  .sh-aero__hero-content {
    padding-top: 90px;
    padding-right: 16px;
    padding-bottom: 150px;
    padding-left: 16px;
  }

  .sh-aero__hero-inner {
    max-width: none;
  }

  .sh-aero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sh-aero__button {
    width: 100%;
  }

  .sh-aero__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -110px;
  }

  .sh-aero__trust-list {
    grid-template-columns: 1fr;
  }

  .sh-aero__feature {
    grid-template-columns: 1fr;
  }

  .sh-aero__feature-image {
    min-height: 300px;
  }

  .sh-aero__feature-content .sh-aero__button {
    align-self: stretch;
  }

}


/*
 * Small phones
 */

@media (max-width: 440px) {

  .sh-aero h2 {
    font-size: 2.2rem;
  }

  .sh-aero__hero-content {
    padding-top: 72px;
  }

  .sh-aero__card-content,
  .sh-aero__feature-content {
    padding: 22px;
  }

}


/*
 * Reduced motion
 */

@media (prefers-reduced-motion: reduce) {

  .sh-aero__button,
  .sh-aero__card-image img {
    transition: none;
  }

}

.sh-aero-wrapper {
    background:
  radial-gradient(circle at 85% 15%, rgba(0,164,207,.13), transparent 28rem),
  linear-gradient(180deg, #061f32 0%, #092f4b 100%);
}

/* Bootstrap-safe Aerospace CTA buttons */

.sh-aero .sh-aero__actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.sh-aero .sh-aero__actions .sh-aero__button,
.sh-aero .sh-aero__actions a.sh-aero__button,
.sh-aero .sh-aero__actions a.sh-aero__button:link,
.sh-aero .sh-aero__actions a.sh-aero__button:visited {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  min-height: 52px;
  flex: 0 0 auto !important;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;

  border-radius: 2px;
  box-shadow: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

/* Primary button */

.sh-aero .sh-aero__actions a.sh-aero__button--primary,
.sh-aero .sh-aero__actions a.sh-aero__button--primary:link,
.sh-aero .sh-aero__actions a.sh-aero__button--primary:visited {
  color: #ffffff !important;
  background-color: #078dbd !important;
  border: 1px solid #078dbd !important;
}

.sh-aero .sh-aero__actions a.sh-aero__button--primary:hover,
.sh-aero .sh-aero__actions a.sh-aero__button--primary:focus,
.sh-aero .sh-aero__actions a.sh-aero__button--primary:active {
  color: #ffffff !important;
  background-color: #00a4cf !important;
  border-color: #00a4cf !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

/* Secondary button */

.sh-aero .sh-aero__actions a.sh-aero__button--secondary,
.sh-aero .sh-aero__actions a.sh-aero__button--secondary:link,
.sh-aero .sh-aero__actions a.sh-aero__button--secondary:visited {
  color: #ffffff !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
}

.sh-aero .sh-aero__actions a.sh-aero__button--secondary:hover,
.sh-aero .sh-aero__actions a.sh-aero__button--secondary:focus,
.sh-aero .sh-aero__actions a.sh-aero__button--secondary:active {
  color: #061f32 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
}

/* Keep Bootstrap from recoloring the arrow */

.sh-aero .sh-aero__button span {
  color: inherit !important;
  font-size: 1.15em;
  line-height: 1;
}

/* Keyboard focus */

.sh-aero .sh-aero__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

/* Mobile stacking */

@media (max-width: 575.98px) {
  .sh-aero .sh-aero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sh-aero .sh-aero__actions .sh-aero__button {
    width: 100% !important;
  }
}

/* =========================================================
   Steelhead Aerospace Section — Visual Refinements
   Add after the existing .sh-aero CSS
========================================================= */


/* 1. Larger, more immersive hero */

.sh-aero .sh-aero__hero {
  min-height: clamp(680px, 72vh, 780px);
}


/* 2. Allow the headline and copy to breathe more */

.sh-aero .sh-aero__hero-inner {
  max-width: 820px;
}

.sh-aero .sh-aero__hero-content {
  padding-top: clamp(90px, 10vw, 145px);
  padding-bottom: clamp(150px, 13vw, 210px);
}


/* 3. Slightly refine the headline sizing and wrapping */

.sh-aero .sh-aero__hero h2 {
  max-width: 820px;
  font-size: clamp(2.75rem, 4.8vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.sh-aero .sh-aero__hero-content p {
  max-width: 760px;
}


/* 4. Stronger cinematic overlay */

.sh-aero .sh-aero__overlay {

    background:

        radial-gradient(
            circle at 18% 58%,
            rgba(0,164,207,.10) 0%,
            rgba(0,164,207,.04) 18%,
            transparent 40%
        ),

        linear-gradient(
            90deg,
            rgba(1,16,27,.80) 0%,
            rgba(3,29,48,.58) 32%,
            rgba(4,35,57,.22) 58%,
            rgba(4,35,57,.04) 100%
        );
}


/* 5. Subtle glow behind the CTA area */

.sh-aero .sh-aero__actions {
  position: relative;
  isolation: isolate;
}

.sh-aero .sh-aero__actions::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 18%;
  width: 430px;
  height: 150px;
  content: "";
  pointer-events: none;
  background: rgba(0, 164, 207, 0.2);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}


/* 6. Larger, more prominent CTA buttons */

.sh-aero .sh-aero__actions .sh-aero__button,
.sh-aero .sh-aero__actions a.sh-aero__button,
.sh-aero .sh-aero__feature-content .sh-aero__button {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.sh-aero .sh-aero__actions a.sh-aero__button--primary,
.sh-aero .sh-aero__feature-content a.sh-aero__button--primary {
  box-shadow:
    0 12px 30px rgba(0, 164, 207, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.sh-aero .sh-aero__actions a.sh-aero__button--primary:hover,
.sh-aero .sh-aero__actions a.sh-aero__button--primary:focus,
.sh-aero .sh-aero__feature-content a.sh-aero__button--primary:hover,
.sh-aero .sh-aero__feature-content a.sh-aero__button--primary:focus {
  box-shadow:
    0 16px 38px rgba(0, 164, 207, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}


/* 7. More polished application cards */

.sh-aero .sh-aero__card {
  position: relative;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(
      180deg,
      rgba(13, 59, 91, 0.97),
      rgba(6, 38, 62, 0.98)
    );
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.sh-aero .sh-aero__card:hover {
  border-color: rgba(0, 164, 207, 0.55);
  box-shadow:
    0 24px 50px rgba(2, 20, 34, 0.36),
    0 0 30px rgba(0, 164, 207, 0.08);
  transform: translateY(-7px);
}

.sh-aero .sh-aero__card-image img {
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.sh-aero .sh-aero__card:hover .sh-aero__card-image img {
  filter: brightness(1.05) contrast(1.04);
  transform: scale(1.055);
}


/* 8. Card entrance animation */

@keyframes sh-aero-card-reveal {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*
 * Modern browsers: animate cards as they enter the viewport.
 * Browsers without scroll-driven animation support simply show
 * the cards normally.
 */

@supports (animation-timeline: view()) {

  .sh-aero .sh-aero__card {
    animation-name: sh-aero-card-reveal;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 10% cover 28%;
  }

  .sh-aero .sh-aero__card:nth-child(2) {
    animation-range: entry 14% cover 32%;
  }

  .sh-aero .sh-aero__card:nth-child(3) {
    animation-range: entry 18% cover 36%;
  }

  .sh-aero .sh-aero__card:nth-child(4) {
    animation-range: entry 22% cover 40%;
  }

}


/* 9. Add more depth to the dark section */

.sh-aero .sh-aero__body {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(0, 164, 207, 0.12),
      transparent 26rem
    ),
    radial-gradient(
      circle at 88% 58%,
      rgba(20, 82, 125, 0.2),
      transparent 34rem
    ),
    linear-gradient(
      180deg,
      #061f32 0%,
      #082b44 48%,
      #092f4b 100%
    );
}


/* 10. Improve the final feature panel */

.sh-aero .sh-aero__feature {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(
      135deg,
      rgba(9, 47, 75, 0.98),
      rgba(4, 31, 51, 0.98)
    );
}

.sh-aero .sh-aero__feature-content {
  position: relative;
}

.sh-aero .sh-aero__feature-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  background:
    linear-gradient(
      180deg,
      #00a4cf,
      rgba(0, 164, 207, 0.08)
    );
}


/* Tablet */

@media (max-width: 991.98px) {

  .sh-aero .sh-aero__hero {
    min-height: 680px;
  }

  .sh-aero .sh-aero__hero-inner {
    max-width: 720px;
  }

  .sh-aero .sh-aero__hero h2 {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

}


/* Mobile */

@media (max-width: 575.98px) {

  .sh-aero .sh-aero__hero {
    min-height: 700px;
  }

  .sh-aero .sh-aero__hero-content {
    padding-top: 80px;
    padding-bottom: 145px;
  }

  .sh-aero .sh-aero__hero h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .sh-aero .sh-aero__actions::before {
    width: 280px;
    height: 190px;
  }

  .sh-aero .sh-aero__actions .sh-aero__button,
  .sh-aero .sh-aero__feature-content .sh-aero__button {
    min-height: 56px;
    padding: 15px 20px;
    font-size: 16px;
  }

  .sh-aero .sh-aero__card:hover {
    transform: none;
  }

}


/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {

  .sh-aero .sh-aero__card,
  .sh-aero .sh-aero__card-image img,
  .sh-aero .sh-aero__button {
    animation: none !important;
    transition: none !important;
  }

}

/*====================================================
  Engineering Across Industries
====================================================*/

.sh-industries-transition {
    position: relative;
    overflow: hidden;
    padding: 85px 0 40px;

    background: linear-gradient(
        180deg,
        #e8f4fb 0%,
        #ffffff 75%
    );
}

.sh-industries-transition::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #00a4cf,
        #35bce6,
        #00a4cf
    );
}

.sh-industries-transition__inner{
    max-width:1300px;
    margin:0 auto;
    padding:0 35px;
}

.sh-industries-transition__intro{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.sh-industries-transition__eyebrow{
    color:#1f93c6;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    margin-bottom:12px;
}

.sh-industries-transition h2{
    color:#0b3553;
    font-size:clamp(2rem,3vw,3rem);
    line-height:1.15;
    font-weight:700;
    margin-bottom:20px;
}

.sh-industries-transition__intro p:last-child{
    max-width:760px;
    margin:0 auto;
    color:#5f6b75;
    font-size:1.15rem;
    line-height:1.8;
}


/*------------------------------------
 Industries
------------------------------------*/

.sh-industries-transition__industries{

    display:grid;
    grid-template-columns:repeat(5,1fr);

    list-style:none;

    margin:65px 0 55px;
    padding:0;

    border-top:1px solid #e8edf2;
    border-bottom:1px solid #e8edf2;

}

.sh-industries-transition__industry{

    padding:32px 18px;

    text-align:center;

    border-right:1px solid #eef2f5;

}

.sh-industries-transition__industry:last-child{
    border-right:none;
}

.sh-industries-transition__icon{

    width:82px;
    height:82px;

    border:2px solid #d7e7ef;
    border-radius:50%;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#1f93c6;

    transition:.3s;

}

.sh-industries-transition__icon svg{

    width:36px;
    height:36px;

    fill:currentColor;

}

.sh-industries-transition__icon--text{

    font-size:1.65rem;
    font-weight:700;

}

.sh-industries-transition__industry:hover .sh-industries-transition__icon{

    background:#1f93c6;
    border-color:#1f93c6;
    color:#fff;

    transform:translateY(-4px);

}

.sh-industries-transition__label{

    display:block;

    color:#0b3553;

    font-size:1rem;
    font-weight:600;
}


/*------------------------------------
 Arrow
------------------------------------*/

.sh-industries-transition__next{

    text-align:center;

}

.sh-industries-transition__arrow{

    width:64px;
    height:64px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#fff;

    box-shadow:
        0 12px 35px rgba(0,0,0,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#1f93c6;

    font-size:34px;
    font-weight:300;

}

.sh-industries-transition__next p{

    color:#0b3553;

    font-size:1.55rem;
    font-weight:700;

    margin:0;

}


/*------------------------------------
 Mobile
------------------------------------*/

@media (max-width:991px){

.sh-industries-transition__industries{

    grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:640px){

.sh-industries-transition{

    padding:60px 0;

}

.sh-industries-transition__industries{

    grid-template-columns:1fr;

}

.sh-industries-transition__industry{

    border-right:none;
    border-bottom:1px solid #eef2f5;

}

.sh-industries-transition__industry:last-child{

    border-bottom:none;

}

.sh-industries-transition__next p{

    font-size:1.2rem;

}

}

/* =========================================================
   Commercial Pressure Vessel Solutions
========================================================= */

.sh-solutions {
  --sh-solutions-navy: #0b3553;
  --sh-solutions-blue: #0b4f87;
  --sh-solutions-cyan: #0798c7;
  --sh-solutions-text: #243746;
  --sh-solutions-muted: #5f6f7b;
  --sh-solutions-border: #dbe5eb;
  --sh-solutions-light: #eef7fb;
  --sh-solutions-white: #ffffff;
  --sh-solutions-shadow: 0 12px 32px rgba(13, 48, 74, 0.1);

  width: 100%;
  padding: clamp(72px, 7vw, 104px) 0;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #eef7fb 0%,
      #f7fbfd 42%,
      #ffffff 100%
    );
}

.sh-solutions *,
.sh-solutions *::before,
.sh-solutions *::after {
  box-sizing: border-box;
}

.sh-solutions__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: clamp(20px, 3vw, 44px);
}


/* Header
--------------------------------------------------------- */

.sh-solutions__header {
  max-width: 900px;
  margin: 0 auto clamp(44px, 5vw, 68px);
  text-align: center;
}

.sh-solutions__eyebrow {
  margin: 0 0 10px;
  color: var(--sh-solutions-cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.sh-solutions__header h2 {
  margin: 0 0 16px;
  color: var(--sh-solutions-navy);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.sh-solutions__header p {
  max-width: 790px;
  margin: 0 auto;
  color: var(--sh-solutions-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.7;
}


/* Grid
--------------------------------------------------------- */

.sh-solutions__grid {
  display: grid;
  width: 100%;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0 auto;
}


/* Cards
--------------------------------------------------------- */

.sh-solutions__card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sh-solutions-border);
  border-radius: 6px;
  background: var(--sh-solutions-white);
  box-shadow: var(--sh-solutions-shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.sh-solutions__card:hover {
  border-color: rgba(7, 152, 199, 0.45);
  box-shadow: 0 20px 44px rgba(13, 48, 74, 0.16);
  transform: translateY(-6px);
}


/* Image
--------------------------------------------------------- */

.sh-solutions__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background:
    linear-gradient(
      145deg,
      #e8f4f8,
      #d5eaf2
    );
}

.sh-solutions__image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.sh-solutions__image::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(7, 50, 78, 0.045)
    );
}

.sh-solutions__image img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  object-position: center;
  transition: transform 320ms ease;
}

.sh-solutions__card:hover .sh-solutions__image img {
  transform: scale(1.035);
}


/* Card copy
--------------------------------------------------------- */

.sh-solutions__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.sh-solutions__content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.16rem, 1.35vw, 1.4rem);
  font-weight: 700;
  line-height: 1.22;
}

.sh-solutions__content h3 a,
.sh-solutions__content h3 a:link,
.sh-solutions__content h3 a:visited {
  color: var(--sh-solutions-blue) !important;
  text-decoration: none !important;
}

.sh-solutions__content h3 a:hover,
.sh-solutions__content h3 a:focus {
  color: var(--sh-solutions-cyan) !important;
}

.sh-solutions__content p {
  margin: 0 0 20px;
  color: var(--sh-solutions-text);
  font-size: 0.96rem;
  line-height: 1.62;
}

.sh-solutions__content > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}


/* Link
--------------------------------------------------------- */

.sh-solutions__link,
.sh-solutions__link:link,
.sh-solutions__link:visited {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--sh-solutions-blue) !important;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none !important;
}

.sh-solutions__link span {
  color: inherit !important;
  transition: transform 180ms ease;
}

.sh-solutions__link:hover,
.sh-solutions__link:focus {
  color: var(--sh-solutions-cyan) !important;
}

.sh-solutions__link:hover span,
.sh-solutions__link:focus span {
  transform: translateX(4px);
}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 991.98px) {
  .sh-solutions__grid {
    max-width: 780px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 575.98px) {
  .sh-solutions {
    padding-block: 56px;
  }

  .sh-solutions__inner {
    padding-inline: 16px;
  }

  .sh-solutions__header {
    margin-bottom: 38px;
  }

  .sh-solutions__grid {
    max-width: 440px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sh-solutions__image {
    aspect-ratio: 16 / 10;
  }

  .sh-solutions__image img {
    padding: 22px;
  }

  .sh-solutions__content {
    padding: 22px;
  }

  .sh-solutions__card:hover {
    transform: none;
  }
}


/* Accessibility
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .sh-solutions__card,
  .sh-solutions__image img,
  .sh-solutions__link span {
    transition: none;
  }
}

/* =========================================================
   STEELHEAD AEROSPACE ENGINEERING CONSULTATION
   CLEAN AUTHORITATIVE STYLES
   ========================================================= */

.sh-consult {
  --sh-consult-navy: #092f4b;
  --sh-consult-dark: #061f32;
  --sh-consult-blue: #078dbd;
  --sh-consult-cyan: #00a4cf;
  --sh-consult-light: #eef7fb;
  --sh-consult-white: #ffffff;
  --sh-consult-text: #243746;
  --sh-consult-muted: #617381;
  --sh-consult-border: #d8e4ea;
  --sh-consult-shadow: 0 18px 45px rgba(4, 35, 57, 0.13);

  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  color: var(--sh-consult-text);
  font-family: inherit;
}

.sh-consult *,
.sh-consult *::before,
.sh-consult *::after,
.sh-consult-form-section *,
.sh-consult-form-section *::before,
.sh-consult-form-section *::after {
  box-sizing: border-box;
}

.sh-consult img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sh-consult h1,
.sh-consult h2,
.sh-consult h3,
.sh-consult p {
  margin-top: 0;
}

.sh-consult__container {
  width: 100%;
  max-width: 1540px;
  margin-inline: auto;
  padding-inline: clamp(40px, 5vw, 96px);
}

.sh-consult__eyebrow {
  margin: 0 0 14px;
  color: var(--sh-consult-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sh-consult__eyebrow span {
  margin-inline: 5px;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.sh-consult__hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: clamp(540px, 56vw, 690px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--sh-consult-white);
  background: var(--sh-consult-dark);
}

.sh-consult__hero-image,
.sh-consult__hero-overlay {
  position: absolute;
  inset: 0;
}

.sh-consult__hero-image {
  z-index: -2;
}

.sh-consult__hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
}

.sh-consult__hero-overlay {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 24, 40, 0.98) 0%,
      rgba(3, 31, 50, 0.94) 28%,
      rgba(4, 38, 61, 0.68) 48%,
      rgba(4, 38, 61, 0.18) 68%,
      rgba(4, 38, 61, 0.03) 100%
    );
}

.sh-consult__hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: clamp(76px, 7vw, 118px);
  padding-right: clamp(40px, 5vw, 96px);
  padding-bottom: clamp(76px, 7vw, 118px);
  padding-left: clamp(40px, 5vw, 96px);
}

.sh-consult__hero-content > * {
  max-width: 720px;
}

.sh-consult__hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  color: var(--sh-consult-white);
  font-size: clamp(3.35rem, 4.9vw, 5.45rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.sh-consult__hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 600;
  line-height: 1.6;
}

.sh-consult__button,
.sh-consult__button:link,
.sh-consult__button:visited {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--sh-consult-white) !important;
  background: var(--sh-consult-blue);
  box-shadow: 0 12px 30px rgba(0, 164, 207, 0.24);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.sh-consult__button:hover,
.sh-consult__button:focus {
  color: var(--sh-consult-white) !important;
  border-color: var(--sh-consult-cyan);
  background: var(--sh-consult-cyan);
  box-shadow: 0 16px 38px rgba(0, 164, 207, 0.34);
  transform: translateY(-2px);
}

.sh-consult__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   Engineering overview
   --------------------------------------------------------- */

.sh-consult__overview {
  position: relative;
  width: 100%;
  padding-block: clamp(72px, 7vw, 108px);
  background:
    linear-gradient(
      180deg,
      #f2f9fc 0%,
      #ffffff 78%
    );
}

.sh-consult__overview::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--sh-consult-cyan),
      #42c1e5,
      var(--sh-consult-cyan)
    );
}

.sh-consult__overview-grid {
  display: grid;
  width: 100%;
  grid-template-columns:
    minmax(0, 1.72fr)
    minmax(340px, 0.58fr);
  gap: clamp(52px, 5vw, 88px);
  align-items: start;
}

.sh-consult__overview-copy {
  width: 100%;
  min-width: 0;
}

.sh-consult__overview-copy h2 {
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--sh-consult-navy);
  font-size: clamp(2.15rem, 3.5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.sh-consult__overview-copy p {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--sh-consult-text);
  font-size: 1.04rem;
  line-height: 1.75;
}

.sh-consult__overview-copy .sh-consult__lead {
  color: var(--sh-consult-navy);
  font-size: clamp(1.1rem, 1.4vw, 1.28rem);
  font-weight: 600;
}

.sh-consult__statement {
  position: relative;
  max-width: 900px;
  margin: 36px 0 0;
  padding: 26px 30px 26px 34px;
  border: 0;
  border-left: 4px solid var(--sh-consult-cyan);
  color: var(--sh-consult-navy);
  background: var(--sh-consult-light);
  font-size: 1.04rem;
  line-height: 1.68;
}

.sh-consult__statement p {
  margin: 0;
}

.sh-consult__statement strong {
  display: block;
  margin-bottom: 5px;
}

.sh-consult__capabilities {
  width: 100%;
  max-width: 400px;
  justify-self: end;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(0, 164, 207, 0.22);
  background:
    linear-gradient(
      145deg,
      var(--sh-consult-navy),
      var(--sh-consult-dark)
    );
  box-shadow: var(--sh-consult-shadow);
}

.sh-consult__capabilities h2 {
  margin-bottom: 22px;
  color: var(--sh-consult-white);
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  line-height: 1.2;
}

.sh-consult__capabilities ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sh-consult__capabilities li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

.sh-consult__capabilities li:last-child {
  border-bottom: 0;
}

.sh-consult__capabilities li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--sh-consult-cyan);
  content: "✓";
  font-weight: 800;
}

/* ---------------------------------------------------------
   Contact introduction
   --------------------------------------------------------- */

.sh-consult__contact {
  width: 100%;
  padding-block: clamp(58px, 6vw, 90px) clamp(34px, 4vw, 58px);
  color: var(--sh-consult-white);
  background:
    radial-gradient(
      circle at 85% 18%,
      rgba(0, 164, 207, 0.13),
      transparent 30rem
    ),
    linear-gradient(
      145deg,
      var(--sh-consult-dark),
      var(--sh-consult-navy)
    );
}

.sh-consult__contact-header {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.sh-consult__contact-header h2 {
  margin-bottom: 18px;
  color: var(--sh-consult-white);
  font-size: clamp(2.2rem, 3.7vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.sh-consult__contact-header > p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* =========================================================
   DRUPAL LAYOUT BUILDER FORM SECTION
   Apply class "sh-consult-form-section" to the 75/25 section.
   Works whether that class is on the layout itself or a wrapper.
   ========================================================= */

.sh-consult-form-section {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding:
    12px
    clamp(28px, 3.5vw, 64px)
    clamp(80px, 8vw, 120px);
  overflow: visible;
  color: #10263a;
  background: #0b4966;
}

/* Wrapper case and class-on-layout case. */
.sh-consult-form-section > .layout,
.sh-consult-form-section .layout--twocol-section,
.layout--twocol-section.sh-consult-form-section {
  display: grid !important;
  width: 100% !important;
  max-width: 1460px !important;
  grid-template-columns:
    minmax(0, 3.25fr)
    minmax(300px, 0.85fr) !important;
  gap: clamp(30px, 3vw, 48px) !important;
  align-items: start !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* Neutralize Layout Builder / Bootstrap region sizing. */
.sh-consult-form-section .layout__region,
.layout--twocol-section.sh-consult-form-section > .layout__region {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: none !important;
  flex-basis: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sh-consult-form-section .layout__region--first,
.layout--twocol-section.sh-consult-form-section > .layout__region--first {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

.sh-consult-form-section .layout__region--second,
.layout--twocol-section.sh-consult-form-section > .layout__region--second {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: start !important;
}

/* Do not make both Drupal block wrapper and form into cards. */
.sh-consult-form-section .layout__region--first > .block,
.sh-consult-form-section .layout__region--first > div[id^="block-"],
.layout--twocol-section.sh-consult-form-section > .layout__region--first > .block,
.layout--twocol-section.sh-consult-form-section > .layout__region--first > div[id^="block-"] {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* The form itself is the one white card. */
.sh-consult-form-section form.webform-submission-form,
.layout--twocol-section.sh-consult-form-section form.webform-submission-form {
  box-sizing: border-box !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding:
    clamp(34px, 3.5vw, 54px)
    clamp(34px, 4vw, 60px) !important;
  color: #102b40 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 4px !important;
  box-shadow: 0 22px 58px rgba(0, 20, 34, 0.28) !important;
}

/* ---------------------------------------------------------
   Webform typography
   --------------------------------------------------------- */

.sh-consult-form-section form.webform-submission-form,
.sh-consult-form-section form.webform-submission-form p,
.sh-consult-form-section form.webform-submission-form label,
.sh-consult-form-section form.webform-submission-form legend,
.sh-consult-form-section form.webform-submission-form .description,
.sh-consult-form-section form.webform-submission-form .form-item__description,
.sh-consult-form-section form.webform-submission-form .webform-element-description {
  color: #263f50 !important;
  opacity: 1 !important;
}

.sh-consult-form-section .sh-webform-intro {
  margin: 0 0 34px;
}

.sh-consult-form-section .sh-webform-intro h3 {
  margin: 0 0 8px;
  color: #0b3652;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.2;
}

.sh-consult-form-section .sh-webform-intro p {
  margin: 0;
  color: #536879 !important;
  font-size: 15px;
  line-height: 1.6;
}

.sh-consult-form-section .sh-webform-section-heading {
  margin: 42px 0 28px;
  padding-top: 34px;
  border-top: 1px solid #d9e3e9;
}

.sh-consult-form-section .sh-webform-section-heading h3 {
  margin: 0 0 8px;
  color: #0b3652;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.2;
}

.sh-consult-form-section .sh-webform-section-heading p {
  margin: 0;
  color: #526b7a !important;
  font-size: 15px;
  line-height: 1.55;
}

.sh-consult-form-section .webform-submission-form .form-item {
  margin-top: 0;
  margin-bottom: 24px;
}

.sh-consult-form-section .webform-submission-form label {
  display: block;
  margin: 0 0 8px !important;
  color: #102b40 !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1.4;
}

.sh-consult-form-section .webform-submission-form .form-required::after {
  color: #c9252d;
}

/* ---------------------------------------------------------
   Webform fields
   --------------------------------------------------------- */

.sh-consult-form-section .webform-flexbox {
  display: flex !important;
  width: 100%;
  gap: 24px;
  margin: 0 !important;
}

.sh-consult-form-section .webform-flex {
  width: auto !important;
  min-width: 0 !important;
  flex: 1 1 0 !important;
  margin: 0 !important;
}

.sh-consult-form-section .webform-flex--container {
  margin: 0 !important;
}

.sh-consult-form-section .webform-submission-form input[type="text"],
.sh-consult-form-section .webform-submission-form input[type="email"],
.sh-consult-form-section .webform-submission-form input[type="tel"],
.sh-consult-form-section .webform-submission-form input[type="number"],
.sh-consult-form-section .webform-submission-form select,
.sh-consult-form-section .webform-submission-form textarea {
  display: block;
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  border: 1px solid #aebfc9;
  border-radius: 2px;
  color: #203848;
  background: #ffffff;
  box-shadow: none;
  font: inherit;
}

.sh-consult-form-section .webform-submission-form input[type="text"],
.sh-consult-form-section .webform-submission-form input[type="email"],
.sh-consult-form-section .webform-submission-form input[type="tel"],
.sh-consult-form-section .webform-submission-form input[type="number"],
.sh-consult-form-section .webform-submission-form select {
  min-height: 50px;
  padding: 10px 13px;
}

.sh-consult-form-section .webform-submission-form textarea {
  min-height: 190px;
  padding: 13px;
  resize: vertical;
}

.sh-consult-form-section .webform-submission-form input:focus,
.sh-consult-form-section .webform-submission-form select:focus,
.sh-consult-form-section .webform-submission-form textarea:focus {
  border-color: #00a4cf;
  outline: 3px solid rgba(0, 164, 207, 0.15);
  outline-offset: 0;
}

.sh-consult-form-section .webform-submission-form .description,
.sh-consult-form-section .webform-submission-form .form-item__description,
.sh-consult-form-section .webform-submission-form .webform-element-description {
  margin-top: 7px;
  color: #5f7482 !important;
  font-size: 13px;
  line-height: 1.5;
}

/* File upload */
.sh-consult-form-section .webform-submission-form input[type="file"] {
  box-sizing: border-box;
  width: 100%;
  padding: 13px;
  color: #243f51;
  background: #f3f7f9;
  border: 1px dashed #96acb9;
  border-radius: 2px;
}

.sh-consult-form-section .webform-submission-form .form-managed-file {
  margin-bottom: 8px;
}

/* Warning / restricted-information notice */
.sh-consult-form-section .webform-message,
.sh-consult-form-section .messages--warning,
.sh-consult-form-section .sh-restricted-notice {
  box-sizing: border-box;
  margin: 28px 0;
  padding: 17px 20px;
  color: #533d00 !important;
  background: #fff4d2 !important;
  border: 1px solid #e3c45e !important;
  border-left: 5px solid #d89000 !important;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.55;
}

.sh-consult-form-section .sh-restricted-notice p,
.sh-consult-form-section .sh-restricted-notice__content p {
  margin: 0 !important;
  color: #5d490f !important;
}

/* Checkboxes */
.sh-consult-form-section .webform-submission-form .form-type-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sh-consult-form-section .webform-submission-form .form-type-checkbox input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--sh-consult-blue);
}

.sh-consult-form-section .webform-submission-form .form-type-checkbox label {
  display: block;
  margin: 0 !important;
  color: #263f50 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

/* Submit button */
.sh-consult-form-section .webform-submission-form .form-actions {
  margin-top: 30px;
  margin-bottom: 0;
}

.sh-consult-form-section .webform-submission-form .form-submit,
.sh-consult-form-section .webform-submission-form button[type="submit"],
.sh-consult-form-section .webform-submission-form input[type="submit"] {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  color: #ffffff !important;
  background: #009fca !important;
  border: 1px solid #009fca !important;
  border-radius: 2px;
  box-shadow: 0 9px 24px rgba(0, 159, 202, 0.25);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
}

.sh-consult-form-section .webform-submission-form .form-submit:hover,
.sh-consult-form-section .webform-submission-form .form-submit:focus,
.sh-consult-form-section .webform-submission-form button[type="submit"]:hover,
.sh-consult-form-section .webform-submission-form button[type="submit"]:focus,
.sh-consult-form-section .webform-submission-form input[type="submit"]:hover,
.sh-consult-form-section .webform-submission-form input[type="submit"]:focus {
  color: #ffffff !important;
  background: #007fa6 !important;
  border-color: #007fa6 !important;
}

/* ---------------------------------------------------------
   Right supporting-information column
   --------------------------------------------------------- */

.sh-consult-form-section .layout__region--second > *,
.layout--twocol-section.sh-consult-form-section > .layout__region--second > * {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}

.sh-consult-form-section .sh-consult__contact-aside {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  margin: 0 !important;
}

.sh-consult-form-section .sh-consult__contact-panel,
.sh-consult-form-section .sh-consult__security-note {
  box-sizing: border-box;
  width: 100% !important;
  margin: 0 !important;
  padding: 24px !important;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(0, 18, 31, 0.13);
}

.sh-consult-form-section .sh-consult__contact-panel h3,
.sh-consult-form-section .sh-consult__security-note h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
}

.sh-consult-form-section .sh-consult__contact-panel p,
.sh-consult-form-section .sh-consult__security-note p,
.sh-consult-form-section .sh-consult__contact-panel li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.58;
}

.sh-consult-form-section .sh-consult__contact-panel ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sh-consult-form-section .sh-consult__contact-panel li {
  position: relative;
  padding-left: 22px;
}

.sh-consult-form-section .sh-consult__contact-panel li + li {
  margin-top: 8px;
}

.sh-consult-form-section .sh-consult__contact-panel li::before {
  position: absolute;
  left: 0;
  color: var(--sh-consult-cyan);
  content: "✓";
  font-weight: 800;
}

.sh-consult-form-section .sh-consult__security-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.sh-consult-form-section .sh-consult__security-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--sh-consult-cyan);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-weight: 800;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 1150px) {
  .sh-consult__overview-grid {
    grid-template-columns:
      minmax(0, 1.45fr)
      minmax(300px, 0.7fr);
    gap: 40px;
  }

  .sh-consult-form-section > .layout,
  .sh-consult-form-section .layout--twocol-section,
  .layout--twocol-section.sh-consult-form-section {
    grid-template-columns:
      minmax(0, 2.7fr)
      minmax(260px, 0.9fr) !important;
    gap: 30px !important;
  }
}

@media (max-width: 900px) {
  .sh-consult__overview-grid {
    grid-template-columns: 1fr;
  }

  .sh-consult__capabilities {
    max-width: none;
    justify-self: stretch;
  }

  .sh-consult-form-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .sh-consult-form-section > .layout,
  .sh-consult-form-section .layout--twocol-section,
  .layout--twocol-section.sh-consult-form-section {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .sh-consult-form-section .layout__region--first,
  .layout--twocol-section.sh-consult-form-section > .layout__region--first {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .sh-consult-form-section .layout__region--second,
  .layout--twocol-section.sh-consult-form-section > .layout__region--second {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-top: 0 !important;
  }

  .sh-consult-form-section .sh-consult__contact-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 575.98px) {
  .sh-consult__container {
    padding-inline: 18px;
  }

  .sh-consult__hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .sh-consult__hero {
    min-height: 650px;
    align-items: flex-end;
  }

  .sh-consult__hero-image img {
    object-position: 64% center;
  }

  .sh-consult__hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 24, 40, 0.16) 0%,
        rgba(2, 24, 40, 0.58) 36%,
        rgba(2, 24, 40, 0.98) 72%,
        rgba(2, 24, 40, 1) 100%
      );
  }

  .sh-consult__hero-content {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .sh-consult__hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.8rem);
  }

  .sh-consult__button {
    width: 100%;
  }

  .sh-consult__overview {
    padding-block: 56px;
  }

  .sh-consult__statement {
    padding: 22px;
  }

  .sh-consult-form-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .sh-consult-form-section form.webform-submission-form,
  .layout--twocol-section.sh-consult-form-section form.webform-submission-form {
    padding: 26px 20px !important;
  }

  .sh-consult-form-section .webform-flexbox {
    display: block !important;
  }

  .sh-consult-form-section .webform-flex {
    width: 100% !important;
  }

  .sh-consult-form-section .sh-consult__contact-aside {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-consult__button,
  .sh-consult-form-section .webform-submission-form .form-submit {
    transition: none !important;
  }
}

/* =========================================================
   Aerospace consultation confirmation page
   ========================================================= */

.sh-consult-receipt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.sh-consult-receipt__secondary-button,
.sh-consult-receipt__secondary-button:link,
.sh-consult-receipt__secondary-button:visited {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  color: var(--sh-consult-navy) !important;
  background: transparent;
  border: 1px solid var(--sh-consult-navy);
  border-radius: 2px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.sh-consult-receipt__secondary-button:hover,
.sh-consult-receipt__secondary-button:focus {
  color: #ffffff !important;
  background: var(--sh-consult-navy);
  border-color: var(--sh-consult-navy);
  transform: translateY(-2px);
}

.sh-consult-receipt__notice {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: clamp(46px, 6vw, 76px);
  padding: clamp(24px, 3vw, 34px);
  color: #173247;
  background: #eef7fb;
  border: 1px solid #cfe2eb;
  border-left: 4px solid var(--sh-consult-cyan);
}

.sh-consult-receipt__notice-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: var(--sh-consult-blue);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.sh-consult-receipt__notice h3 {
  margin: 0 0 8px;
  color: var(--sh-consult-navy);
  font-size: 1.2rem;
}

.sh-consult-receipt__notice p {
  margin: 0;
  color: var(--sh-consult-text);
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .sh-consult-receipt__actions {
    flex-direction: column;
  }

  .sh-consult-receipt__actions a {
    width: 100%;
  }

  .sh-consult-receipt__notice {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    padding: 20px;
  }

  .sh-consult-receipt__notice-icon {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }
}

/* =========================================================
   COMMERCIAL AVAILABILITY CTA
   ========================================================= */

.sh-availability {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 78% 45%,
      rgba(0, 164, 207, 0.18),
      transparent 30rem
    ),
    linear-gradient(
      110deg,
      #061f32 0%,
      #092f4b 52%,
      #0b4966 100%
    );
}

.sh-availability::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background:
    linear-gradient(
      90deg,
      #00a4cf,
      #35bce6,
      #00a4cf
    );
}

.sh-availability *,
.sh-availability *::before,
.sh-availability *::after {
  box-sizing: border-box;
}


/* Inner layout
--------------------------------------------------------- */

.sh-availability__inner {
  display: grid;
  width: 100%;
  max-width: 1420px;
  min-height: 420px;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(520px, 1.1fr);
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  margin: 0 auto;
  padding:
    clamp(58px, 6vw, 82px)
    clamp(24px, 4vw, 60px);
}


/* Content
--------------------------------------------------------- */

.sh-availability__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.sh-availability__eyebrow {
  margin: 0 0 14px;
  color: #35bce6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sh-availability h2 {
  max-width: 650px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.sh-availability__lead,
.sh-availability__content > p:not(.sh-availability__eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.72;
}


/* CTA
--------------------------------------------------------- */

.sh-availability__actions {
  margin-top: 30px;
}

.sh-availability__button,
.sh-availability__button:link,
.sh-availability__button:visited {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  color: #ffffff !important;
  background: #078dbd;
  border: 1px solid #078dbd;
  border-radius: 2px;
  box-shadow:
    0 12px 28px rgba(0, 164, 207, 0.22);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.sh-availability__button:hover,
.sh-availability__button:focus {
  color: #ffffff !important;
  background: #00a4cf;
  border-color: #00a4cf;
  box-shadow:
    0 16px 36px rgba(0, 164, 207, 0.32);
  transform: translateY(-2px);
}

.sh-availability__button span {
  color: inherit;
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.sh-availability__button:hover span,
.sh-availability__button:focus span {
  transform: translateX(4px);
}


/* Truck visual
--------------------------------------------------------- */

.sh-availability__visual {
  position: relative;
  min-width: 0;
  min-height: 300px;
  align-self: stretch;
}

.sh-availability__visual img {
  position: absolute;
  top: 50%;
  right: -7%;
  width: 122%;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: translateY(-50%);
  filter:
    drop-shadow(0 24px 30px rgba(0, 10, 20, 0.34));
}


/* Large tablets
--------------------------------------------------------- */

@media (max-width: 1100px) {

  .sh-availability__inner {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(430px, 0.95fr);
    gap: 20px;
  }

  .sh-availability__visual img {
    right: -10%;
    width: 126%;
  }

}


/* Tablet
--------------------------------------------------------- */

@media (max-width: 900px) {

  .sh-availability__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sh-availability__content {
    max-width: 760px;
  }

  .sh-availability__visual {
    min-height: 280px;
  }

  .sh-availability__visual img {
    top: 50%;
    right: 50%;
    width: min(110%, 760px);
    transform: translate(50%, -50%);
  }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 575.98px) {

  .sh-availability__inner {
    gap: 26px;
    min-height: 0;
    padding: 48px 18px 30px;
  }

  .sh-availability h2 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .sh-availability__button {
    width: 100%;
  }

  .sh-availability__visual {
    min-height: 210px;
  }

  .sh-availability__visual img {
    width: 118%;
    max-width: 620px;
  }

}


/* Small phones
--------------------------------------------------------- */

@media (max-width: 400px) {

  .sh-availability__visual {
    min-height: 180px;
  }

  .sh-availability__visual img {
    width: 125%;
  }

}


/* Reduced motion
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  .sh-availability__button,
  .sh-availability__button span {
    transition: none;
  }

}

.sh-solutions__header-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.sh-solutions__portfolio-link,
.sh-solutions__portfolio-link:link,
.sh-solutions__portfolio-link:visited {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: #ffffff !important;
  background: var(--sh-solutions-blue);
  border: 1px solid var(--sh-solutions-blue);
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.sh-solutions__portfolio-link:hover,
.sh-solutions__portfolio-link:focus {
  color: #ffffff !important;
  background: var(--sh-solutions-cyan);
  border-color: var(--sh-solutions-cyan);
  transform: translateY(-2px);
}

.sh-solutions__portfolio-link span {
  color: inherit;
  transition: transform 180ms ease;
}

.sh-solutions__portfolio-link:hover span,
.sh-solutions__portfolio-link:focus span {
  transform: translateX(4px);
}