@import url("https://use.typekit.net/hjy7efh.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  /* From Arvor Insurance Brand Guidelines FINAL (page 2) */
  --arvor-dark-green: #2b4545;
  --arvor-green: #3a5f35;
  --arvor-kelly-green: #5e8e45;
  --arvor-sage: #bfd09b;
  --arvor-brown: #66504b;
  --arvor-yellow-green: #939e47;
  --arvor-slate-blue: #749093;
  --arvor-light-sage: #e0e9cf;
  --arvor-rust: #9b593a;
  --arvor-dark-gray: #414042;

  /* Brand ramp (derived from palette) */
  --brand-900: #1f3333;
  --brand-800: var(--arvor-dark-green);
  --brand-700: var(--arvor-green);
  --brand-600: var(--arvor-slate-blue);
  --brand-500: var(--arvor-sage);

  --neutral-0: #ffffff;
  --neutral-25: #fafaf9;
  --neutral-50: #f5f4f3;
  --neutral-100: #eae9e7;
  --neutral-200: #d4d3ce;
  --neutral-300: #bfbdb5;
  --neutral-500: #949184;
  --neutral-700: #656258;
  --neutral-800: #4c4a42;
  --neutral-900: #34322d;
  --neutral-1000: #1b1b18;

  --ink: var(--neutral-1000);
  --text-muted: #5f625c;
  --border: var(--neutral-200);
  --surface: var(--neutral-0);
  --surface-muted: #f2f4ee;

  --accent: var(--arvor-dark-green);
  --accent-hover: #213737;
  --accent-contrast: #ffffff;

  --success: #5ba249;
  --warning: #ffb91a;
  --error: #e83930;

  --font-heading: "the-seasons", "The Seasons", Georgia, serif;
  --font-body: "Montserrat", "Inter", system-ui, sans-serif;

  --container: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(
    180deg,
    #fbfcf9 0%,
    #f4f7f1 58%,
    #ecf1e4 100%
  );
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

main {
  overflow: hidden;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section--tight {
  padding: 64px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(224, 233, 207, 0.52), rgba(116, 144, 147, 0.07));
}

.section--dark {
  background: linear-gradient(135deg, #2b4545 0%, #223838 52%, #1f3333 100%);
  color: #f7f6f2;
  position: relative;
}

.section-hero {
  background: radial-gradient(
      circle at 9% 22%,
      rgba(116, 144, 147, 0.32),
      transparent 48%
    ),
    radial-gradient(circle at 85% 8%, rgba(191, 208, 155, 0.34), transparent 56%),
    radial-gradient(circle at 58% 95%, rgba(155, 89, 58, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(251, 252, 249, 0.99), rgba(236, 241, 228, 0.87));
  border-bottom: 1px solid rgba(43, 69, 69, 0.18);
}

.section-hero--homepage-art {
  position: relative;
  overflow: hidden;
  background: #f7f6f2;
}

.section-hero--homepage-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/homepage-hero.jpeg") center center / cover no-repeat;
  filter: saturate(0.88) contrast(0.95);
  z-index: 0;
}

.section-hero--homepage-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 246, 242, 0.72);
  z-index: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  color: var(--arvor-brown);
  font-weight: 600;
  margin-bottom: 8px;
}

.headline-xl {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  margin: 16px 0 20px;
  font-weight: 700;
  color: var(--arvor-dark-green);
}

.headline-lg {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
}

.headline-md {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0 0 12px;
  font-weight: 700;
}

.lead {
  font-size: clamp(16px, 1.6vw, 21px);
  color: var(--text-muted);
}

.muted {
  color: var(--text-muted);
}

