* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Aptos";
  src:
    local("Aptos"),
    local("Aptos Display"),
    local("Aptos Text");
  font-weight: 300 800;
  font-style: normal;
}

:root {
  --brand-blue: #1492C3;
  --brand-green: #8DC63F;
  --brand-grey: #D1D3D4;
}

body {
  margin: 0;
  font-family: "Aptos", "Aptos Display", "Segoe UI", Calibri, Arial, sans-serif;
  color: #1f2933;
  background: #f4f6f5;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 18px;
  color: #101820;
  font-family: inherit;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

p,
li,
label,
input,
select,
textarea,
button,
a {
  font-family: inherit;
}

p {
  margin: 0 0 18px;
}

ul,
ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

li {
  line-height: 1.7;
}

.site-header {
  background: white;
  color: #4a5358;
  padding: 16px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 4px solid var(--brand-blue);
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
  margin-left: 42px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 190px;
  height: auto;
}

nav a {
  display: inline-block;
  color: #344149;
  text-decoration: none;
  margin-left: 18px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

nav a:hover {
  color: var(--brand-blue);
}

.made-in-america-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-left: 4px;
  border-radius: 2cm;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(16, 24, 32, 0.12);
}

.made-in-america-badge img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 18px;
  z-index: 10;
  min-width: 210px;
  padding: 10px 0;
  background: white;
  border: 1px solid var(--brand-grey);
  border-top: 3px solid var(--brand-blue);
  box-shadow: 0 14px 32px rgba(16, 24, 32, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-menu a {
  display: block;
  margin: 0;
  padding: 10px 16px;
  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--brand-grey);
  border-radius: 4px;
  background: white;
  color: #4a5358;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  padding: 110px 8%;
  background: #101820;
  background-size: cover;
  background-position: center;
  color: white;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero li {
  color: inherit;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
  font-weight: 700;
  line-height: 1.05;
  max-width: 14ch;
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.78;
  max-width: 760px;
}

.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.58), rgba(16, 24, 32, 0.22), rgba(16, 24, 32, 0.00)),
    url("../images/home-hero-sunny-optimized.jpg");
  background-size: cover;
  background-position: center;
  animation: heroImageReveal 1.2s ease-out both;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.58), rgba(16, 24, 32, 0.22), rgba(16, 24, 32, 0));
}

.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.74), rgba(16, 24, 32, 0.46), rgba(16, 24, 32, 0.12)),
    url("../images/about-hero-nord-metallics-optimized.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero h1,
.about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-hero-copy {
  max-width: 820px;
  opacity: 0;
  transform: translateY(24px);
  animation: aboutTextReveal 1s ease-out 0.55s both;
}

.about-hero-copy h2 {
  margin: 18px 0 22px;
  color: white;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.about-hero-copy p {
  max-width: 780px;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 63% 14%, rgba(255, 206, 96, 0.95) 0 3px, transparent 18px),
    radial-gradient(circle at 71% 27%, rgba(255, 206, 96, 0.86) 0 3px, transparent 18px),
    radial-gradient(circle at 77% 40%, rgba(255, 206, 96, 0.82) 0 3px, transparent 20px),
    radial-gradient(circle at 64% 50%, rgba(255, 206, 96, 0.82) 0 3px, transparent 18px),
    radial-gradient(circle at 58% 62%, rgba(255, 206, 96, 0.78) 0 3px, transparent 18px),
    radial-gradient(circle at 83% 64%, rgba(255, 206, 96, 0.78) 0 3px, transparent 18px);
  opacity: 0.28;
  animation: aboutFactoryLights 2.7s ease-in-out infinite;
}

@keyframes aboutTextReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes aboutFactoryLights {
  0%, 100% {
    opacity: 0.24;
    filter: brightness(0.92);
  }

  40% {
    opacity: 0.95;
    filter: brightness(1.28);
  }

  68% {
    opacity: 0.52;
    filter: brightness(1.08);
  }
}

.about-banner {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
  background: #101820;
}

.about-banner img {
  display: block;
  width: 100%;
  height: auto;
}


.hero-copy {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextReveal 1s ease-out 0.75s both;
}

.bird {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 12px;
  opacity: 0;
  animation: birdFlight 15s linear infinite;
}

.bird::before,
.bird::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 15px;
  height: 8px;
  border-top: 2px solid rgba(12, 25, 35, 0.72);
}

