/* =========================================================
   LEVANT BUSINESS & INVESTMENT GROUP
   MAIN STYLESHEET
========================================================= */

/* =========================================================
   ROOT / BRAND COLORS
========================================================= */

:root {
  --navy: #00233b;
  --navy-dark: #001a2d;

  --gold: #a77b3f;
  --gold-dark: #8f6733;
  --gold-light: #bd9254;

  --white: #ffffff;
  --off-white: #f8f7f4;

  /* Mobile menu - light shade of logo navy */
  --mobile-menu-bg: #e4ebef;

  --text: #17212a;
  --text-light: #66717a;

  --border: rgba(0, 35, 59, 0.22);

  --header-height: 120px;

  --font-main: "DM Sans", sans-serif;
  --font-display: "Playfair Display", serif;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);

  background: var(--white);
  color: var(--text);

  line-height: 1.6;

  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  width: 100%;
  height: var(--header-height);

  background: rgba(255, 255, 255, 0.98);

  border-bottom: 2px solid rgba(0, 35, 59, 0.22);

  position: relative;

  z-index: 1000;

  transition:
    height 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
  width: min(94%, 1500px);
  height: 100%;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================================
   LOGO
========================================================= */

.header-logo {
  display: flex;
  align-items: center;

  position: relative;

  z-index: 1002;
}

.header-logo img {
  display: block;

  width: auto;
  height: 94px;

  object-fit: contain;

  transition:
    transform 0.3s ease,
    height 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.025);
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.main-nav {
  display: flex;
  align-items: center;

  gap: clamp(30px, 3vw, 55px);
}