.section--dark .lead,
.section--dark .eyebrow,
.section--dark .muted {
  color: rgba(247, 246, 242, 0.8);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.button--primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.button--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.button--ghost {
  border-color: var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button--ghost:hover {
  border-color: var(--arvor-dark-green);
  color: var(--arvor-dark-green);
  background: rgba(224, 233, 207, 0.55);
}

.section--dark .button--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #f7f6f2;
  background: rgba(255, 255, 255, 0.06);
}

.section--dark .button--ghost:hover {
  border-color: rgba(224, 233, 207, 0.88);
  color: #ffffff;
  background: rgba(116, 144, 147, 0.24);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.divider {
  border-top: 1px solid var(--border);
  margin: 42px 0;
}

.divider:has(+ .split > .feature-line) {
  border-top: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43, 69, 69, 0.36);
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section--dark .pill {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px 7px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
}

.hero {
  display: grid;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: end;
}

.section-hero--homepage-art .hero-grid {
  position: relative;
}

.section-hero--homepage-art .hero-grid::before {
  display: none;
  content: "";
  position: absolute;
  inset: -88px -96px -92px -110px;
  background:
    radial-gradient(ellipse at 34% 42%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.48) 26%, rgba(255, 255, 255, 0.26) 48%, rgba(255, 255, 255, 0.12) 66%, rgba(255, 255, 255, 0.04) 80%, transparent 98%),
    linear-gradient(90deg, rgba(247, 246, 242, 0.54) 0%, rgba(247, 246, 242, 0.46) 30%, rgba(247, 246, 242, 0.28) 54%, rgba(247, 246, 242, 0.12) 76%, rgba(247, 246, 242, 0.04) 90%, transparent 100%),
    linear-gradient(180deg, rgba(247, 246, 242, 0.12) 0%, rgba(247, 246, 242, 0.05) 24%, rgba(247, 246, 242, 0.05) 76%, rgba(247, 246, 242, 0.12) 100%);
  border-radius: 160px;
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 760px;
}

.section-hero--homepage-art .hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: 30px 34px 34px 10px;
}

.section-hero--homepage-art .hero-content::before {
  content: "";
  position: absolute;
  inset: -92px -96px -98px -124px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.58) 24%, rgba(255, 255, 255, 0.34) 46%, rgba(255, 255, 255, 0.16) 62%, rgba(255, 255, 255, 0.06) 76%, transparent 96%),
    linear-gradient(90deg, rgba(247, 246, 242, 0.68) 0%, rgba(247, 246, 242, 0.56) 28%, rgba(247, 246, 242, 0.36) 52%, rgba(247, 246, 242, 0.18) 72%, rgba(247, 246, 242, 0.06) 88%, transparent 100%),
    linear-gradient(180deg, rgba(247, 246, 242, 0.16) 0%, rgba(247, 246, 242, 0.06) 24%, rgba(247, 246, 242, 0.06) 76%, rgba(247, 246, 242, 0.14) 100%);
  border-radius: 140px;
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 981px) {
  .section-hero--homepage-art .hero-grid::before {
    display: block;
  }

  .section-hero--homepage-art .hero-content::before {
    display: none;
  }
}

.hero-content .lead {
  max-width: 62ch;
}

.hero-stage {
  position: relative;
  padding: 34px 32px 30px;
  border: 1px solid rgba(43, 69, 69, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(224, 233, 207, 0.42));
  border-radius: 26px;
  overflow: hidden;
}

.hero-stage--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  justify-self: center;
  align-self: center;
}

.hero-stage--homepage-logo {
  justify-self: end;
  width: min(100%, 480px);
  min-height: 520px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(116, 144, 147, 0.19), transparent 52%);
  pointer-events: none;
}

.hero-stage__mark {
  position: absolute;
  top: 24px;
  right: 22px;
  width: min(240px, 52%);
  opacity: 0.24;
  pointer-events: none;
}

.hero-stage__logo {
  width: min(360px, 88%);
  position: relative;
  z-index: 1;
}

.hero-stage__logo--animated {
  width: min(500px, 98%);
  filter: drop-shadow(0 18px 36px rgba(43, 69, 69, 0.14));
}