.bird::before {
  left: 0;
  border-radius: 100% 0 0 0;
  transform: rotate(14deg);
}

.bird::after {
  right: 0;
  border-radius: 0 100% 0 0;
  transform: rotate(-14deg);
}

.bird-one {
  top: 18%;
  left: -8%;
  animation-delay: 1s;
}

.bird-two {
  top: 26%;
  left: -12%;
  transform: scale(0.76);
  animation-delay: 4s;
  animation-duration: 18s;
}

.bird-three {
  top: 14%;
  left: -10%;
  transform: scale(0.58);
  animation-delay: 7s;
  animation-duration: 20s;
}

.bird-four {
  top: 33%;
  left: -14%;
  transform: scale(0.64);
  animation-delay: 9.5s;
  animation-duration: 17s;
}

.bird-five {
  top: 22%;
  left: -16%;
  transform: scale(0.48);
  animation-delay: 12s;
  animation-duration: 21s;
}

.projects-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/projects-low-carbon-metallics.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.louisiana-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/louisiana-ironhearth-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.strategic-focus-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/strategic-focus-hero-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.technology-solutions-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/technology-solutions-hero-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.sustainability-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/sustainability-new-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.strategic-relationships-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/strategic-relationships-hero-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.investors-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/investors-hero-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.news-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/news-hero-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.contact-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    url("../images/contact-us-optimized.jpg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.contact-hero-email-link {
  position: absolute;
  left: 8.1%;
  top: 53.2%;
  width: 21.8%;
  height: 5%;
  z-index: 3;
  border-radius: 6px;
}

.contact-hero-email-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(20, 146, 195, 0.45);
}

.products-hero,
.strategy-hero,
.careers-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #00192f;
}

.products-hero {
  background-image: url("../images/products-hero-optimized.jpg");
}

.strategy-hero {
  background-image: url("../images/strategic-focus-hero-optimized.jpg");
}

.careers-hero {
  background-image: url("../images/careers-new-optimized.jpg");
}

.careers-hero-email-link {
  position: absolute;
  left: 11.2%;
  top: 81.4%;
  width: 25.8%;
  height: 5.4%;
  z-index: 3;
  border-radius: 6px;
}

.careers-hero-email-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(20, 146, 195, 0.45);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tower-light {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffd47b;
  box-shadow: 0 0 18px 7px rgba(255, 195, 83, 0.74);
  opacity: 0.34;
  animation: towerBlink 2.8s ease-in-out infinite;
}

.tower-light-one {
  left: 76%;
  top: 38%;
  animation-delay: 0.2s;
}

.tower-light-two {
  left: 78%;
  top: 46%;
  animation-delay: 0.9s;
}

.tower-light-three {
  left: 74%;
  top: 53%;
  animation-delay: 1.4s;
}

.tower-light-four {
  left: 69%;
  top: 60%;
  animation-delay: 2s;
}

.tower-light-five {
  left: 83%;
  top: 61%;
  animation-delay: 2.5s;
}

.river-shimmer {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(163, 221, 255, 0.72), rgba(255, 255, 255, 0.64), transparent);
  box-shadow: 0 0 12px rgba(126, 205, 255, 0.5);
  opacity: 0;
  animation: riverFlow 7.5s ease-in-out infinite;
}

.projects-river-one {
  left: 45%;
  bottom: 34%;
  width: 28%;
  animation-delay: 1s;
}

.projects-river-two {
  left: 58%;
  bottom: 28%;
  width: 20%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.projects-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.project-road-light {
  position: absolute;
  z-index: 1;
  left: 36%;
  bottom: 22%;
  width: 92px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), rgba(20, 146, 195, 0.82), transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.72), 0 0 26px rgba(20, 146, 195, 0.52);
  opacity: 0;
  transform: rotate(-5deg);
  animation: premiumRoadRun 4.8s linear infinite;
}

.car-light-two {
  bottom: 26%;
  animation-delay: 1.1s;
  animation-duration: 5.4s;
}

.car-light-three {
  bottom: 18%;
  animation-delay: 2.2s;
  animation-duration: 4.9s;
}