/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-link {
  position: relative;

  padding: 10px 0;

  font-size: 16px;
  font-weight: 500;

  letter-spacing: -0.1px;

  color: var(--navy);

  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

.nav-link:not(.contact-link)::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 2px;

  width: 0;
  height: 2px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.nav-link:not(.contact-link):hover::after {
  width: 100%;
}

.nav-link:not(.contact-link).active::after {
  width: 100%;
}

/* =========================================================
   CONTACT BUTTON - DESKTOP
========================================================= */

.contact-link {
  padding: 13px 26px;

  background: var(--gold);

  border: 1px solid var(--gold);

  color: var(--white);

  font-weight: 500;

  box-shadow: 0 5px 16px rgba(167, 123, 63, 0.15);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-link:hover {
  background: var(--gold-dark);

  border-color: var(--gold-dark);

  color: var(--white);

  transform: translateY(-2px);

  box-shadow: 0 8px 22px rgba(167, 123, 63, 0.25);
}

/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.menu-toggle {
  width: 44px;
  height: 44px;

  display: none;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 6px;

  border: 0;
  outline: 0;

  background: transparent;

  cursor: pointer;

  position: relative;

  z-index: 1002;
}

.menu-toggle span {
  display: block;

  width: 28px;
  height: 2px;

  background: var(--navy);

  transform-origin: center;

  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    background 0.3s ease;
}

/* =========================================================
   HAMBURGER -> X
========================================================= */

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   HEADER AFTER SCROLL
========================================================= */

.site-header.scrolled {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 92px;

  background: rgba(255, 255, 255, 0.97);

  border-bottom: 2px solid rgba(0, 35, 59, 0.18);

  box-shadow: 0 5px 30px rgba(0, 35, 59, 0.1);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.scrolled .header-logo img {
  height: 74px;
}

/* =========================================================
   ABOUT ANCHOR OFFSET
========================================================= */

#about {
  scroll-margin-top: 110px;
}

/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {
  :root {
    --header-height: 92px;
  }

  /* =====================================================
       HEADER
    ===================================================== */

  .site-header {
    background: var(--white);

    border-bottom: 2px solid rgba(0, 35, 59, 0.2);
  }

  .header-container {
    width: 92%;
  }

  /* =====================================================
       LOGO
    ===================================================== */

  .header-logo img {
    height: 72px;
  }

  /* =====================================================
       HAMBURGER
    ===================================================== */

  .menu-toggle {
    display: flex;
  }

  .menu-toggle span {
    background: var(--navy);
  }

  /* =====================================================
       MOBILE MENU
    ===================================================== */

  .main-nav {
    position: fixed;

    top: var(--header-height);
    left: 0;

    width: 100%;

    height: calc(100dvh - var(--header-height));

    padding: 45px 7%;

    /*
           Light version of the Levant logo navy.
           Darker than the previous version.
        */

    background: var(--mobile-menu-bg);

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 6px;

    overflow-y: auto;

    border-top: 1px solid rgba(0, 35, 59, 0.12);

    box-shadow: 0 18px 40px rgba(0, 35, 59, 0.1);

    /*
           Hidden state
        */

    opacity: 0;
    visibility: hidden;

    transform: translateY(-22px);

    pointer-events: none;

    transition:
      opacity 0.3s ease,
      transform 0.4s ease,
      visibility 0.3s ease;

    z-index: 999;
  }

  /* =====================================================
       OPEN MOBILE MENU
    ===================================================== */

  .main-nav.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
  }

  /* =====================================================
       MOBILE NAVIGATION LINKS
    ===================================================== */

  .nav-link {
    width: min(100%, 430px);

    padding: 17px 5px;

    border-bottom: 1px solid rgba(0, 35, 59, 0.16);

    font-family: var(--font-display);

    font-size: 28px;
    font-weight: 500;

    letter-spacing: 0;

    text-align: center;

    color: var(--navy);

    transition:
      color 0.3s ease,
      transform 0.3s ease;
  }

  .nav-link:hover {
    color: var(--gold);
  }

  .nav-link.active {
    color: var(--gold);
  }

  /* Remove desktop underline */

  .nav-link:not(.contact-link)::after {
    display: none;
  }

  /* =====================================================
       MOBILE CONTACT BUTTON
    ===================================================== */

  .contact-link {
    width: auto;

    margin-top: 30px;

    padding: 17px 38px;

    background: var(--gold);

    border: 1px solid var(--gold);

    font-family: var(--font-main);

    font-size: 17px;
    font-weight: 600;

    text-align: center;

    color: var(--white);

    box-shadow: 0 7px 20px rgba(167, 123, 63, 0.22);

    transition:
      background 0.3s ease,
      border-color 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .contact-link:hover {
    background: var(--gold-dark);

    border-color: var(--gold-dark);

    color: var(--white);

    transform: translateY(-2px);

    box-shadow: 0 9px 25px rgba(167, 123, 63, 0.3);
  }

  /* =====================================================
       HAMBURGER X
    ===================================================== */

  .menu-toggle.active span {
    background: var(--navy);
  }

  /* =====================================================
       SCROLLED MOBILE HEADER
    ===================================================== */

  .site-header.scrolled {
    height: 80px;

    background: var(--white);
  }

  .site-header.scrolled .header-logo img {
    height: 62px;
  }

  /*
       Keep menu underneath smaller header
    */

  .site-header.scrolled .main-nav {
    top: 80px;

    height: calc(100dvh - 80px);
  }

  #about {
    scroll-margin-top: 90px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {
  :root {
    --header-height: 84px;
  }

  /* =====================================================
       HEADER
    ===================================================== */

  .header-container {
    width: 92%;
  }

  /* =====================================================
       LOGO
    ===================================================== */

  .header-logo img {
    height: 66px;
  }

  /* =====================================================
       HAMBURGER
    ===================================================== */

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    width: 26px;
  }

  /* =====================================================
       MOBILE MENU
    ===================================================== */

  .main-nav {
    top: var(--header-height);

    width: 100%;

    height: calc(100dvh - var(--header-height));

    padding: 35px 25px;

    background: var(--mobile-menu-bg);

    align-items: center;
    justify-content: center;

    gap: 4px;
  }

  /* =====================================================
       MOBILE NAVIGATION LINKS
    ===================================================== */

  .nav-link {
    width: 100%;
    max-width: 360px;

    padding: 15px 5px;

    font-size: 25px;

    text-align: center;
  }

  /* =====================================================
       MOBILE CONTACT BUTTON
    ===================================================== */

  .contact-link {
    width: auto;

    margin-top: 27px;

    padding: 16px 34px;

    font-family: var(--font-main);

    font-size: 16px;
    font-weight: 600;
  }

  /* =====================================================
       SCROLLED HEADER
    ===================================================== */

  .site-header.scrolled {
    height: 74px;
  }

  .site-header.scrolled .header-logo img {
    height: 57px;
  }

  .site-header.scrolled .main-nav {
    top: 74px;

    height: calc(100dvh - 74px);
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  /* =====================================================
       LOGO
    ===================================================== */

  .header-logo img {
    height: 60px;
  }

  /* =====================================================
       MOBILE MENU
    ===================================================== */

  .main-nav {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* =====================================================
       NAVIGATION LINKS
    ===================================================== */

  .nav-link {
    max-width: 320px;

    padding: 13px 5px;

    font-size: 23px;
  }

  /* =====================================================
       CONTACT BUTTON
    ===================================================== */

  .contact-link {
    margin-top: 24px;

    padding: 15px 30px;

    font-size: 15px;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  width: 100%;

  background: #f7f7f5;

  border-top: 2px solid rgba(0, 35, 59, 0.18);

  padding: 55px 0;
}

/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {
  width: min(94%, 1500px);

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  gap: 50px;
}

/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-brand {
  display: flex;

  align-items: center;
  justify-content: flex-start;
}

.footer-logo {
  display: inline-flex;

  align-items: center;
}

.footer-logo img {
  display: block;

  width: auto;
  height: 94px;

  object-fit: contain;

  /* No background / no box */
  background: transparent;

  padding: 0;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.025);
}

/* =========================================================
   FOOTER ADDRESS
========================================================= */

.footer-address {
  text-align: center;
}

.footer-address h4 {
  margin-bottom: 10px;

  font-family: var(--font-main);

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  color: var(--gold);
}

.footer-address p {
  margin: 0;

  font-size: 15px;
  font-weight: 400;

  line-height: 1.8;

  color: var(--navy);
}

/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  text-align: right;
}

.footer-contact h4 {
  margin-bottom: 10px;

  font-family: var(--font-main);

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  color: var(--gold);
}

.footer-contact a {
  display: inline-block;

  margin-bottom: 6px;

  font-size: 15px;
  font-weight: 400;

  color: var(--navy);

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .site-footer {
    padding: 48px 0;
  }

  .footer-container {
    width: 88%;

    grid-template-columns: 1fr;

    gap: 34px;
  }

  /* LOGO */

  .footer-brand {
    justify-content: center;
  }

  .footer-logo img {
    height: 82px;
  }

  /* ADDRESS */

  .footer-address {
    text-align: center;
  }

  /* CONTACT */

  .footer-contact {
    align-items: center;

    text-align: center;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {
  .site-footer {
    padding: 40px 0;
  }

  .footer-container {
    width: 88%;

    gap: 28px;
  }

  /* LOGO */

  .footer-logo img {
    height: 74px;
  }

  /* TITLES */

  .footer-address h4,
  .footer-contact h4 {
    margin-bottom: 8px;

    font-size: 12px;

    letter-spacing: 1.2px;
  }

  /* TEXT */

  .footer-address p,
  .footer-contact a {
    font-size: 14px;

    line-height: 1.7;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .site-footer {
    padding: 36px 0;
  }

  .footer-container {
    width: 90%;

    gap: 25px;
  }

  .footer-logo img {
    height: 68px;
  }

  .footer-address p,
  .footer-contact a {
    font-size: 13.5px;
  }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  position: relative;

  width: 100%;
  height: 560px;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background: transparent;
}

/* =========================================================
   HERO VIDEO
========================================================= */

.hero-video {
  position: absolute;

  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  margin: 0;
  padding: 0;

  object-fit: cover;
  object-position: center center;

  border: 0;

  z-index: 1;
}

/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {
  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;

  /*
       Levant navy overlay:
       darker behind text,
       lighter toward the right.
    */

  background: linear-gradient(
    90deg,
    rgba(0, 26, 45, 0.72) 0%,
    rgba(0, 26, 45, 0.55) 38%,
    rgba(0, 26, 45, 0.3) 70%,
    rgba(0, 26, 45, 0.14) 100%
  );

  pointer-events: none;

  z-index: 2;
}

/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {
  position: relative;

  z-index: 3;

  width: min(83%, 1500px);
  height: 100%;

  margin: 0 auto;
  padding: 0;

  display: flex;
  align-items: center;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
  width: 100%;
  max-width: 780px;

  margin: 0;
  padding: 0;

  color: var(--white);
}

/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
  margin: 0 0 20px 0;
  padding: 0;

  font-family: var(--font-display);

  font-size: clamp(50px, 4.2vw, 70px);
  font-weight: 500;

  line-height: 1.06;

  letter-spacing: -1.5px;

  color: var(--white);

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {
  width: 100%;
  max-width: 700px;

  margin: 0;
  padding: 0;

  font-family: var(--font-main);

  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 400;

  line-height: 1.45;

  letter-spacing: -0.2px;

  color: rgba(255, 255, 255, 0.95);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .hero {
    width: 100%;
    height: 540px;

    margin: 0;
    padding: 0;
  }

  .hero-video {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 26, 45, 0.76) 0%,
      rgba(0, 26, 45, 0.58) 55%,
      rgba(0, 26, 45, 0.28) 100%
    );
  }

  .hero-container {
    width: 86%;
    height: 100%;
  }

  .hero-content {
    max-width: 650px;
  }

  .hero-content h1 {
    margin-bottom: 18px;

    font-size: clamp(44px, 7vw, 58px);

    line-height: 1.08;

    letter-spacing: -1px;
  }

  .hero-content p {
    max-width: 590px;

    font-size: 20px;

    line-height: 1.5;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {
  .hero {
    width: 100%;

    height: 540px;
    min-height: 0;
    max-height: none;

    margin: 0;
    padding: 0;
  }

  .hero-video {
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay {
    width: 100%;
    height: 100%;

    background: linear-gradient(
      90deg,
      rgba(0, 26, 45, 0.78) 0%,
      rgba(0, 26, 45, 0.62) 55%,
      rgba(0, 26, 45, 0.4) 100%
    );
  }

  .hero-container {
    width: 86%;
    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    margin: 0 0 18px 0;

    font-size: 42px;

    line-height: 1.08;

    letter-spacing: -0.8px;
  }

  .hero-content p {
    width: 100%;
    max-width: 100%;

    margin: 0;

    font-size: 18px;

    line-height: 1.5;

    letter-spacing: -0.1px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .hero {
    height: 500px;
  }

  .hero-container {
    width: 88%;
  }

  .hero-content h1 {
    font-size: 36px;

    line-height: 1.1;
  }

  .hero-content p {
    font-size: 16px;

    line-height: 1.5;
  }
}

/* =========================================================
   PRESENCE / ABOUT INTRO SECTION
========================================================= */

.presence-section {
  position: relative;

  width: 100%;

  padding: 105px 0 110px;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   SUBTLE BACKGROUND EFFECT
========================================================= */

.presence-section::before {
  content: "";

  position: absolute;

  right: -180px;
  bottom: -260px;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(167, 123, 63, 0.08) 0%,
    rgba(167, 123, 63, 0.035) 45%,
    transparent 72%
  );

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.presence-container {
  position: relative;

  z-index: 2;

  width: min(73%, 1400px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 1.75fr)
    1px
    minmax(260px, 0.75fr);

  align-items: center;

  column-gap: 55px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.presence-content {
  width: 100%;
  max-width: 820px;

  opacity: 0;

  transform: translateY(35px);

  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

/* =========================================================
   SMALL LABEL
========================================================= */

.presence-label {
  display: inline-block;

  margin-bottom: 18px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--gold);
}

/* =========================================================
   MAIN HEADING
========================================================= */

.presence-content h2 {
  margin: 0 0 22px;

  font-family: var(--font-display);

  font-size: clamp(43px, 3.5vw, 61px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -1.2px;

  color: var(--navy);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.presence-content p {
  width: 100%;
  max-width: 760px;

  margin: 0;

  font-family: var(--font-main);

  font-size: 18px;
  font-weight: 400;

  line-height: 1.65;

  color: #34434d;
}

/* =========================================================
   VERTICAL GOLD DIVIDER
========================================================= */

.presence-divider {
  width: 1px;
  height: 230px;

  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold) 18%,
    var(--gold) 82%,
    transparent 100%
  );

  transform: scaleY(0);

  transform-origin: center;

  transition: transform 1s ease 0.2s;
}

/* =========================================================
   RIGHT HIGHLIGHT
========================================================= */

.presence-highlight {
  width: 100%;

  opacity: 0;

  transform: translateX(35px);

  transition:
    opacity 0.9s ease 0.35s,
    transform 0.9s ease 0.35s;
}

/* =========================================================
   NUMBER CONTAINER
========================================================= */

.highlight-stat {
  display: flex;

  align-items: flex-end;

  margin-bottom: 14px;
}

/* =========================================================
   ANIMATED NUMBER
========================================================= */

.highlight-number {
  display: inline-block;

  font-family: var(--font-display);

  font-size: clamp(60px, 5vw, 82px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: -2px;

  color: var(--gold);

  font-variant-numeric: tabular-nums;
}

/* =========================================================
   RIGHT DESCRIPTION
========================================================= */

.presence-highlight p {
  margin: 0;

  font-family: var(--font-main);

  font-size: 20px;
  font-weight: 500;

  line-height: 1.45;

  color: var(--navy);
}

/* =========================================================
   REVEAL ACTIVE
========================================================= */

.presence-section.reveal-active .presence-content {
  opacity: 1;

  transform: translateY(0);
}

.presence-section.reveal-active .presence-divider {
  transform: scaleY(1);
}

.presence-section.reveal-active .presence-highlight {
  opacity: 1;

  transform: translateX(0);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .presence-section {
    padding: 80px 0 85px;
  }

  .presence-container {
    width: 86%;

    grid-template-columns:
      minmax(0, 1.5fr)
      1px
      minmax(210px, 0.75fr);

    column-gap: 35px;
  }

  .presence-content h2 {
    font-size: 44px;
  }

  .presence-content p {
    font-size: 17px;
  }

  .presence-divider {
    height: 210px;
  }

  .highlight-number {
    font-size: 58px;
  }

  .presence-highlight p {
    font-size: 18px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .presence-section {
    padding: 70px 0 75px;
  }

  .presence-container {
    width: 86%;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
  }

  /* LEFT SIDE */

  .presence-content {
    width: 100%;
    max-width: 100%;
  }

  .presence-label {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: 1.6px;
  }

  .presence-content h2 {
    margin-bottom: 20px;

    font-size: 39px;

    line-height: 1.1;
  }

  .presence-content p {
    font-size: 16px;

    line-height: 1.65;
  }

  /* DIVIDER BECOMES HORIZONTAL */

  .presence-divider {
    width: 100%;
    height: 1px;

    margin: 38px 0;

    background: linear-gradient(
      to right,
      var(--gold) 0%,
      rgba(167, 123, 63, 0.35) 65%,
      transparent 100%
    );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.9s ease 0.2s;
  }

  /* RIGHT SIDE */

  .presence-highlight {
    width: 100%;

    transform: translateY(25px);

    transition:
      opacity 0.9s ease 0.35s,
      transform 0.9s ease 0.35s;
  }

  .presence-section.reveal-active .presence-divider {
    transform: scaleX(1);
  }

  .presence-section.reveal-active .presence-highlight {
    opacity: 1;

    transform: translateY(0);
  }

  .highlight-number {
    font-size: 58px;
  }

  .presence-highlight p {
    font-size: 18px;

    line-height: 1.5;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .presence-section {
    padding: 60px 0 65px;
  }

  .presence-container {
    width: 88%;
  }

  .presence-content h2 {
    font-size: 34px;
  }

  .presence-content p {
    font-size: 15px;
  }

  .highlight-number {
    font-size: 50px;
  }

  .presence-highlight p {
    font-size: 16px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .presence-content,
  .presence-divider,
  .presence-highlight {
    opacity: 1;

    transform: none;

    transition: none;
  }
}

/* =========================================================
   ABOUT US SECTION
========================================================= */

.about-section {
  position: relative;

  width: 100%;

  padding: 110px 0 115px;

  background: #f8f7f4;

  overflow: hidden;
}

/* =========================================================
   TOP DECORATIVE LINE
========================================================= */

.about-section::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 120px;
  height: 1px;

  background: rgba(167, 123, 63, 0.45);

  transform: translateX(-50%);

  pointer-events: none;
}

/* =========================================================
   ABOUT CONTAINER
========================================================= */

.about-container {
  position: relative;

  z-index: 2;

  width: min(84%, 1100px);

  margin: 0 auto;

  text-align: center;
}

/* =========================================================
   ABOUT LABEL CONTAINER
========================================================= */

.about-side {
  width: 100%;

  margin-bottom: 20px;

  text-align: center;
}

/* =========================================================
   ABOUT LABEL
========================================================= */

.about-label {
  display: inline-block;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2.2px;

  text-transform: uppercase;

  color: var(--gold);
}

/* =========================================================
   MAIN CONTENT
========================================================= */

.about-content {
  width: 100%;

  max-width: 1000px;

  margin: 0 auto;

  text-align: center;
}

/* =========================================================
   MAIN HEADING
========================================================= */

.about-content h2 {
  width: 100%;
  max-width: 900px;

  margin: 0 auto 32px;

  font-family: var(--font-display);

  font-size: clamp(48px, 4vw, 66px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -1.4px;

  color: var(--navy);
}

/* =========================================================
   LEAD PARAGRAPH
========================================================= */

.about-lead {
  width: 100%;
  max-width: 900px;

  margin: 0 auto 22px;

  font-family: var(--font-main);

  font-size: 20px;
  font-weight: 500;

  line-height: 1.65;

  color: var(--navy);
}

/* =========================================================
   SECOND PARAGRAPH
========================================================= */

.about-text {
  width: 100%;
  max-width: 900px;

  margin: 0 auto;

  font-family: var(--font-main);

  font-size: 17px;
  font-weight: 400;

  line-height: 1.75;

  color: #4d5960;
}

/* =========================================================
   GOLD DECORATIVE LINE
========================================================= */

.about-line {
  width: 65px;
  height: 2px;

  margin: 38px auto 0;

  background: var(--gold);

  transition: width 0.5s ease;
}

/* Expand slightly on hover */

.about-section:hover .about-line {
  width: 100px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .about-section {
    padding: 90px 0 95px;
  }

  .about-container {
    width: 86%;
  }

  .about-side {
    margin-bottom: 18px;
  }

  .about-content h2 {
    margin-bottom: 28px;

    font-size: 49px;
  }

  .about-lead {
    max-width: 780px;

    font-size: 19px;

    line-height: 1.65;
  }

  .about-text {
    max-width: 800px;

    font-size: 16px;

    line-height: 1.7;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .about-section {
    padding: 75px 0 80px;
  }

  .about-container {
    width: 86%;
  }

  /* =========================
       ABOUT LABEL
    ========================== */

  .about-side {
    margin-bottom: 16px;
  }

  .about-label {
    font-size: 11px;

    letter-spacing: 1.8px;
  }

  /* =========================
       HEADING
    ========================== */

  .about-content h2 {
    margin-bottom: 25px;

    font-size: 40px;

    line-height: 1.1;

    letter-spacing: -0.8px;
  }

  /* =========================
       LEAD PARAGRAPH
    ========================== */

  .about-lead {
    margin-bottom: 20px;

    font-size: 18px;

    line-height: 1.6;
  }

  /* =========================
       SECOND PARAGRAPH
    ========================== */

  .about-text {
    font-size: 16px;

    line-height: 1.7;
  }

  /* =========================
       GOLD LINE
    ========================== */

  .about-line {
    width: 55px;

    margin-top: 32px;
  }

  .about-section:hover .about-line {
    width: 75px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .about-section {
    padding: 65px 0 70px;
  }

  .about-container {
    width: 88%;
  }

  .about-content h2 {
    font-size: 35px;

    line-height: 1.1;
  }

  .about-lead {
    font-size: 17px;
  }

  .about-text {
    font-size: 15px;
  }
}

/* =========================================================
   STRATEGIC JOURNEY SECTION
========================================================= */

.journey-section {
  position: relative;

  width: 100%;

  padding: 110px 0 140px;

  background: #ffffff;

  overflow: hidden;
}

/* =========================================================
   SECTION INTRO
========================================================= */

.journey-intro {
  width: min(86%, 950px);

  margin: 0 auto 95px;

  text-align: center;
}

.journey-label {
  display: inline-block;

  margin-bottom: 17px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2.2px;

  text-transform: uppercase;

  color: var(--gold);
}

.journey-intro h2 {
  margin: 0 0 25px;

  font-family: var(--font-display);

  font-size: clamp(48px, 4vw, 66px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -1.4px;

  color: var(--navy);
}

.journey-intro p {
  max-width: 780px;

  margin: 0 auto;

  font-family: var(--font-main);

  font-size: 18px;
  font-weight: 400;

  line-height: 1.7;

  color: #4d5960;
}

/* =========================================================
   TIMELINE CONTAINER
========================================================= */

.journey-container {
  position: relative;

  width: min(88%, 1500px);

  margin: 0 auto;
}

/* =========================================================
   CENTRAL TIMELINE
========================================================= */

.journey-line {
  position: absolute;

  top: 0;
  bottom: 0;

  left: 50%;

  width: 2px;

  background: rgba(167, 123, 63, 0.2);

  transform: translateX(-50%);

  overflow: hidden;
}

/* Animated portion */

.journey-line-progress {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 0;

  background: var(--gold);

  transition: height 0.1s linear;
}

/* =========================================================
   TIMELINE ITEMS
========================================================= */

.journey-item {
  position: relative;

  width: 100%;

  min-height: 610px;

  display: flex;

  align-items: flex-start;
}

/* =========================================================
   LEFT CARD
========================================================= */

.journey-left {
  justify-content: flex-start;

  padding-right: calc(50% + 65px);
}

/* =========================================================
   RIGHT CARD
========================================================= */

.journey-right {
  justify-content: flex-end;

  padding-left: calc(50% + 65px);
}

/* =========================================================
   TIMELINE MARKER
========================================================= */

.journey-marker {
  position: absolute;

  top: 245px;
  left: 50%;

  width: 30px;
  height: 30px;

  background: #ffffff;

  border: 2px solid var(--gold);

  border-radius: 50%;

  transform: translateX(-50%);

  z-index: 5;

  transition:
    background 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Inner point */

.journey-marker::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 8px;
  height: 8px;

  background: var(--gold);

  border-radius: 50%;

  transform: translate(-50%, -50%) scale(0);

  transition: transform 0.4s ease;
}

/* =========================================================
   CARD
========================================================= */

.journey-card {
  position: relative;

  width: 100%;
  max-width: 610px;

  background: #ffffff;

  box-shadow: 0 25px 55px rgba(0, 35, 59, 0.13);

  overflow: hidden;

  opacity: 0;

  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

/* Left card starts left */

.journey-left .journey-card {
  transform: translateX(-55px);
}

/* Right card starts right */

.journey-right .journey-card {
  transform: translateX(55px);
}

/* =========================================================
   VIDEO
========================================================= */

.journey-media {
  position: relative;

  width: 100%;
  height: 265px;

  overflow: hidden;

  background: #ececec;
}

.journey-media video {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.01);

  transition: transform 1.2s ease;
}

/* Very subtle brand overlay */

.journey-video-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 35, 59, 0.18), transparent 55%);

  pointer-events: none;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.journey-card-content {
  padding: 40px 42px 44px;
}

.journey-card-label {
  display: inline-block;

  margin-bottom: 13px;

  font-family: var(--font-main);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1.8px;

  text-transform: uppercase;

  color: var(--gold);
}

.journey-card-content h3 {
  margin: 0 0 20px;

  font-family: var(--font-display);

  font-size: clamp(32px, 2.6vw, 43px);
  font-weight: 500;

  line-height: 1.1;

  letter-spacing: -0.7px;

  color: var(--navy);
}

.journey-card-content p {
  margin: 0;

  font-family: var(--font-main);

  font-size: 17px;
  font-weight: 400;

  line-height: 1.7;

  color: #3f4c54;
}

/* =========================================================
   CARD HOVER
========================================================= */

.journey-card:hover {
  box-shadow: 0 32px 70px rgba(0, 35, 59, 0.18);
}

.journey-card:hover .journey-media video {
  transform: scale(1.06);
}

/* =========================================================
   REVEAL ACTIVE
========================================================= */

.journey-item.reveal-active .journey-card {
  opacity: 1;

  transform: translateX(0);
}

.journey-item.reveal-active .journey-marker {
  background: #ffffff;

  transform: translateX(-50%) scale(1.08);

  box-shadow: 0 0 0 7px rgba(167, 123, 63, 0.1);
}

.journey-item.reveal-active .journey-marker::after {
  transform: translate(-50%, -50%) scale(1);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .journey-section {
    padding: 90px 0 110px;
  }

  .journey-intro {
    margin-bottom: 75px;
  }

  .journey-container {
    width: 90%;
  }

  .journey-item {
    min-height: 560px;
  }

  .journey-left {
    padding-right: calc(50% + 42px);
  }

  .journey-right {
    padding-left: calc(50% + 42px);
  }

  .journey-media {
    height: 220px;
  }

  .journey-marker {
    top: 205px;
  }

  .journey-card-content {
    padding: 32px 30px 36px;
  }

  .journey-card-content h3 {
    font-size: 33px;
  }

  .journey-card-content p {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .journey-section {
    padding: 75px 0 90px;
  }

  /* =========================
       INTRO
    ========================== */

  .journey-intro {
    width: 86%;

    margin-bottom: 65px;
  }

  .journey-label {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: 1.8px;
  }

  .journey-intro h2 {
    margin-bottom: 22px;

    font-size: 40px;

    line-height: 1.1;
  }

  .journey-intro p {
    font-size: 16px;

    line-height: 1.65;
  }

  /* =========================
       TIMELINE
    ========================== */

  .journey-container {
    width: 88%;

    padding-left: 35px;
  }

  .journey-line {
    left: 7px;

    transform: none;
  }

  /* =========================
       ITEMS
    ========================== */

  .journey-item {
    min-height: 0;

    margin-bottom: 65px;

    display: block;

    padding: 0;
  }

  .journey-item:last-child {
    margin-bottom: 0;
  }

  .journey-left,
  .journey-right {
    padding: 0;
  }

  /* =========================
       MARKER
    ========================== */

  .journey-marker {
    top: 95px;
    left: -28px;

    width: 24px;
    height: 24px;

    transform: none;
  }

  .journey-item.reveal-active .journey-marker {
    transform: scale(1.08);
  }

  /* =========================
       CARDS
    ========================== */

  .journey-card {
    max-width: 100%;
  }

  .journey-left .journey-card,
  .journey-right .journey-card {
    transform: translateY(35px);
  }

  .journey-item.reveal-active .journey-card {
    transform: translateY(0);
  }

  /* =========================
       VIDEO
    ========================== */

  .journey-media {
    height: 210px;
  }

  /* =========================
       CONTENT
    ========================== */

  .journey-card-content {
    padding: 30px 27px 34px;
  }

  .journey-card-content h3 {
    margin-bottom: 17px;

    font-size: 31px;

    line-height: 1.12;
  }

  .journey-card-content p {
    font-size: 15.5px;

    line-height: 1.7;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .journey-container {
    width: 90%;

    padding-left: 30px;
  }

  .journey-line {
    left: 5px;
  }

  .journey-marker {
    left: -25px;
  }

  .journey-media {
    height: 185px;
  }

  .journey-card-content {
    padding: 27px 23px 30px;
  }

  .journey-card-content h3 {
    font-size: 28px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .journey-card {
    opacity: 1;

    transform: none !important;

    transition: none;
  }

  .journey-media video {
    transform: none;

    transition: none;
  }
}

/* =========================================================
   LEVANT DIFFERENCE SECTION
========================================================= */

.difference-section {
  position: relative;
  width: 100%;
  padding: 105px 0 110px;

  background: #f5f5f3;

  overflow: hidden;
}

/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.difference-section::before {
  content: "";

  position: absolute;

  top: -220px;
  left: 50%;

  width: 650px;
  height: 400px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: radial-gradient(
    ellipse,
    rgba(167, 123, 63, 0.055) 0%,
    rgba(167, 123, 63, 0.02) 45%,
    transparent 72%
  );

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.difference-container {
  position: relative;
  z-index: 2;

  width: min(84%, 1100px);

  margin: 0 auto;

  text-align: center;
}

/* =========================================================
   SMALL LABEL
========================================================= */

.difference-label {
  display: inline-block;

  margin-bottom: 17px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.1px;

  text-transform: uppercase;

  color: var(--gold);
}

/* =========================================================
   MAIN TITLE
========================================================= */

.difference-container h2 {
  width: 100%;

  margin: 0 0 30px;

  font-family: var(--font-display);

  font-size: clamp(50px, 4.2vw, 68px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -1.5px;

  color: var(--navy);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.difference-container p {
  width: 100%;
  max-width: 1030px;

  margin: 0 auto;

  font-family: var(--font-main);

  font-size: 20px;
  font-weight: 400;

  line-height: 1.75;

  color: #263640;
}

/* =========================================================
   GOLD DECORATIVE LINE
========================================================= */

.difference-line {
  width: 70px;
  height: 2px;

  margin: 37px auto 0;

  background: var(--gold);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .difference-section {
    padding: 90px 0 95px;
  }

  .difference-container {
    width: 86%;
  }

  .difference-label {
    margin-bottom: 16px;
  }

  .difference-container h2 {
    margin-bottom: 27px;

    font-size: 50px;

    line-height: 1.09;
  }

  .difference-container p {
    max-width: 850px;

    font-size: 18px;

    line-height: 1.7;
  }

  .difference-line {
    width: 65px;

    margin-top: 34px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .difference-section {
    padding: 75px 0 80px;
  }

  .difference-section::before {
    top: -150px;

    width: 420px;
    height: 300px;
  }

  .difference-container {
    width: 86%;
  }

  /* LABEL */

  .difference-label {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: 1.7px;
  }

  /* TITLE */

  .difference-container h2 {
    margin-bottom: 23px;

    font-size: 40px;

    line-height: 1.1;

    letter-spacing: -0.8px;
  }

  /* PARAGRAPH */

  .difference-container p {
    max-width: 100%;

    font-size: 16px;

    line-height: 1.7;
  }

  /* GOLD LINE */

  .difference-line {
    width: 55px;

    margin-top: 30px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .difference-section {
    padding: 65px 0 70px;
  }

  .difference-container {
    width: 88%;
  }

  .difference-label {
    font-size: 10px;

    letter-spacing: 1.5px;
  }

  .difference-container h2 {
    margin-bottom: 21px;

    font-size: 35px;

    line-height: 1.1;
  }

  .difference-container p {
    font-size: 15px;

    line-height: 1.65;
  }

  .difference-line {
    width: 50px;

    margin-top: 27px;
  }
}

/* =========================================================
   INDUSTRY EXPERTISE SECTION
========================================================= */

.industries-preview-section {
  position: relative;

  width: 100%;

  padding: 110px 0 0;

  background: #f2f2f0;

  overflow: hidden;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.industries-preview-container {
  width: min(88%, 1450px);

  margin: 0 auto;

  padding-bottom: 90px;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.industries-preview-header {
  width: 100%;

  max-width: 1000px;

  margin-bottom: 58px;
}

/* =========================================================
   SMALL LABEL
========================================================= */

.industries-preview-label {
  display: inline-block;

  margin-bottom: 16px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.1px;

  text-transform: uppercase;

  color: var(--gold);
}

/* =========================================================
   MAIN TITLE
========================================================= */

.industries-preview-header h2 {
  margin: 0 0 25px;

  font-family: var(--font-display);

  font-size: clamp(48px, 4vw, 65px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -1.4px;

  color: var(--navy);
}

/* =========================================================
   INTRODUCTION
========================================================= */

.industries-preview-header p {
  width: 100%;
  max-width: 950px;

  margin: 0;

  font-family: var(--font-main);

  font-size: 18px;
  font-weight: 400;

  line-height: 1.7;

  color: #3f4c54;
}

/* =========================================================
   INDUSTRIES GRID
========================================================= */

.industries-preview-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

/* =========================================================
   INDUSTRY CARD
========================================================= */

.industry-preview-card {
  position: relative;

  min-height: 175px;

  padding: 31px 29px 28px;

  display: flex;
  flex-direction: column;

  justify-content: space-between;

  background: #ffffff;

  border: 1px solid rgba(0, 35, 59, 0.08);

  overflow: hidden;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* =========================================================
   TOP GOLD HOVER LINE
========================================================= */

.industry-preview-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: var(--gold);

  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   ICON
   NO BOX / NO BORDER
========================================================= */

.industry-preview-icon {
  width: auto;
  height: auto;

  display: block;

  margin: 0 0 33px;

  padding: 0;

  border: 0;

  background: transparent;

  color: var(--gold);

  font-size: 30px;

  line-height: 1;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

.industry-preview-icon i {
  display: inline-block;
}

/* =========================================================
   CARD TITLE
========================================================= */

.industry-preview-card h3 {
  max-width: 290px;

  margin: 0;

  font-family: var(--font-main);

  font-size: 17px;
  font-weight: 500;

  line-height: 1.4;

  color: var(--navy);

  transition: color 0.35s ease;
}

/* =========================================================
   CARD HOVER
========================================================= */

.industry-preview-card:hover {
  transform: translateY(-5px);

  background: #ffffff;

  box-shadow: 0 18px 38px rgba(0, 35, 59, 0.09);
}

.industry-preview-card:hover::before {
  width: 100%;
}

.industry-preview-card:hover .industry-preview-icon {
  color: var(--gold-dark);

  transform: translateY(-3px);
}

/* =========================================================
   INDUSTRIES DISCOVER / CTA BAND
========================================================= */

.industries-discover {
  position: relative;

  width: 100%;

  background: var(--navy);
}

/* Small gold top detail */

.industries-discover::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(
    to right,
    var(--gold) 0%,
    var(--gold) 18%,
    rgba(167, 123, 63, 0.25) 18%,
    rgba(167, 123, 63, 0.25) 100%
  );
}

/* =========================================================
   CTA INNER CONTAINER
========================================================= */

.industries-discover-inner {
  width: min(88%, 1450px);

  min-height: 190px;

  margin: 0 auto;

  padding: 45px 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 60px;
}

/* =========================================================
   CTA TEXT
========================================================= */

.industries-discover-content {
  max-width: 760px;
}

.industries-discover-content span {
  display: block;

  margin-bottom: 11px;

  font-family: var(--font-main);

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: var(--gold-light);
}

.industries-discover-content h3 {
  margin: 0;

  font-family: var(--font-display);

  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;

  line-height: 1.12;

  letter-spacing: -0.7px;

  color: #ffffff;
}

/* =========================================================
   CTA BUTTON
========================================================= */

.industries-discover-link {
  flex-shrink: 0;

  min-width: 210px;

  padding: 16px 23px;

  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  background: var(--gold);

  border: 1px solid var(--gold);

  font-family: var(--font-main);

  font-size: 15px;
  font-weight: 600;

  color: #ffffff;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Arrow */

.industries-discover-link i {
  font-size: 14px;

  transition: transform 0.3s ease;
}

/* Button hover */

.industries-discover-link:hover {
  background: var(--gold-dark);

  border-color: var(--gold-dark);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.industries-discover-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {
  .industries-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-preview-card {
    min-height: 155px;
  }

  .industry-preview-card h3 {
    max-width: 100%;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .industries-preview-section {
    padding-top: 90px;
  }

  .industries-preview-container {
    width: 86%;

    padding-bottom: 75px;
  }

  /* =========================
       HEADER
    ========================== */

  .industries-preview-header {
    margin-bottom: 48px;
  }

  .industries-preview-header h2 {
    font-size: 50px;
  }

  .industries-preview-header p {
    font-size: 17px;
  }

  /* =========================
       CTA
    ========================== */

  .industries-discover-inner {
    width: 86%;

    min-height: 180px;

    gap: 40px;
  }

  .industries-discover-content h3 {
    font-size: 38px;
  }

  .industries-discover-link {
    min-width: 195px;

    padding: 15px 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .industries-preview-section {
    padding-top: 75px;
  }

  .industries-preview-container {
    width: 86%;

    padding-bottom: 65px;
  }

  /* =========================
       HEADER
    ========================== */

  .industries-preview-header {
    margin-bottom: 40px;
  }

  .industries-preview-label {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: 1.7px;
  }

  .industries-preview-header h2 {
    margin-bottom: 22px;

    font-size: 40px;

    line-height: 1.1;
  }

  .industries-preview-header p {
    font-size: 16px;

    line-height: 1.65;
  }

  /* =========================
       GRID
    ========================== */

  .industries-preview-grid {
    grid-template-columns: 1fr;

    gap: 11px;
  }

  /* =========================
       CARD
    ========================== */

  .industry-preview-card {
    min-height: 0;

    padding: 24px 23px;

    display: grid;

    grid-template-columns: 42px 1fr;

    align-items: center;

    justify-content: initial;

    gap: 17px;
  }

  /* ICON */

  .industry-preview-icon {
    margin: 0;

    font-size: 25px;

    text-align: center;
  }

  /* TITLE */

  .industry-preview-card h3 {
    font-size: 16px;

    line-height: 1.4;
  }

  /* Disable lift on touch-size screens */

  .industry-preview-card:hover {
    transform: none;
  }

  .industry-preview-card:hover .industry-preview-icon {
    transform: none;
  }

  /* =========================
       CTA BAND
    ========================== */

  .industries-discover-inner {
    width: 86%;

    min-height: 0;

    padding: 48px 0 50px;

    display: block;
  }

  .industries-discover-content {
    max-width: 100%;
  }

  .industries-discover-content span {
    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: 1.7px;
  }

  .industries-discover-content h3 {
    max-width: 450px;

    margin-bottom: 28px;

    font-size: 34px;

    line-height: 1.12;
  }

  .industries-discover-link {
    min-width: 0;

    width: auto;

    padding: 15px 20px;

    justify-content: flex-start;

    gap: 28px;

    font-size: 14px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {
  .industries-preview-section {
    padding-top: 65px;
  }

  .industries-preview-container {
    width: 88%;

    padding-bottom: 55px;
  }

  .industries-preview-header h2 {
    font-size: 35px;
  }

  .industry-preview-card {
    padding: 21px 19px;

    grid-template-columns: 37px 1fr;

    gap: 13px;
  }

  .industry-preview-icon {
    font-size: 22px;
  }

  .industry-preview-card h3 {
    font-size: 15px;
  }

  /* CTA */

  .industries-discover-inner {
    width: 88%;

    padding: 42px 0 45px;
  }

  .industries-discover-content h3 {
    font-size: 30px;
  }
}

/* =========================================================
   CAPABILITIES SHOWCASE
========================================================= */

.capabilities-showcase {
  position: relative;
  width: 100%;
  padding: 110px 0 120px;
  background: #ffffff;
  overflow: hidden;
}

/* =========================================================
   MAIN CONTAINER
========================================================= */

.capabilities-showcase-container {
  width: min(88%, 1450px);
  margin: 0 auto;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.capabilities-showcase-header {
  width: 100%;
  margin-bottom: 50px;
}

.capabilities-showcase-label {
  display: inline-block;
  margin-bottom: 14px;

  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;

  letter-spacing: 2.1px;
  text-transform: uppercase;

  color: var(--gold);
}

.capabilities-showcase-header h2 {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(48px, 4vw, 65px);
  font-weight: 500;

  line-height: 1.08;
  letter-spacing: -1.4px;

  color: var(--navy);
}

/* =========================================================
   MAIN CAPABILITY STAGE
========================================================= */

.capability-stage {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: 690px;

  padding: 68px 72px 64px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* =========================================================
   DARK IMAGE OVERLAY
========================================================= */

.capability-stage-overlay {
  position: absolute;
  inset: 0;

  z-index: -2;

  background: linear-gradient(
    90deg,
    rgba(0, 25, 43, 0.91) 0%,
    rgba(0, 30, 50, 0.75) 37%,
    rgba(0, 27, 46, 0.51) 67%,
    rgba(0, 22, 38, 0.64) 100%
  );

  pointer-events: none;
}

/* =========================================================
   BOTTOM GRADIENT
========================================================= */

.capability-stage::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background: linear-gradient(
    to top,
    rgba(0, 22, 38, 0.88) 0%,
    rgba(0, 22, 38, 0.24) 48%,
    transparent 70%
  );

  pointer-events: none;
}

/* =========================================================
   CAPABILITY NAVIGATION
========================================================= */

.capability-navigation {
  position: relative;
  z-index: 3;

  width: min(100%, 570px);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 2px;
}

/* =========================================================
   CAPABILITY OPTION
========================================================= */

.capability-option {
  position: relative;

  width: auto;

  padding: 10px 0 10px 23px;

  border: 0;
  outline: 0;

  background: transparent;

  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;

  line-height: 1.4;
  letter-spacing: 0.15px;

  text-align: left;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.62);

  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* =========================================================
   CAPABILITY INDICATOR
========================================================= */

.capability-option::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 0;

  width: 8px;
  height: 2px;

  background: rgba(255, 255, 255, 0.35);

  transform: translateY(-50%);

  transition:
    width 0.3s ease,
    background 0.3s ease;
}

/* =========================================================
   OPTION HOVER
========================================================= */

.capability-option:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* =========================================================
   ACTIVE OPTION
========================================================= */

.capability-option.active {
  color: #ffffff;
}

.capability-option.active::before {
  width: 14px;
  background: var(--gold);
}

/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.capability-option:focus-visible {
  outline: 1px solid var(--gold-light);
  outline-offset: 5px;
}

/* =========================================================
   BOTTOM CONTENT
========================================================= */

.capability-stage-content {
  position: relative;
  z-index: 3;

  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(330px, 0.75fr);

  align-items: end;

  gap: 90px;
}

/* =========================================================
   LARGE CAPABILITY TITLE
========================================================= */

.capability-stage-title {
  min-width: 0;
}

.capability-stage-title h3 {
  max-width: 780px;

  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 500;

  line-height: 1.03;
  letter-spacing: -1.8px;

  color: #ffffff;

  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

/* =========================================================
   RIGHT DETAILS
========================================================= */

.capability-stage-details {
  width: 100%;
  max-width: 450px;

  justify-self: end;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.capability-stage-details p {
  margin: 0 0 30px;

  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 400;

  line-height: 1.65;

  color: rgba(255, 255, 255, 0.95);

  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.25s ease,
    transform 0.35s ease;
}

/* =========================================================
   LEARN MORE BUTTON
   PERMANENT GOLD
========================================================= */

.capability-learn-more {
  width: 100%;
  min-height: 58px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  background: var(--gold);
  border: 1px solid var(--gold);

  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;

  color: #ffffff;

  cursor: pointer;

  transition: none;
}

.capability-link-text {
  color: #ffffff;
}

/* =========================================================
   LEARN MORE ARROW
========================================================= */

.capability-link-arrow {
  font-size: 21px;
  font-weight: 400;

  line-height: 1;

  color: #ffffff;

  transition: transform 0.3s ease;
}

/* =========================================================
   LEARN MORE HOVER
   KEEP SAME GOLD COLOR
========================================================= */

.capability-learn-more:hover,
.capability-learn-more:focus,
.capability-learn-more:active,
.capability-learn-more:visited {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.capability-learn-more:hover .capability-link-text,
.capability-learn-more:focus .capability-link-text,
.capability-learn-more:active .capability-link-text,
.capability-learn-more:visited .capability-link-text {
  color: #ffffff;
}

.capability-learn-more:hover .capability-link-arrow {
  color: #ffffff;
  transform: translateX(5px);
}

/* =========================================================
   SWITCHING ANIMATION
========================================================= */

.capability-stage.switching .capability-stage-title h3,
.capability-stage.switching .capability-stage-details p {
  opacity: 0;
  transform: translateY(14px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .capabilities-showcase {
    padding: 90px 0 100px;
  }

  .capabilities-showcase-container {
    width: 86%;
  }

  .capability-stage {
    min-height: 650px;

    padding: 55px 48px;
  }

  .capability-stage-content {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, 0.75fr);

    gap: 50px;
  }

  .capability-stage-title h3 {
    font-size: 55px;
  }

  .capability-stage-details p {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .capabilities-showcase {
    padding: 75px 0 80px;
  }

  .capabilities-showcase-container {
    width: 86%;
  }

  /* =========================
       HEADER
    ========================== */

  .capabilities-showcase-header {
    margin-bottom: 38px;
  }

  .capabilities-showcase-label {
    margin-bottom: 12px;

    font-size: 11px;
    letter-spacing: 1.7px;
  }

  .capabilities-showcase-header h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  /* =========================
       STAGE
    ========================== */

  .capability-stage {
    min-height: 680px;

    padding: 38px 27px 30px;

    background-position: center;
  }

  /* =========================
       MOBILE OVERLAY
    ========================== */

  .capability-stage-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 25, 43, 0.88) 0%,
      rgba(0, 25, 43, 0.62) 42%,
      rgba(0, 22, 38, 0.91) 100%
    );
  }

  /* =========================
       OPTIONS
    ========================== */

  .capability-navigation {
    width: 100%;
  }

  .capability-option {
    padding: 8px 0 8px 18px;

    font-size: 11px;
    line-height: 1.4;
  }

  .capability-option::before {
    width: 6px;
  }

  .capability-option.active::before {
    width: 10px;
  }

  /* =========================
       CONTENT
    ========================== */

  .capability-stage-content {
    display: block;
  }

  .capability-stage-title h3 {
    max-width: 100%;

    margin-bottom: 24px;

    font-size: 43px;

    line-height: 1.05;
    letter-spacing: -1px;
  }

  .capability-stage-details {
    max-width: 100%;
  }

  .capability-stage-details p {
    margin-bottom: 24px;

    font-size: 15px;
    line-height: 1.6;
  }

  /* =========================
       LEARN MORE
    ========================== */

  .capability-learn-more {
    min-height: 54px;

    padding: 0 20px;

    font-size: 14px;

    background: var(--gold);
    border-color: var(--gold);
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .capabilities-showcase {
    padding: 65px 0 70px;
  }

  .capabilities-showcase-container {
    width: 88%;
  }

  .capabilities-showcase-header h2 {
    font-size: 35px;
  }

  .capability-stage {
    min-height: 650px;

    padding: 32px 22px 25px;
  }

  .capability-option {
    font-size: 10px;
  }

  .capability-stage-title h3 {
    font-size: 37px;
  }

  .capability-stage-details p {
    font-size: 14px;
  }

  .capability-learn-more {
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .capability-stage-title h3,
  .capability-stage-details p,
  .capability-option,
  .capability-link-arrow {
    transition: none;
  }
}

/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro {
  position: relative;
  width: 100%;

  padding: 105px 0 110px;

  background: #f5f5f3;

  overflow: hidden;
}

/* Subtle background detail */

.contact-intro::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: var(--gold);
}

/* =========================================================
   CONTAINER
========================================================= */

.contact-intro-container {
  position: relative;
  z-index: 2;

  width: min(88%, 1450px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(500px, 1.1fr);

  gap: 100px;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.contact-intro-heading {
  max-width: 600px;
}

.contact-intro-label {
  display: inline-block;

  margin-bottom: 18px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.1px;

  text-transform: uppercase;

  color: var(--gold);
}

.contact-intro-heading h1 {
  margin: 0;

  font-family: var(--font-display);

  font-size: clamp(52px, 5vw, 76px);

  font-weight: 500;

  line-height: 1.04;

  letter-spacing: -1.8px;

  color: var(--navy);
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.contact-intro-content {
  padding-top: 33px;
}

.contact-intro-text {
  max-width: 720px;

  margin: 0 0 52px;

  font-family: var(--font-main);

  font-size: 19px;
  font-weight: 400;

  line-height: 1.75;

  color: #35434c;
}

/* =========================================================
   CONTACT INFORMATION GRID
========================================================= */

.contact-info-grid {
  width: 100%;

  display: grid;

  grid-template-columns:
    1.35fr
    1fr
    0.8fr;

  gap: 0;

  border-top: 1px solid rgba(0, 35, 59, 0.18);

  padding-top: 30px;
}

/* =========================================================
   CONTACT INFORMATION ITEM
========================================================= */

.contact-info-item {
  position: relative;

  min-height: 100px;

  padding-right: 28px;
}

.contact-info-item:not(:first-child) {
  padding-left: 28px;

  border-left: 1px solid rgba(0, 35, 59, 0.14);
}

.contact-info-label {
  display: block;

  margin-bottom: 12px;

  font-family: var(--font-main);

  font-size: 11px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 1.7px;

  text-transform: uppercase;

  color: var(--gold);
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;

  font-family: var(--font-main);

  font-size: 15px;
  font-weight: 500;

  line-height: 1.65;

  color: var(--navy);
}

.contact-info-item a {
  display: inline-block;

  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .contact-intro {
    padding: 90px 0 95px;
  }

  .contact-intro-container {
    width: 86%;

    grid-template-columns:
      0.85fr
      1.15fr;

    gap: 60px;
  }

  .contact-intro-heading h1 {
    font-size: 55px;
  }

  .contact-intro-text {
    font-size: 17px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;

    row-gap: 30px;
  }

  .contact-info-item {
    min-height: auto;

    padding-right: 20px;
  }

  .contact-info-item:not(:first-child) {
    padding-left: 20px;
  }

  .contact-info-item:nth-child(3) {
    padding-left: 0;

    border-left: 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .contact-intro {
    padding: 72px 0 75px;
  }

  .contact-intro::before {
    width: 3px;
  }

  .contact-intro-container {
    width: 86%;

    display: block;
  }

  .contact-intro-heading {
    max-width: 100%;

    margin-bottom: 34px;
  }

  .contact-intro-label {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: 1.7px;
  }

  .contact-intro-heading h1 {
    max-width: 500px;

    font-size: 43px;

    line-height: 1.06;

    letter-spacing: -1px;
  }

  .contact-intro-content {
    padding-top: 0;
  }

  .contact-intro-text {
    margin-bottom: 40px;

    font-size: 16px;

    line-height: 1.7;
  }

  /* CONTACT DETAILS */

  .contact-info-grid {
    display: block;

    padding-top: 0;

    border-top: 1px solid rgba(0, 35, 59, 0.18);
  }

  .contact-info-item {
    min-height: auto;

    padding: 24px 0;

    border-bottom: 1px solid rgba(0, 35, 59, 0.12);
  }

  .contact-info-item:not(:first-child) {
    padding-left: 0;

    border-left: 0;
  }

  .contact-info-label {
    margin-bottom: 9px;
  }

  .contact-info-item p,
  .contact-info-item a {
    font-size: 15px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .contact-intro {
    padding: 62px 0 65px;
  }

  .contact-intro-container {
    width: 88%;
  }

  .contact-intro-heading h1 {
    font-size: 38px;
  }

  .contact-intro-text {
    font-size: 15px;
  }
}

/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
  position: relative;
  width: 100%;

  padding: 110px 0 120px;

  background: #ffffff;
}

/* =========================================================
   CONTAINER
========================================================= */

.contact-form-container {
  width: min(88%, 1200px);
  margin: 0 auto;
}

/* =========================================================
   FORM HEADING
========================================================= */

.contact-form-heading {
  max-width: 780px;

  margin-bottom: 60px;
}

.contact-form-label {
  display: inline-block;

  margin-bottom: 15px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.1px;

  text-transform: uppercase;

  color: var(--gold);
}

.contact-form-heading h2 {
  margin: 0 0 22px;

  font-family: var(--font-display);

  font-size: clamp(46px, 4vw, 62px);
  font-weight: 500;

  line-height: 1.08;

  letter-spacing: -1.3px;

  color: var(--navy);
}

.contact-form-heading p {
  max-width: 700px;

  margin: 0;

  font-family: var(--font-main);

  font-size: 17px;
  font-weight: 400;

  line-height: 1.7;

  color: #4c5961;
}

/* =========================================================
   FORM
========================================================= */

.contact-form {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 35px;
  row-gap: 34px;
}

/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
  position: relative;

  width: 100%;
}

.form-group-full {
  grid-column: 1 / -1;
}

/* =========================================================
   LABEL
========================================================= */

.form-group label {
  display: block;

  margin-bottom: 11px;

  font-family: var(--font-main);

  font-size: 13px;
  font-weight: 600;

  color: var(--navy);
}

.form-group label span {
  margin-left: 2px;

  color: var(--gold);
}

/* =========================================================
   INPUTS / TEXTAREA
========================================================= */

.form-group input,
.form-group textarea {
  width: 100%;

  border: 0;

  border-bottom: 1px solid rgba(0, 35, 59, 0.28);

  border-radius: 0;

  outline: none;

  background: transparent;

  font-family: var(--font-main);

  font-size: 16px;
  font-weight: 400;

  color: var(--navy);

  transition: border-color 0.3s ease;
}

.form-group input {
  height: 54px;

  padding: 0 0 13px;
}

.form-group textarea {
  min-height: 160px;

  padding: 13px 0;

  resize: vertical;

  line-height: 1.6;
}

/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a9399;

  opacity: 1;
}

/* Focus */

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
}

/* =========================================================
   INVALID FIELD
========================================================= */

.form-group.has-error input,
.form-group.has-error textarea {
  border-bottom-color: #a83d3d;
}

/* =========================================================
   ERROR MESSAGE
========================================================= */

.form-error {
  display: none;

  margin-top: 8px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 500;

  color: #a83d3d;
}

.form-group.has-error .form-error {
  display: block;
}

/* =========================================================
   SUBMIT AREA
========================================================= */

.form-submit {
  display: flex;

  justify-content: flex-start;

  margin-top: 8px;
}

/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {
  min-width: 230px;
  min-height: 58px;

  padding: 0 25px;

  display: inline-flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  border: 1px solid var(--gold);

  background: var(--gold);

  font-family: var(--font-main);

  font-size: 15px;
  font-weight: 600;

  color: #ffffff;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Keep gold on hover */

.contact-submit-button:hover {
  background: var(--gold);

  border-color: var(--gold);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 9px 22px rgba(167, 123, 63, 0.22);
}

/* Arrow */

.submit-arrow {
  font-size: 21px;

  line-height: 1;

  transition: transform 0.3s ease;
}

.contact-submit-button:hover .submit-arrow {
  transform: translateX(5px);
}

/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.form-success {
  display: none;

  width: 100%;

  margin-top: 10px;

  padding: 25px 28px;

  align-items: flex-start;

  gap: 18px;

  border-left: 3px solid var(--gold);

  background: #f5f5f3;
}

.form-success.show {
  display: flex;

  animation: successReveal 0.45s ease forwards;
}

.form-success-icon {
  flex-shrink: 0;

  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--gold);

  font-size: 18px;
  font-weight: 600;

  color: #ffffff;
}

.form-success strong {
  display: block;

  margin-bottom: 5px;

  font-family: var(--font-main);

  font-size: 16px;
  font-weight: 600;

  color: var(--navy);
}

.form-success p {
  margin: 0;

  font-family: var(--font-main);

  font-size: 14px;
  font-weight: 400;

  line-height: 1.6;

  color: #536069;
}

/* =========================================================
   SUCCESS ANIMATION
========================================================= */

@keyframes successReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .contact-form-section {
    padding: 90px 0 100px;
  }

  .contact-form-container {
    width: 86%;
  }

  .contact-form-heading {
    margin-bottom: 50px;
  }

  .contact-form-heading h2 {
    font-size: 50px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .contact-form-section {
    padding: 75px 0 80px;
  }

  .contact-form-container {
    width: 86%;
  }

  .contact-form-heading {
    margin-bottom: 42px;
  }

  .contact-form-label {
    margin-bottom: 13px;

    font-size: 11px;

    letter-spacing: 1.7px;
  }

  .contact-form-heading h2 {
    margin-bottom: 19px;

    font-size: 40px;

    line-height: 1.1;
  }

  .contact-form-heading p {
    font-size: 16px;

    line-height: 1.65;
  }

  /* FORM */

  .contact-form {
    display: block;
  }

  .form-group {
    margin-bottom: 30px;
  }

  .form-submit {
    margin-top: 7px;
    margin-bottom: 0;
  }

  /* BUTTON */

  .contact-submit-button {
    width: 100%;

    min-height: 56px;
  }

  /* SUCCESS */

  .form-success {
    margin-top: 25px;

    padding: 22px;

    gap: 15px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .contact-form-section {
    padding: 65px 0 70px;
  }

  .contact-form-container {
    width: 88%;
  }

  .contact-form-heading h2 {
    font-size: 36px;
  }

  .contact-form-heading p {
    font-size: 15px;
  }
}

/* =========================================================
   CONTACT BUTTON - ALWAYS WHITE TEXT
========================================================= */

.contact-link,
.contact-link:link,
.contact-link:visited,
.contact-link.active,
.contact-link:hover,
.contact-link:focus,
.contact-link:active {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff !important;
}

/* Mobile menu */

@media (max-width: 900px) {
  .main-nav .contact-link,
  .main-nav .contact-link:link,
  .main-nav .contact-link:visited,
  .main-nav .contact-link.active,
  .main-nav .contact-link:hover,
  .main-nav .contact-link:focus,
  .main-nav .contact-link:active {
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff !important;
  }
}

/* =========================================================
   INDUSTRIES HERO
========================================================= */

.industries-hero {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: 540px;

  display: flex;
  align-items: center;

  background: var(--navy);

  overflow: hidden;
}

/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.industries-hero-video {
  position: absolute;

  top: 0;
  left: 0;

  z-index: -4;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

/* =========================================================
   DARK OVERLAY
========================================================= */

.industries-hero-overlay {
  position: absolute;
  inset: 0;

  z-index: -3;

  background: linear-gradient(
    90deg,
    rgba(0, 25, 43, 0.82) 0%,
    rgba(0, 25, 43, 0.63) 45%,
    rgba(0, 25, 43, 0.38) 72%,
    rgba(0, 25, 43, 0.48) 100%
  );

  pointer-events: none;
}

/* Additional bottom depth */

.industries-hero::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -2;

  background: linear-gradient(
    to top,
    rgba(0, 22, 38, 0.48) 0%,
    transparent 45%
  );

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.industries-hero-container {
  position: relative;
  z-index: 3;

  width: min(88%, 1450px);

  margin: 0 auto;
}

/* =========================================================
   CONTENT
========================================================= */

.industries-hero-content {
  position: relative;

  width: min(100%, 800px);
}

/* =========================================================
   SMALL LABEL
========================================================= */

.industries-hero-label {
  display: inline-block;

  margin-bottom: 18px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.2px;

  text-transform: uppercase;

  color: var(--gold-light);
}

/* =========================================================
   TITLE
========================================================= */

.industries-hero-content h1 {
  margin: 0 0 20px;

  font-family: var(--font-display);

  font-size: clamp(60px, 6vw, 88px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: -2px;

  color: #ffffff;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.industries-hero-content p {
  max-width: 720px;

  margin: 0;

  font-family: var(--font-main);

  font-size: 21px;
  font-weight: 400;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.94);
}

/* =========================================================
   GOLD LINE
========================================================= */

.industries-hero-line {
  width: 72px;
  height: 2px;

  margin-top: 31px;

  background: var(--gold);
}

/* =========================================================
   DECORATIVE RIGHT ELEMENT
========================================================= */

.industries-hero-decoration {
  position: absolute;

  top: 50%;
  right: -80px;

  z-index: 1;

  width: 430px;
  height: 430px;

  transform: translateY(-50%);

  pointer-events: none;

  opacity: 0.55;
}

.industry-shape {
  position: absolute;

  display: block;

  border: 1px solid rgba(255, 255, 255, 0.28);

  background: rgba(0, 35, 59, 0.18);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Top circle */

.shape-one {
  top: 0;
  right: 65px;

  width: 170px;
  height: 170px;

  border-radius: 50%;
}

/* Middle rotated shape */

.shape-two {
  top: 145px;
  right: -15px;

  width: 220px;
  height: 220px;

  border-radius: 48% 18% 48% 18%;

  transform: rotate(45deg);
}

/* Bottom circle */

.shape-three {
  bottom: -55px;
  left: 30px;

  width: 230px;
  height: 230px;

  border-radius: 50%;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .industries-hero {
    min-height: 500px;
  }

  .industries-hero-container {
    width: 86%;
  }

  .industries-hero-content {
    max-width: 680px;
  }

  .industries-hero-content h1 {
    font-size: 68px;
  }

  .industries-hero-content p {
    max-width: 600px;

    font-size: 19px;
  }

  .industries-hero-decoration {
    right: -150px;

    width: 380px;
    height: 380px;

    opacity: 0.42;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
  .industries-hero {
    min-height: 470px;

    align-items: flex-end;
  }

  .industries-hero-container {
    width: 86%;

    padding-bottom: 60px;
  }

  .industries-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 25, 43, 0.42) 0%,
      rgba(0, 25, 43, 0.64) 45%,
      rgba(0, 25, 43, 0.9) 100%
    );
  }

  .industries-hero-label {
    margin-bottom: 14px;

    font-size: 11px;

    letter-spacing: 1.7px;
  }

  .industries-hero-content h1 {
    margin-bottom: 17px;

    font-size: 52px;

    line-height: 1.03;

    letter-spacing: -1px;
  }

  .industries-hero-content p {
    max-width: 100%;

    font-size: 17px;

    line-height: 1.55;
  }

  .industries-hero-line {
    width: 58px;

    margin-top: 25px;
  }

  .industries-hero-decoration {
    top: 40px;
    right: -125px;

    width: 300px;
    height: 300px;

    transform: none;

    opacity: 0.3;
  }

  .shape-one {
    width: 120px;
    height: 120px;
  }

  .shape-two {
    top: 105px;

    width: 155px;
    height: 155px;
  }

  .shape-three {
    width: 160px;
    height: 160px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .industries-hero {
    min-height: 440px;
  }

  .industries-hero-container {
    width: 88%;

    padding-bottom: 52px;
  }

  .industries-hero-content h1 {
    font-size: 46px;
  }

  .industries-hero-content p {
    font-size: 16px;
  }
}

/* =========================================================
   INDUSTRY EXPERTISE
========================================================= */

.industry-expertise {
  position: relative;
  width: 100%;

  padding: 110px 0 120px;

  background: #f5f4f1;

  overflow: hidden;
}

/* =========================================================
   CONTAINER
========================================================= */

.industry-expertise-container {
  width: min(88%, 1450px);

  margin: 0 auto;
}

/* =========================================================
   SECTION HEADER
========================================================= */

.industry-expertise-header {
  width: min(100%, 1050px);

  margin-bottom: 65px;
}

.industry-expertise-label {
  display: inline-block;

  margin-bottom: 15px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.1px;

  text-transform: uppercase;

  color: var(--gold);
}

.industry-expertise-header h2 {
  margin: 0 0 27px;

  font-family: var(--font-display);

  font-size: clamp(50px, 4.5vw, 68px);
  font-weight: 500;

  line-height: 1.07;

  letter-spacing: -1.5px;

  color: var(--navy);
}

.industry-expertise-header > p {
  width: min(100%, 950px);

  margin: 0;

  font-family: var(--font-main);

  font-size: 18px;
  font-weight: 400;

  line-height: 1.75;

  color: #3d4b54;
}

/* =========================================================
   ACCORDION GRID
========================================================= */

.industry-accordion {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

/* =========================================================
   INDUSTRY ITEM
========================================================= */

.industry-accordion-item {
  position: relative;

  align-self: start;

  background: #ffffff;

  border: 1px solid rgba(0, 35, 59, 0.12);

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Gold line */

.industry-accordion-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  z-index: 3;

  width: 0;
  height: 3px;

  background: var(--gold);

  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-accordion-item:hover {
  border-color: rgba(167, 123, 63, 0.42);

  box-shadow: 0 10px 25px rgba(0, 35, 59, 0.05);
}

.industry-accordion-item.active {
  border-color: rgba(167, 123, 63, 0.58);

  box-shadow: 0 16px 38px rgba(0, 35, 59, 0.07);
}

.industry-accordion-item.active::before {
  width: 100%;
}

/* =========================================================
   ACCORDION TRIGGER
========================================================= */

.industry-accordion-trigger {
  position: relative;

  width: 100%;
  min-height: 125px;

  padding: 27px 30px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border: 0;

  outline: 0;

  background: transparent;

  text-align: left;

  cursor: pointer;
}

/* =========================================================
   ICON + TITLE
========================================================= */

.industry-trigger-left {
  min-width: 0;

  display: flex;

  align-items: center;

  gap: 24px;
}

/* =========================================================
   INDUSTRY ICON
   SAME BORDERLESS GOLD STYLE AS INDEX
========================================================= */

.industry-icon {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0;

  padding: 0;

  border: 0;

  border-radius: 0;

  background: transparent;

  color: var(--gold);

  font-size: 29px;

  line-height: 1;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.industry-icon i {
  display: inline-block;

  margin: 0;

  padding: 0;

  border: 0;

  background: transparent;

  color: inherit;

  font-size: inherit;

  line-height: 1;
}

/* Explicitly style all 8 Font Awesome icons */

.industry-icon .fa-bag-shopping,
.industry-icon .fa-leaf,
.industry-icon .fa-building-columns,
.industry-icon .fa-heart-pulse,
.industry-icon .fa-industry,
.industry-icon .fa-chart-line,
.industry-icon .fa-trophy,
.industry-icon .fa-microchip {
  color: var(--gold);
}

.industry-accordion-item:hover .industry-icon {
  color: var(--gold-dark);

  transform: translateY(-2px);
}

/* =========================================================
   INDUSTRY TITLE
========================================================= */

.industry-trigger-left h3 {
  margin: 0;

  font-family: var(--font-main);

  font-size: 19px;
  font-weight: 500;

  line-height: 1.4;

  color: var(--navy);
}

/* =========================================================
   GOLD PLUS BUTTON
========================================================= */

.industry-toggle {
  position: relative;

  flex: 0 0 44px;

  width: 44px;
  height: 44px;

  display: block;

  border: 1px solid var(--gold);

  background: var(--gold);

  box-shadow: 0 5px 14px rgba(167, 123, 63, 0.15);

  transition: box-shadow 0.3s ease;
}

/* Horizontal line */

.industry-toggle span:first-child {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 15px;
  height: 2px;

  background: #ffffff;

  transform: translate(-50%, -50%);
}

/* Vertical line */

.industry-toggle span:last-child {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 2px;
  height: 15px;

  background: #ffffff;

  transform: translate(-50%, -50%);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.industry-accordion-trigger:hover .industry-toggle {
  background: var(--gold);

  border-color: var(--gold);

  box-shadow: 0 7px 18px rgba(167, 123, 63, 0.22);
}

/* =========================================================
   PLUS BECOMES MINUS
========================================================= */

.industry-accordion-item.active .industry-toggle span:last-child {
  opacity: 0;

  transform: translate(-50%, -50%) rotate(90deg);
}

/* =========================================================
   EXPANDABLE CONTENT
========================================================= */

.industry-accordion-content {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  visibility: hidden;

  transition:
    grid-template-rows 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.industry-accordion-item.active .industry-accordion-content {
  grid-template-rows: 1fr;

  opacity: 1;

  visibility: visible;
}

.industry-accordion-content-inner {
  min-height: 0;

  overflow: hidden;
}

/* =========================================================
   DIVIDER
========================================================= */

.industry-accordion-content-inner::before {
  content: "";

  display: block;

  width: calc(100% - 60px);

  height: 1px;

  margin: 0 30px 30px;

  background: rgba(0, 35, 59, 0.12);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.industry-accordion-content-inner p {
  margin: 0 30px 20px;

  font-family: var(--font-main);

  font-size: 15px;
  font-weight: 400;

  line-height: 1.78;

  color: #46545d;
}

.industry-accordion-content-inner p:last-child {
  margin-bottom: 35px;
}

/* =========================================================
   LEAD PARAGRAPH
========================================================= */

.industry-accordion-content-inner .industry-lead {
  margin-bottom: 22px;

  font-family: var(--font-display);

  font-size: 22px;
  font-weight: 500;

  line-height: 1.5;

  letter-spacing: -0.2px;

  color: var(--navy);
}

/* =========================================================
   KEYBOARD FOCUS
========================================================= */

.industry-accordion-trigger:focus-visible {
  outline: 2px solid var(--gold);

  outline-offset: -3px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .industry-expertise {
    padding: 90px 0 100px;
  }

  .industry-expertise-container {
    width: 86%;
  }

  .industry-expertise-header {
    margin-bottom: 52px;
  }

  .industry-expertise-header h2 {
    font-size: 52px;
  }

  .industry-expertise-header > p {
    font-size: 17px;
  }

  .industry-accordion-trigger {
    min-height: 115px;

    padding: 24px 23px;

    gap: 20px;
  }

  .industry-trigger-left {
    gap: 18px;
  }

  .industry-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    font-size: 25px;
  }

  .industry-trigger-left h3 {
    font-size: 17px;
  }

  .industry-toggle {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;
  }

  .industry-accordion-content-inner::before {
    width: calc(100% - 46px);

    margin: 0 23px 26px;
  }

  .industry-accordion-content-inner p {
    margin: 0 23px 19px;
  }

  .industry-accordion-content-inner p:last-child {
    margin-bottom: 30px;
  }

  .industry-accordion-content-inner .industry-lead {
    font-size: 20px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .industry-expertise {
    padding: 75px 0 80px;
  }

  .industry-expertise-container {
    width: 86%;
  }

  /* =========================
       HEADER
    ========================== */

  .industry-expertise-header {
    margin-bottom: 42px;
  }

  .industry-expertise-label {
    margin-bottom: 13px;

    font-size: 11px;

    letter-spacing: 1.7px;
  }

  .industry-expertise-header h2 {
    margin-bottom: 22px;

    font-size: 40px;

    line-height: 1.1;

    letter-spacing: -0.8px;
  }

  .industry-expertise-header > p {
    font-size: 16px;

    line-height: 1.7;
  }

  /* =========================
       ONE COLUMN
    ========================== */

  .industry-accordion {
    grid-template-columns: 1fr;

    gap: 10px;
  }

  /* =========================
       TRIGGER
    ========================== */

  .industry-accordion-trigger {
    min-height: 100px;

    padding: 21px 20px;

    gap: 16px;
  }

  /* =========================
       ICON + TITLE
    ========================== */

  .industry-trigger-left {
    gap: 15px;
  }

  .industry-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    font-size: 22px;
  }

  .industry-trigger-left h3 {
    font-size: 16px;

    line-height: 1.4;
  }

  /* =========================
       PLUS
    ========================== */

  .industry-toggle {
    flex: 0 0 36px;

    width: 36px;
    height: 36px;
  }

  .industry-toggle span:first-child {
    width: 12px;
  }

  .industry-toggle span:last-child {
    height: 12px;
  }

  /* =========================
       CONTENT
    ========================== */

  .industry-accordion-content-inner::before {
    width: calc(100% - 40px);

    margin: 0 20px 23px;
  }

  .industry-accordion-content-inner p {
    margin: 0 20px 18px;

    font-size: 14px;

    line-height: 1.72;
  }

  .industry-accordion-content-inner .industry-lead {
    margin-bottom: 19px;

    font-size: 19px;

    line-height: 1.5;
  }

  .industry-accordion-content-inner p:last-child {
    margin-bottom: 26px;
  }

  /* No hover movement on touch */

  .industry-accordion-item:hover .industry-icon {
    transform: none;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .industry-expertise {
    padding: 65px 0 70px;
  }

  .industry-expertise-container {
    width: 88%;
  }

  .industry-expertise-header h2 {
    font-size: 35px;
  }

  .industry-expertise-header > p {
    font-size: 15px;
  }

  .industry-accordion-trigger {
    min-height: 94px;

    padding: 19px 17px;

    gap: 13px;
  }

  .industry-trigger-left {
    gap: 12px;
  }

  .industry-icon {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    font-size: 20px;
  }

  .industry-trigger-left h3 {
    font-size: 15px;
  }

  .industry-toggle {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;
  }

  .industry-accordion-content-inner::before {
    width: calc(100% - 34px);

    margin: 0 17px 21px;
  }

  .industry-accordion-content-inner p {
    margin: 0 17px 17px;

    font-size: 14px;
  }

  .industry-accordion-content-inner .industry-lead {
    font-size: 18px;
  }

  .industry-accordion-content-inner p:last-child {
    margin-bottom: 23px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .industry-accordion-content,
  .industry-toggle,
  .industry-toggle span,
  .industry-icon,
  .industry-accordion-item,
  .industry-accordion-item::before {
    transition: none;
  }
}

/* =========================================================
   CAPABILITIES HERO
========================================================= */

.capabilities-hero {
  position: relative;

  width: 100%;
  min-height: 550px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--navy-dark);
}

/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.capabilities-hero-video {
  position: absolute;

  top: 0;
  left: 0;

  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

/* =========================================================
   DARK OVERLAY
========================================================= */

.capabilities-hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 24, 41, 0.93) 0%,
    rgba(0, 27, 46, 0.84) 42%,
    rgba(0, 27, 46, 0.66) 72%,
    rgba(0, 24, 41, 0.58) 100%
  );

  pointer-events: none;
}

/* =========================================================
   HERO CONTAINER
========================================================= */

.capabilities-hero-container {
  position: relative;

  z-index: 2;

  width: min(84%, 1500px);

  margin: 0 auto;
}

/* =========================================================
   HERO CONTENT
========================================================= */

.capabilities-hero-content {
  width: min(100%, 690px);
}

/* =========================================================
   SMALL LABEL
========================================================= */

.capabilities-hero-label {
  display: inline-block;

  margin-bottom: 18px;

  font-family: var(--font-main);

  font-size: 12px;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: 2.2px;

  text-transform: uppercase;

  color: var(--gold);
}

/* =========================================================
   TITLE
========================================================= */

.capabilities-hero-content h1 {
  margin: 0 0 22px;

  font-family: var(--font-display);

  font-size: clamp(58px, 5.5vw, 82px);
  font-weight: 500;

  line-height: 1;

  letter-spacing: -1.8px;

  color: #ffffff;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.capabilities-hero-content p {
  width: min(100%, 620px);

  margin: 0;

  font-family: var(--font-main);

  font-size: 23px;
  font-weight: 400;

  line-height: 1.5;

  letter-spacing: -0.25px;

  color: rgba(255, 255, 255, 0.94);
}

/* =========================================================
   GOLD ACCENT LINE
========================================================= */

.capabilities-hero-line {
  width: 72px;
  height: 3px;

  margin-top: 31px;

  background: var(--gold);
}

/* =========================================================
   SUBTLE BOTTOM SHADING
========================================================= */

.capabilities-hero::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 15, 26, 0.16) 100%
  );

  pointer-events: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .capabilities-hero {
    min-height: 500px;
  }

  .capabilities-hero-container {
    width: 86%;
  }

  .capabilities-hero-content {
    width: min(100%, 600px);
  }

  .capabilities-hero-content h1 {
    font-size: 64px;

    letter-spacing: -1.3px;
  }

  .capabilities-hero-content p {
    width: min(100%, 530px);

    font-size: 21px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .capabilities-hero {
    min-height: 440px;
  }

  /* Video */

  .capabilities-hero-video {
    object-position: 58% center;
  }

  /* Stronger overlay for mobile readability */

  .capabilities-hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 24, 41, 0.95) 0%,
      rgba(0, 27, 46, 0.88) 58%,
      rgba(0, 27, 46, 0.68) 100%
    );
  }

  /* Container */

  .capabilities-hero-container {
    width: 86%;
  }

  .capabilities-hero-content {
    width: 100%;
  }

  /* Label */

  .capabilities-hero-label {
    margin-bottom: 15px;

    font-size: 11px;

    letter-spacing: 1.8px;
  }

  /* Title */

  .capabilities-hero-content h1 {
    margin-bottom: 20px;

    font-size: 49px;

    line-height: 1.05;

    letter-spacing: -1px;
  }

  /* Description */

  .capabilities-hero-content p {
    width: min(100%, 390px);

    font-size: 18px;

    line-height: 1.55;

    letter-spacing: 0;
  }

  /* Gold line */

  .capabilities-hero-line {
    width: 58px;
    height: 3px;

    margin-top: 27px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .capabilities-hero {
    min-height: 410px;
  }

  .capabilities-hero-container {
    width: 88%;
  }

  .capabilities-hero-video {
    object-position: 60% center;
  }

  .capabilities-hero-content h1 {
    font-size: 43px;
  }

  .capabilities-hero-content p {
    width: 92%;

    font-size: 17px;

    line-height: 1.55;
  }

  .capabilities-hero-line {
    width: 52px;

    margin-top: 25px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .capabilities-hero-video {
    transform: none;
  }
}

/* =========================================================
   CAPABILITIES DETAIL
   EDITORIAL / CORPORATE STYLE
========================================================= */

.capabilities-detail {
  width: 100%;
  padding: 120px 0 140px;
  background: #f7f6f3;
}

.capabilities-detail-container {
  width: min(88%, 1420px);
  margin: 0 auto;
}

/* =========================================================
   INTRODUCTION
========================================================= */

.capabilities-detail-intro {
  max-width: 1040px;
  margin-bottom: 115px;
}

.capabilities-detail-label {
  display: block;
  margin-bottom: 18px;

  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--gold);
}

.capabilities-detail-intro h2 {
  margin: 0 0 34px;

  font-family: var(--font-display);
  font-size: clamp(54px, 5vw, 74px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.8px;

  color: var(--navy);
}

.capabilities-detail-intro > p {
  max-width: 960px;
  margin: 0;

  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.8;

  color: #43515a;
}

/* =========================================================
   CAPABILITY SECTION
========================================================= */

.capability-detail-block {
  display: grid;
  grid-template-columns: minmax(250px, 350px) minmax(0, 1fr);
  column-gap: clamp(70px, 9vw, 150px);

  padding: 95px 0 115px;

  border-top: 1px solid rgba(0, 35, 59, 0.22);
}

/* =========================================================
   LEFT SIDE
========================================================= */

.capability-detail-heading {
  align-self: start;
}

.capability-detail-icon {
  width: auto;
  height: auto;

  margin: 0 0 25px;

  display: block;

  font-size: 29px;
  line-height: 1;

  color: var(--gold);
}

.capability-detail-icon i {
  display: block;
}

.capability-detail-heading h3 {
  max-width: 340px;
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.8px;

  color: var(--navy);
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.capability-detail-body {
  max-width: 900px;
}

/* =========================================================
   OPENING STATEMENT
========================================================= */

.capability-detail-lead {
  max-width: 820px;
  margin: 0 0 35px;

  font-family: var(--font-display);
  font-size: clamp(29px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.6px;

  color: var(--navy);
}

/* =========================================================
   BODY COPY
========================================================= */

.capability-detail-body
  > p:not(.capability-detail-lead, .capability-detail-emphasis) {
  max-width: 820px;
  margin: 0 0 25px;

  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;

  color: #46545d;
}

/* =========================================================
   PERSPECTIVE STATEMENT
   NO BOX / NO CARD
========================================================= */

.capability-statement {
  position: relative;

  margin: 55px 0 38px;
  padding: 0 0 0 32px;

  background: transparent;
  border: 0;
}

.capability-statement::before {
  content: "";

  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;

  width: 2px;

  background: var(--gold);
}

.capability-statement span {
  display: block;

  margin-bottom: 12px;

  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: var(--gold);
}

.capability-statement p {
  max-width: 760px;
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(29px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.6px;

  color: var(--navy);
}

/* =========================================================
   EMPHASIS PARAGRAPH
========================================================= */

.capability-detail-emphasis {
  max-width: 800px;
  margin: 0;

  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;

  color: var(--navy);
}

/* =========================================================
   SHIFTS / HOW WE HELP
========================================================= */

.capability-shifts {
  margin-top: 75px;
}

/* =========================================================
   SHIFTS INTRO
========================================================= */

.capability-shifts-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

.capability-shifts-heading > span {
  display: block;

  margin-bottom: 12px;

  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: var(--gold);
}

.capability-shifts-heading h4 {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(29px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.6px;

  color: var(--navy);
}

/* =========================================================
   SHIFTS
   CLEAN EDITORIAL LIST — NO CARDS
========================================================= */

.capability-shifts-grid {
  display: block;

  border-top: 1px solid rgba(0, 35, 59, 0.18);
}

/* =========================================================
   INDIVIDUAL SHIFT
========================================================= */

.capability-shift,
.capability-shift:nth-child(even) {
  position: relative;

  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  column-gap: 55px;

  padding: 31px 0 33px;

  border: 0;
  border-bottom: 1px solid rgba(0, 35, 59, 0.18);

  background: transparent;
}

/* Remove previous little gold bars */

.capability-shift::before {
  display: none;
}

/* =========================================================
   SHIFT TITLE
========================================================= */

.capability-shift h5 {
  margin: 0;

  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;

  color: var(--navy);
}

/* =========================================================
   SHIFT DESCRIPTION
========================================================= */

.capability-shift p {
  max-width: 520px;
  margin: 0;

  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;

  color: #59666e;
}

/* =========================================================
   VERY SUBTLE HOVER
========================================================= */

@media (hover: hover) {
  .capability-shift {
    transition: padding-left 0.3s ease;
  }

  .capability-shift:hover {
    padding-left: 12px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .capabilities-detail {
    padding: 95px 0 110px;
  }

  .capabilities-detail-container {
    width: 86%;
  }

  .capabilities-detail-intro {
    margin-bottom: 85px;
  }

  .capabilities-detail-intro h2 {
    font-size: 56px;
  }

  .capabilities-detail-intro > p {
    font-size: 17px;
  }

  /* Main capability */

  .capability-detail-block {
    grid-template-columns: 250px minmax(0, 1fr);
    column-gap: 60px;

    padding: 75px 0 90px;
  }

  .capability-detail-heading h3 {
    font-size: 34px;
  }

  .capability-detail-lead {
    font-size: 29px;
  }

  /* Shift rows */

  .capability-shift,
  .capability-shift:nth-child(even) {
    grid-template-columns: 190px minmax(0, 1fr);
    column-gap: 35px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {
  .capabilities-detail {
    padding: 75px 0 85px;
  }

  .capabilities-detail-container {
    width: 86%;
  }

  /* =====================================================
       INTRODUCTION
    ===================================================== */

  .capabilities-detail-intro {
    margin-bottom: 65px;
  }

  .capabilities-detail-label {
    margin-bottom: 13px;

    font-size: 11px;
    letter-spacing: 1.6px;
  }

  .capabilities-detail-intro h2 {
    margin-bottom: 24px;

    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.8px;
  }

  .capabilities-detail-intro > p {
    font-size: 16px;
    line-height: 1.72;
  }

  /* =====================================================
       CAPABILITY
    ===================================================== */

  .capability-detail-block {
    display: block;

    padding: 58px 0 72px;
  }

  /* Left heading */

  .capability-detail-heading {
    margin-bottom: 38px;
  }

  .capability-detail-icon {
    margin-bottom: 17px;

    font-size: 24px;
  }

  .capability-detail-heading h3 {
    max-width: 100%;

    font-size: 31px;
    line-height: 1.2;
  }

  /* =====================================================
       MAIN CONTENT
    ===================================================== */

  .capability-detail-lead {
    margin-bottom: 26px;

    font-size: 24px;
    line-height: 1.43;
  }

  .capability-detail-body
    > p:not(.capability-detail-lead, .capability-detail-emphasis) {
    margin-bottom: 20px;

    font-size: 15px;
    line-height: 1.75;
  }

  /* =====================================================
       STATEMENT
    ===================================================== */

  .capability-statement {
    margin: 40px 0 30px;

    padding-left: 22px;
  }

  .capability-statement span {
    margin-bottom: 9px;

    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .capability-statement p {
    font-size: 24px;
    line-height: 1.4;
  }

  .capability-detail-emphasis {
    font-size: 16px;
    line-height: 1.7;
  }

  /* =====================================================
       SHIFTS
    ===================================================== */

  .capability-shifts {
    margin-top: 55px;
  }

  .capability-shifts-heading {
    margin-bottom: 33px;
  }

  .capability-shifts-heading > span {
    margin-bottom: 10px;

    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .capability-shifts-heading h4 {
    font-size: 25px;
    line-height: 1.4;
  }

  /* =====================================================
       SHIFT LIST
    ===================================================== */

  .capability-shift,
  .capability-shift:nth-child(even) {
    display: block;

    padding: 25px 0 27px;
  }

  .capability-shift h5 {
    margin-bottom: 11px;

    font-size: 16px;
    line-height: 1.45;
  }

  .capability-shift p {
    max-width: 100%;

    font-size: 14px;
    line-height: 1.72;
  }

  .capability-shift:hover {
    padding-left: 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {
  .capabilities-detail {
    padding: 65px 0 75px;
  }

  .capabilities-detail-container {
    width: 88%;
  }

  .capabilities-detail-intro {
    margin-bottom: 55px;
  }

  .capabilities-detail-intro h2 {
    font-size: 35px;
  }

  .capabilities-detail-intro > p {
    font-size: 15px;
  }

  .capability-detail-block {
    padding: 50px 0 62px;
  }

  .capability-detail-heading h3 {
    font-size: 28px;
  }

  .capability-detail-lead {
    font-size: 22px;
  }

  .capability-statement p {
    font-size: 22px;
  }

  .capability-shifts-heading h4 {
    font-size: 23px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .capability-shift {
    transition: none;
  }
}