.hero-stage__logo--vertical {
  width: clamp(300px, 38vw, 460px);
}

.hero-stage--logo::before,
.hero-stage--logo::after {
  content: none;
}

.hero-callout {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(43, 69, 69, 0.22);
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.cta-band {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid rgba(43, 69, 69, 0.28);
  border-bottom: 1px solid rgba(43, 69, 69, 0.28);
  grid-template-columns: minmax(0, 1fr) auto;
}

.section--dark .cta-band {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer {
  background: linear-gradient(160deg, #2b4545 0%, #243d3d 52%, #3b322f 100%);
  color: #f6f6f2;
  border-top: 1px solid rgba(191, 208, 155, 0.38);
  padding: 72px 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  right: min(10vw, 120px);
  top: 24px;
  width: min(230px, 22vw);
  aspect-ratio: 1;
  background: url("brand/mark-two-tone-reverse.svg") no-repeat center / contain;
  opacity: 0.15;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand__logo {
  width: min(240px, 82%);
  height: auto;
}

.footer .eyebrow,
.footer .muted {
  color: rgba(246, 246, 242, 0.76);
}

.footer-list li::before {
  color: currentColor;
}

.footer a:hover {
  color: var(--arvor-light-sage);
}

.footer .divider {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer .tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 8px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #2b4545;
  border-bottom: 1px solid rgba(191, 208, 155, 0.35);
}

.site-header__inner {
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}

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

.nav-links {
  display: flex;
  flex: 1;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f7f6f2;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--arvor-light-sage);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  margin-left: auto;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-details {
  position: relative;
}

.nav-details summary {
  list-style: none;
  cursor: pointer;
}

.nav-details summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown {
  position: absolute;
  top: 36px;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(43, 69, 69, 0.2);
  border-radius: 14px;
  padding: 16px;
  min-width: 245px;
  box-shadow: var(--shadow-md);
  z-index: 20;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown__link {
  display: block;
  padding: 6px 0;
  font-weight: 500;
  color: rgba(27, 43, 43, 0.88);
}

.nav-dropdown__link:hover {
  color: var(--arvor-dark-green);
}

.industry-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(43, 69, 69, 0.2);
}

.industry-item {
  padding: 26px 0;
  border-bottom: 1px solid rgba(43, 69, 69, 0.16);
  transition: background 0.24s ease;
}

.industry-list a:hover .industry-item {
  background: linear-gradient(90deg, rgba(191, 208, 155, 0.45), rgba(116, 144, 147, 0.08));
}

.industry-item__content {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 0;
  transition: padding 0.24s ease;
}

.industry-list a:hover .industry-item__content,
.industry-list a:focus-visible .industry-item__content {
  padding-left: 7px;
  padding-right: 7px;
}

.industry-list a:focus-visible .industry-item {
  background: linear-gradient(90deg, rgba(191, 208, 155, 0.45), rgba(116, 144, 147, 0.08));
}

.industry-item__header {
  flex: 0 0 auto;
}

.industry-item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
}

.industry-item p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
  text-align: right;
  flex: 1 1 auto;
}

.industry-item__arrow {
  display: inline-block;
  margin-left: 8px;
  color: rgba(43, 69, 69, 0.5);
  font-size: 18px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.24s ease, color 0.24s ease;
}

.industry-list a:hover .industry-item__arrow {
  color: rgba(43, 69, 69, 0.82);
  transform: translateX(4px);
}

.stacked {
  display: grid;
  gap: 20px;
}

.feature-line {
  border-top: 1px solid rgba(43, 69, 69, 0.2);
  padding-top: 18px;
}

.split > .feature-line {
  padding-top: 32px;
}

.feature-line .headline-md,
.feature-line .headline-lg {
  margin-bottom: 8px;
}

.leadership-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.leadership-card__headshot {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(43, 69, 69, 0.16);
  object-fit: cover;
  object-position: center top;
  display: block;
  background: rgba(224, 233, 207, 0.34);
}

.leadership-card__headshot--gates {
  object-position: center top;
}

.leadership-card__headshot--placeholder {
  display: grid;
  place-items: center;
  color: rgba(43, 69, 69, 0.68);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

.leadership-card__content .eyebrow {
  margin-bottom: 14px;
}

.section--dark .feature-line {
  border-color: rgba(255, 255, 255, 0.15);
}

.split {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  align-items: start;
}

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

.hero--with-mark {
  grid-template-columns: minmax(0, 1fr) minmax(170px, 250px);
}

.section-hero--industry {
  padding: clamp(58px, 7.2vw, 90px) 0;
}

.section-hero--industry .hero {
  min-height: 496px;
  align-items: center;
}

.hero-aside-mark {
  width: min(230px, 100%);
  justify-self: end;
  opacity: 0.35;
}

.hero--with-background-image {
  position: relative;
  min-height: 496px;
  align-items: center;
}

.section-hero--oil-gas {
  position: relative;
  overflow: hidden;
}

.section-hero--oil-gas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 246, 242, 1) 0%,
    rgba(247, 246, 242, 0.995) 24%,
    rgba(247, 246, 242, 0.972) 42%,
    rgba(247, 246, 242, 0.86) 56%,
    rgba(247, 246, 242, 0.5) 70%,
    rgba(247, 246, 242, 0.14) 86%,
    rgba(247, 246, 242, 0.02) 100%
  );
  z-index: 0;
}