.car-light-four {
  bottom: 30%;
  animation-delay: 3.4s;
  animation-duration: 5.8s;
}

.smoke {
  position: absolute;
  z-index: 1;
  bottom: 64%;
  left: 71%;
  width: 92px;
  height: 58px;
  border-radius: 50%;
  background: rgba(246, 250, 250, 0.72);
  filter: blur(12px);
  opacity: 0;
  animation: chimneySmoke 6.8s ease-out infinite;
}

.smoke-two {
  left: 74%;
  bottom: 60%;
  width: 118px;
  height: 70px;
  animation-delay: 2.2s;
}

.smoke-three {
  left: 68%;
  bottom: 58%;
  width: 78px;
  height: 48px;
  animation-delay: 4.6s;
}

.hero h1 {
  max-width: 900px;
  font-size: 52px;
  line-height: 1.08;
  margin: 0 0 24px;
}

.hero p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.65;
  color: #e8eeee;
}

@keyframes heroImageReveal {
  from {
    filter: brightness(0.72);
  }

  to {
    filter: brightness(1);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes birdFlight {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.7);
  }

  12% {
    opacity: 0.72;
  }

  42% {
    transform: translateX(44vw) translateY(-16px) scale(0.78);
  }

  75% {
    opacity: 0.58;
    transform: translateX(82vw) translateY(8px) scale(0.66);
  }

  100% {
    opacity: 0;
    transform: translateX(118vw) translateY(-10px) scale(0.55);
  }
}

@keyframes premiumRoadRun {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(0.45) rotate(-5deg);
  }

  12% {
    opacity: 0.9;
  }

  55% {
    opacity: 0.82;
    transform: translateX(28vw) translateY(-70px) scale(0.76) rotate(-5deg);
  }

  82% {
    opacity: 0.38;
    transform: translateX(46vw) translateY(-122px) scale(0.56) rotate(-5deg);
  }

  100% {
    opacity: 0;
    transform: translateX(58vw) translateY(-160px) scale(0.38) rotate(-5deg);
  }
}

@keyframes riverFlow {
  0% {
    opacity: 0;
    transform: translateX(-28px) scaleX(0.7);
  }

  20% {
    opacity: 0.55;
  }

  58% {
    opacity: 0.35;
    transform: translateX(42px) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateX(96px) scaleX(0.8);
  }
}

@keyframes towerBlink {
  0%, 100% {
    opacity: 0.28;
    transform: scale(0.78);
    box-shadow: 0 0 10px 4px rgba(255, 195, 83, 0.42);
  }

  35% {
    opacity: 1;
    transform: scale(1.18);
    box-shadow: 0 0 24px 10px rgba(255, 207, 112, 0.92);
  }

  62% {
    opacity: 0.62;
    transform: scale(0.95);
    box-shadow: 0 0 16px 7px rgba(255, 195, 83, 0.66);
  }
}


@keyframes chimneySmoke {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.55);
  }

  18% {
    opacity: 0.76;
  }

  55% {
    opacity: 0.58;
    transform: translateY(-70px) translateX(34px) scale(1.12);
  }

  100% {
    opacity: 0;
    transform: translateY(-160px) translateX(82px) scale(1.95);
  }
}

.button {
  display: inline-block;
  margin-top: 20px;
  background: var(--brand-blue);
  color: white;
  padding: 14px 24px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  border-radius: 4px;
}

.button:hover {
  background: var(--brand-blue);
}

.toggle-panel-trigger {
  border: 0;
  cursor: pointer;
}

.toggle-panel {
  margin-top: 26px;
}

.content {
  padding: 76px 8%;
  background: white;
  border-bottom: 1px solid var(--brand-grey);
}

[id] {
  scroll-margin-top: 96px;
}

.content:nth-of-type(even) {
  background: #f4f6f5;
}

.content h2 {
  font-size: clamp(2rem, 3vw, 2.3rem);
  margin-top: 0;
  margin-bottom: 22px;
  color: #101820;
}

.content p {
  max-width: 820px;
  font-size: 1.04rem;
  line-height: 1.82;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.content > :last-child,
.feature-panel > :last-child,
.info-card > :last-child,
.leader-card > :last-child,
.footer-nav-wrap > :last-child {
  margin-bottom: 0;
}

.feature-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.feature-panel {
  background: #f7f9f9;
  border: 1px solid var(--brand-grey);
  border-top: 4px solid var(--brand-blue);
  border-radius: 6px;
  padding: 28px;
}

.feature-panel h3 {
  margin: 0 0 14px;
  color: #101820;
  font-size: 24px;
  font-weight: 600;
}

.feature-panel p,
.feature-panel ul {
  margin: 0;
  max-width: none;
}

.feature-panel p,
.feature-panel li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.feature-panel ul {
  padding-left: 20px;
}

.feature-panel li + li {
  margin-top: 10px;
}

.wide-panel {
  max-width: 920px;
}

.content-image-block {
  overflow: hidden;
  border: 1px solid var(--brand-grey);
  border-radius: 6px;
  background: #0a1d35;
}

.content-image-block img {
  display: block;
  width: 100%;
  height: auto;
}

.product-hero-block {
  padding-top: 44px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin-top: 10px;
  padding: 34px;
  background: #f7f9f9;
  border: 1px solid var(--brand-grey);
  border-top: 4px solid var(--brand-blue);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.form-header h3 {
  margin: 0 0 8px;
  color: #101820;
  font-size: 24px;
  font-weight: 600;
}

.form-header p {
  margin: 0;
  max-width: 760px;
  color: #5b666b;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  margin-bottom: 8px;
  color: #101820;
  font-weight: 600;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--brand-grey);
  border-radius: 4px;
  padding: 15px 16px;
  color: #1f2933;
  font: inherit;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand-grey) 50%),
    linear-gradient(135deg, var(--brand-grey) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(20, 146, 195, 0.14);
  background-color: #fff;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form button {
  margin-top: 4px;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.form-actions {
  display: flex;
  align-items: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.three-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.info-card {
  background: white;
  border: 1px solid var(--brand-grey);
  border-top: 4px solid var(--brand-green);
  border-radius: 6px;
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 12px;
  color: #4a5358;
  font-size: 20px;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.info-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}

.info-card a:hover {
  color: var(--brand-blue);
}

.leadership-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.leader-card {
  background: white;
  border: 1px solid var(--brand-grey);
  border-left: 5px solid var(--brand-blue);
  border-radius: 6px;
  padding: 26px;
}

.leader-card h3 {
  margin: 0 0 8px;
  color: #101820;
  font-size: 24px;
  font-weight: 600;
}

.leader-card .role {
  margin: 0 0 18px;
  color: var(--brand-blue);
  font-weight: 600;
}

.notice {
  border-top: 4px solid var(--brand-green);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #11355c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--brand-blue);
}

.large-text {
  font-size: 20px;
  line-height: 1.72;
  color: #1f2933;
  text-align: justify;
  text-justify: inter-word;
}

footer {
  background: #000;
  color: #d8dfdd;
  padding: 38px 5%;
  font-size: 14px;
  line-height: 1.7;
}

footer a {
  color: #d8dfdd;
}

footer a:hover {
  color: white;
}

.footer-grid {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr) minmax(0, 0.8fr) minmax(220px, 1.15fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

.footer-column {
  text-align: left;
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  margin-top: -6px;
  margin-bottom: 14px;
}

.footer-logo img {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.footer-column p {
  margin: 0 0 10px;
  line-height: 1.55;
}

.footer-heading {
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-height: 22px;
}

.footer-link-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-link-grid a {
  color: #d8dfdd;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 400;
  text-decoration: none;
}

.footer-link-stack a {
  color: #d8dfdd;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 400;
  text-decoration: none;
}

.footer-button {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8dfdd;
  font-weight: 400;
  text-decoration: none;
}

.footer-button:hover {
  background: transparent;
}

.footer-copy {
  max-width: 1240px;
  margin: 28px auto 0;
  color: #b9c3c1;
  font-weight: 400;
  text-align: left;
}

.footer-column p,
.footer-column a,
.contact-layout p,
.contact-form p,
.form-actions {
  text-align: left;
}

.footer-brand-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -14px;
}

.footer-nav-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  align-content: start;
}

.footer-nav-column .footer-heading {
  grid-column: 2;
  margin-bottom: 12px;
}

.footer-nav-column .footer-link-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 24px;
  align-items: start;
}

.footer-contact-column {
  min-width: 0;
}

.footer-contact-column .footer-heading {
  white-space: nowrap;
}

.footer-contact-column .footer-address-block {
  line-height: 1.4;
  margin-bottom: 8px;
}

.footer-brand-column .footer-contact-meta {
  margin-bottom: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: #d8dfdd;
  flex: 0 0 16px;
}

.footer-contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-contact-column .footer-contact-meta {
  margin-bottom: 2px;
}

@media (max-width: 1080px) {
  .home-hero {
    background-image:
      linear-gradient(90deg, rgba(16, 24, 32, 0.58), rgba(16, 24, 32, 0.22), rgba(16, 24, 32, 0.00)),
      url("../images/home-hero-sunny-optimized-mobile.jpg");
  }

  .about-hero {
    background-image:
      linear-gradient(90deg, rgba(16, 24, 32, 0.74), rgba(16, 24, 32, 0.46), rgba(16, 24, 32, 0.12)),
      url("../images/about-hero-nord-metallics-optimized-mobile.jpg");
  }

  .projects-hero {
    background-image: url("../images/projects-low-carbon-metallics-mobile.jpg");
  }

  .louisiana-hero {
    background-image: url("../images/louisiana-ironhearth-optimized-mobile.jpg");
  }

  .strategic-focus-hero,
  .strategy-hero {
    background-image: url("../images/strategic-focus-hero-optimized-mobile.jpg");
  }

  .technology-solutions-hero {
    background-image: url("../images/technology-solutions-hero-optimized-mobile.jpg");
  }

  .sustainability-hero {
    background-image: url("../images/sustainability-new-optimized-mobile.jpg");
  }

  .strategic-relationships-hero {
    background-image: url("../images/strategic-relationships-hero-optimized-mobile.jpg");
  }

  .investors-hero {
    background-image: url("../images/investors-hero-optimized-mobile.jpg");
  }

  .news-hero {
    background-image: url("../images/news-hero-optimized-mobile.jpg");
  }

  .contact-hero {
    background-image: url("../images/contact-us-optimized-mobile.jpg");
  }

  .products-hero {
    background-image: url("../images/products-hero-optimized-mobile.jpg");
  }

  .careers-hero {
    background-image: url("../images/careers-new-optimized-mobile.jpg");
  }

  .content {
    padding: 64px 6%;
  }

  .content p,
  .feature-panel p,
  .feature-panel li,
  .info-card p,
  .large-text {
    text-align: left;
    hyphens: manual;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-nav-column {
    display: block;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 6%;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-right {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header nav {
    display: none;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--brand-grey);
  }

  .site-header.nav-open nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  nav a {
    display: block;
    margin: 0;
    padding: 10px 0;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 8px 0 10px;
    color: #687276;
    font-size: 14px;
  }

  .made-in-america-badge img {
    width: 68px;
    height: 68px;
  }

  .hero {
    padding: 80px 6%;
  }

  .home-hero,
  .about-hero-copy,
  .hero-copy {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .bird {
    display: none;
  }

  .projects-hero,
  .louisiana-hero,
  .strategic-focus-hero,
  .technology-solutions-hero,
  .sustainability-hero,
  .strategic-relationships-hero,
  .investors-hero,
  .news-hero,
  .contact-hero,
  .products-hero,
  .strategy-hero,
  .careers-hero {
    min-height: 56vw;
    padding: 0;
    background-size: contain;
    background-position: center top;
  }

  .hero h1 {
    font-size: 2.2rem;
    max-width: none;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .contact-hero-email-link {
    left: 8%;
    top: 53%;
    width: 26%;
    height: 6%;
  }

  .careers-hero-email-link {
    left: 11%;
    top: 81%;
    width: 29%;
    height: 6.5%;
  }

  .content {
    padding: 55px 6%;
  }

  .content h2 {
    font-size: 1.85rem;
    margin-bottom: 18px;
  }

  .content p,
  .feature-panel p,
  .feature-panel li,
  .info-card p,
  .large-text {
    font-size: 1rem;
    line-height: 1.75;
    text-align: left;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .feature-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

}