.section-hero--oil-gas::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/oil-and-gas-hero.jpeg");
  background-position: left top, center center;
  background-size: cover, cover;
  filter: saturate(0.92) contrast(0.96);
}

.section-hero--manufacturing,
.section-hero--alternative-energy,
.section-hero--real-estate,
.section-hero--construction,
.section-hero--technology,
.section-hero--transportation,
.section-hero--funds-financial-services {
  position: relative;
  overflow: hidden;
}

.section-hero--manufacturing::before,
.section-hero--alternative-energy::before,
.section-hero--real-estate::before,
.section-hero--construction::before,
.section-hero--technology::before,
.section-hero--transportation::before,
.section-hero--funds-financial-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 246, 242, 1) 0%,
    rgba(247, 246, 242, 0.995) 24%,
    rgba(247, 246, 242, 0.972) 42%,
    rgba(247, 246, 242, 0.86) 56%,
    rgba(247, 246, 242, 0.5) 70%,
    rgba(247, 246, 242, 0.14) 86%,
    rgba(247, 246, 242, 0.02) 100%
  );
  z-index: 0;
}

.section-hero--manufacturing::after,
.section-hero--alternative-energy::after,
.section-hero--real-estate::after,
.section-hero--construction::after,
.section-hero--technology::after,
.section-hero--transportation::after,
.section-hero--funds-financial-services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover, cover;
  background-repeat: no-repeat;
  background-position: left top, center center;
  filter: saturate(0.92) contrast(0.96);
}

.section-hero--manufacturing::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/manufacturing-hero.jpeg");
}

.section-hero--alternative-energy::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/alternative-energy-hero.jpeg");
}

.section-hero--real-estate::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/real-estate-hero.jpeg");
}

.section-hero--construction::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/construction-hero.jpeg");
}

.section-hero--technology::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/technology-hero.jpeg");
}

.section-hero--transportation::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/transportation-hero.jpeg");
}

.section-hero--funds-financial-services::after {
  background-image:
    linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.992) 22%,
      rgba(247, 246, 242, 0.968) 40%,
      rgba(247, 246, 242, 0.84) 54%,
      rgba(247, 246, 242, 0.44) 68%,
      rgba(247, 246, 242, 0.12) 84%,
      rgba(247, 246, 242, 0.02) 100%
    ),
    url("images/industries/funds-financial-services-hero.jpeg");
}

.hero--with-background-image .hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 70px 0;
}

.hero--with-background-image .hero-content .lead {
  max-width: 32ch;
}

.producer-section__mark {
  position: absolute;
  right: -30px;
  bottom: -66px;
  width: min(270px, 28vw);
  opacity: 0.2;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .nav-link {
    font-size: 12px;
  }

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

  .hero-stage {
    max-width: 680px;
  }

  .section-hero--homepage-art::before {
    background:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 0.99) 0%,
        rgba(247, 246, 242, 0.98) 24%,
        rgba(247, 246, 242, 0.94) 42%,
        rgba(247, 246, 242, 0.82) 58%,
        rgba(247, 246, 242, 0.56) 74%,
        rgba(247, 246, 242, 0.3) 90%,
        rgba(247, 246, 242, 0.18) 100%
      ),
      linear-gradient(180deg, rgba(247, 246, 242, 0.38), rgba(247, 246, 242, 0.38)),
      url("images/homepage-hero.jpeg");
    background-position: left top, center center, center center;
    background-size: cover, cover, cover;
    background-repeat: no-repeat;
  }

  .footer::before {
    opacity: 0.1;
  }
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px 15px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero--with-mark {
    grid-template-columns: 1fr;
  }

  .hero-aside-mark {
    justify-self: start;
    width: 160px;
  }

  .hero-stage--homepage-logo {
    justify-self: start;
    min-height: 300px;
    width: min(100%, 360px);
  }

  .section-hero--homepage-art .hero-content {
    max-width: 720px;
    padding: 24px 24px 26px 0;
  }

  .section-hero--homepage-art .hero-content::before {
    inset: -72px -70px -76px -86px;
    border-radius: 110px;
    filter: blur(24px);
  }

  .hero--with-background-image {
    min-height: auto;
  }

  .section-hero--industry .hero {
    min-height: auto;
  }

  .hero--with-background-image .hero-content {
    padding: 61px 0 58px;
  }

  .section-hero--oil-gas::before {
    background: linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.998) 30%,
      rgba(247, 246, 242, 0.988) 48%,
      rgba(247, 246, 242, 0.93) 62%,
      rgba(247, 246, 242, 0.72) 78%,
      rgba(247, 246, 242, 0.3) 92%,
      rgba(247, 246, 242, 0.05) 100%
    );
  }

  .section-hero--oil-gas::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/oil-and-gas-hero.jpeg");
  }

  .section-hero--manufacturing::before,
  .section-hero--alternative-energy::before,
  .section-hero--real-estate::before,
  .section-hero--construction::before,
  .section-hero--technology::before,
  .section-hero--transportation::before,
  .section-hero--funds-financial-services::before {
    background: linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 0.998) 30%,
      rgba(247, 246, 242, 0.988) 48%,
      rgba(247, 246, 242, 0.93) 62%,
      rgba(247, 246, 242, 0.72) 78%,
      rgba(247, 246, 242, 0.3) 92%,
      rgba(247, 246, 242, 0.05) 100%
    );
  }

  .section-hero--manufacturing::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/manufacturing-hero.jpeg");
  }

  .section-hero--alternative-energy::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/alternative-energy-hero.jpeg");
  }

  .section-hero--real-estate::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/real-estate-hero.jpeg");
  }

  .section-hero--construction::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/construction-hero.jpeg");
  }

  .section-hero--technology::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/technology-hero.jpeg");
  }

  .section-hero--transportation::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/transportation-hero.jpeg");
  }

  .section-hero--funds-financial-services::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 0.998) 28%,
        rgba(247, 246, 242, 0.99) 46%,
        rgba(247, 246, 242, 0.95) 60%,
        rgba(247, 246, 242, 0.78) 76%,
        rgba(247, 246, 242, 0.36) 90%,
        rgba(247, 246, 242, 0.05) 100%
      ),
      url("images/industries/funds-financial-services-hero.jpeg");
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .section-hero--industry {
    padding: 58px 0;
  }

  .site-header {
    position: static;
  }

  .logo img {
    height: 41px;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-cta .button {
    flex: 1;
  }

  .headline-xl {
    line-height: 1.03;
  }

  .industry-item__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .industry-item p {
    text-align: left;
    max-width: none;
  }

  .hero--with-background-image .hero-content {
    padding: 46px 0 45px;
  }

  .section-hero--homepage-art .hero-content {
    padding: 16px 12px 18px 0;
  }

  .section-hero--homepage-art .hero-content::before {
    inset: -46px -42px -50px -48px;
    background:
      radial-gradient(ellipse at center, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.64) 28%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.18) 66%, rgba(255, 255, 255, 0.08) 82%, transparent 98%),
      linear-gradient(90deg, rgba(247, 246, 242, 0.78) 0%, rgba(247, 246, 242, 0.66) 34%, rgba(247, 246, 242, 0.42) 58%, rgba(247, 246, 242, 0.2) 78%, rgba(247, 246, 242, 0.08) 92%, transparent 100%),
      linear-gradient(180deg, rgba(247, 246, 242, 0.18) 0%, rgba(247, 246, 242, 0.08) 22%, rgba(247, 246, 242, 0.08) 78%, rgba(247, 246, 242, 0.16) 100%);
    border-radius: 84px;
    filter: blur(22px);
  }

  .section-hero--homepage-art::before {
    background-position: right center;
  }

  .section-hero--homepage-art::after {
    background: rgba(247, 246, 242, 0.82);
  }

  .hero-stage--homepage-logo {
    min-height: 220px;
    width: min(100%, 300px);
  }

  .section-hero--oil-gas::before {
    background: linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 1) 38%,
      rgba(247, 246, 242, 0.998) 58%,
      rgba(247, 246, 242, 0.988) 72%,
      rgba(247, 246, 242, 0.95) 84%,
      rgba(247, 246, 242, 0.82) 92%,
      rgba(247, 246, 242, 0.58) 100%
    );
  }

  .section-hero--oil-gas::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/oil-and-gas-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--manufacturing::before,
  .section-hero--alternative-energy::before,
  .section-hero--real-estate::before,
  .section-hero--construction::before,
  .section-hero--technology::before,
  .section-hero--transportation::before,
  .section-hero--funds-financial-services::before {
    background: linear-gradient(
      90deg,
      rgba(247, 246, 242, 1) 0%,
      rgba(247, 246, 242, 1) 38%,
      rgba(247, 246, 242, 0.998) 58%,
      rgba(247, 246, 242, 0.988) 72%,
      rgba(247, 246, 242, 0.95) 84%,
      rgba(247, 246, 242, 0.82) 92%,
      rgba(247, 246, 242, 0.58) 100%
    );
  }

  .section-hero--manufacturing::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/manufacturing-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--alternative-energy::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/alternative-energy-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--real-estate::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/real-estate-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--construction::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/construction-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--technology::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/technology-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--transportation::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/transportation-hero.jpeg");
    background-position: left top, right center;
  }

  .section-hero--funds-financial-services::after {
    background-image:
      linear-gradient(
        90deg,
        rgba(247, 246, 242, 1) 0%,
        rgba(247, 246, 242, 1) 36%,
        rgba(247, 246, 242, 0.998) 56%,
        rgba(247, 246, 242, 0.992) 70%,
        rgba(247, 246, 242, 0.97) 82%,
        rgba(247, 246, 242, 0.9) 92%,
        rgba(247, 246, 242, 0.72) 100%
      ),
      url("images/industries/funds-financial-services-hero.jpeg");
    background-position: left top, right center;
  }

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

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

  .leadership-card__headshot {
    max-width: 180px;
  }

  .footer {
    padding: 64px 0;
  }

  .footer::before {
    width: 160px;
    right: 24px;
    top: 28px;
  }

  .producer-section__mark {
    width: 180px;
    right: -24px;
    bottom: -38px;
  }
}
