:root {
  --navy: #061748;
  --navy-deep: #031238;
  --blue: #4e72ff;
  --blue-soft: #7d95ff;
  --text-dark: #102056;
  --text-mid: #6f7898;
  --bg-light: #fbfbfb;
  --bg-card: #e9edf7;
  --white: #ffffff;
  --border-soft: rgba(120, 137, 184, 0.2);
  --shadow-soft: 0 16px 50px rgba(10, 30, 90, 0.12);
  --font-main: "Neue Haas Unica Pro", sans-serif;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-UltLightIt.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-LightIt.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-MediumIt.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Heavy.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-HeavyIt.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-XBlack.ttf") format("truetype");
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Unica Pro";
  src: url("../fonts/NeueHaasUnicaPro-XBlackIt.ttf") format("truetype");
  font-weight: 950;
  font-style: italic;
  font-display: swap;
}

/* Bootstrap overides */
.container {
  max-width: 1440px;
}
/* End Bootstrap overides */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.45;
}

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

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  z-index: 9999;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.navbar {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.logo-nav {
  height: 2rem;
  width: auto;
  color: #fff;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0.7rem !important;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.55rem;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.navbar-collapse {
  margin-top: 1rem;
  background: rgba(4, 18, 56, 0.92);
  padding: 0.75rem;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    margin-top: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
}

.hero-section {
  position: relative;
  padding: 7rem 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(116, 216, 255, 0.45),
      transparent 16%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(122, 58, 255, 0.28),
      transparent 22%
    ),
    linear-gradient(180deg, #03113c 0%, #06184f 55%, #071448 100%);
}

@media (min-width: 992px) {
  .hero-section {
    min-height: auto;
  }
}

.hero-bg,
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2f4e88 0%, #0030b5 100%);
  z-index: 2;
  opacity: 0.4;
  mix-blend-mode: exclusion;
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 90%, transparent 90%);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 80%);
  mask-image: linear-gradient(90deg, black 0%, transparent 80%);
}
.hero-content {
  padding-top: 105px;
  padding-bottom: 70px;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 120px;
  }
}

.hero-chips-container {
  color: rgba(255, 190, 85, 0.85);
  font-size: 0.75rem;
  font-weight: 400;
  display: inline-flex;
  gap: 1rem;
}

.hero-chip {
  border-radius: 62.4375rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(64, 109, 235, 0.06) 100%
  );
  padding: 0.375rem 0.5rem;
}
.hero-title {
  color: #fff;
  font-size: 2.5rem;
  line-height: 0.96;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin: 0;
  background: var(--Linear, linear-gradient(90deg, #fff 0%, #baccff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
    line-height: 100%; /* 4rem */
    letter-spacing: -0.08rem;
  }
}

.hero-sub {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 200;
  max-width: 58ch;
}

@media (min-width: 768px) {
  .hero-sub {
    font-size: 1.25rem;
  }
}

.section-who,
.section-collab,
.section-social,
.section-contact {
  background: var(--bg-light);
}

.section-label {
  color: #62677a;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 100%;
  color: var(--text-dark);
  font-size: 2.1rem;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-align: left;
}

.section-intro .char {
  display: inline-block;
  perspective: 400px;
  white-space: pre;
}

@media (min-width: 768px) {
  .section-intro {
    font-size: 3rem;
    line-height: 130%; /* 3.9rem */
    letter-spacing: -0.09rem;
  }
}

.link-arrow {
  color: #5b76ea;
  font-size: 1.25rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2rem;
}

.link-arrow:hover {
  color: #2e53dc;
}

.section-what {
  padding: 7.5rem 0;
  position: relative;
  overflow: hidden;
}

.what-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.what-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #406eeb4b, transparent);
}

.section-what > .container {
  position: relative;
  z-index: 2;
}

.section-what .section-label {
  color: rgba(255, 255, 255, 0.7);
}
.section-what .section-title {
  background: var(--Linear, linear-gradient(90deg, #fff 0%, #baccff 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.75rem;
}
@media (min-width: 992px) {
  .section-what .section-title {
    font-size: 2.25rem;
  }
}
.section-title {
  font-size: 2.2rem;
  margin-block: 1rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.035em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    line-height: 130%;
  }
}

a.tag {
  text-decoration: none;
  display: flex;
  padding: 0.625rem 0.875rem 0.75rem 0.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  font-size: 1.25rem;
  color: #fff;
  cursor: pointer;
}

a.tag.active {
  border: 1px solid #7a9dff;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.6) inset;
}

.card-ops[data-tab-panel] {
  display: none;
}

.card-ops[data-tab-panel].active {
  display: block;
}

.card-ops {
  position: relative;
  min-height: 460px;
  padding: 32px 34px;
  background: #dfe4f3;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 700px;
}

@media (min-width: 1200px) {
  .card-ops {
    min-height: unset;
    height: auto;
    top: 7.5rem;
    bottom: 7.5rem;
    width: calc(100% + 4.5rem + max(0px, (100vw - 1440px) / 2));
    position: absolute;
    right: 0;
  }
}

.card-ops-header {
  max-width: 47%;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.card-ops-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 47%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-ops-list a {
  text-decoration: none;
  color: #000d3f;
  font-size: 1.25rem;
  padding-left: 1rem;

  position: relative;
}

.card-ops-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #000d3f;
  box-shadow: 2px 3px 6px 2px rgba(16, 32, 247, 0.15);
}

.satellite-visual {
  position: relative;
  width: 100%;
  height: 220px;
  margin-top: 28px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

@media (min-width: 992px) {
  .satellite-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    margin-top: 0;
    border-radius: 0;
  }
}

.sat-body,
.sat-panel,
.sat-orbit-ring {
  position: absolute;
}

.sat-body {
  width: 120px;
  height: 120px;
  top: 110px;
  left: 55px;
  transform: rotate(24deg);
  background: linear-gradient(145deg, #b3b8c8, #7f879f);
  clip-path: polygon(50% 0, 100% 28%, 100% 74%, 50% 100%, 0 72%, 0 24%);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.sat-body::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #dbe58f 0 36%,
    #93a648 37% 46%,
    transparent 47%
  );
}

.sat-panel {
  width: 86px;
  height: 12px;
  background: linear-gradient(90deg, #e9edf7, #5a6584);
  top: 158px;
}

.sat-panel-left {
  left: -4px;
  transform: rotate(-32deg);
}

.sat-panel-right {
  right: 14px;
  transform: rotate(42deg);
}

.sat-orbit-ring {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 55px;
  left: -40px;
}

.section-collab {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
}

.section-collab-bg {
  position: absolute;
  height: 180px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  mix-blend-mode: darken;
}

.section-collab > .container {
  position: relative;
  z-index: 2;
}

.collab-title {
  color: #000d3f;
  margin: 0 auto;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 500;
  line-height: 120%;
}

@media (min-width: 768px) {
  .collab-title {
    font-size: 4rem;
    max-width: 26ch;
  }
}

.partner-logos {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-align-content: center;
  align-content: center;
  gap: 2rem !important;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .partner-logos {
    gap: revert !important;
  }
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 45px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1) contrast(2);
  opacity: 0.6;
}

.collab-sub {
  color: #62677a;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 1.625rem */
  letter-spacing: -0.0125rem;
  max-width: 65ch;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .collab-sub {
    font-size: 1.25rem;
  }
}

.collab-sub {
  margin-inline: auto;
}

.section-work {
  padding: 7.5rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
}

.section-work .work-img {
  border-radius: 0 0.5rem 0.5rem 0;
}

.section-work p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 350;
  line-height: 130%; /* 1.625rem */
  letter-spacing: -0.0125rem;
}
.work-image-col {
  min-height: 320px;
  position: relative;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  filter: saturate(0.85) brightness(0.88);
}

.work-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 23, 74, 0.38),
    rgba(6, 23, 74, 0.05)
  );
  z-index: 1;
}

.work-content-col {
  color: #fff;
  position: relative;
  z-index: 2;
}

.work-content-col .section-label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.work-content-col .text-muted-body {
  color: rgba(255, 255, 255, 0.78);
  max-width: 430px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.62rem 1rem;
  background: #5a76f3;
  color: #fff;

  font-size: 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid #7a9dff;
  background: #406deb;
  box-shadow: 0 1px 0 0 #abc1ff inset;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #3f5fe8;
  color: #fff;
}
.section-social {
  padding: 7.5rem 0;
}
.section-social .section-label {
  color: #62677a;
  text-align: center;
  font-size: 1.25rem;
}
.section-social .section-title {
  color: #000d3f;
  font-size: 4rem;
  line-height: 120%; /* 4.8rem */
  letter-spacing: -0.12rem;
  margin-bottom: 3rem;
}
.social-card-tags-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  gap: 3rem;
}
.social-card {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e5ecff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.social-card-img-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #dde2f1;
}

.social-card-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  height: 20rem;
}

.social-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.social-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.social-time {
  color: #004494;
  font-size: 0.75rem;
  font-weight: 350;
  line-height: 90%; /* 0.675rem */
  letter-spacing: -0.0075rem;
}

.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0;
}

.social-tags a {
  font-size: 1rem;
  color: #01196b;
  line-height: 120%;
  text-decoration: none;
}
.social-tags a:hover {
  text-decoration: underline;
}

.section-contact {
  padding: 7.5rem 0;
  position: relative;
}
.contact-title {
  color: #000d3f;
  font-size: 2.2rem;

  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 4.8rem */
  letter-spacing: -0.12rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 4rem;
  }
}

.get-in-touch-content {
  position: sticky;
  top: 1rem;
}

.contact-img {
  width: 340px;
  height: 304px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

.section-contact > .container {
  position: relative;
  z-index: 2;
}

.contact-form {
  max-width: 620px;
  margin-left: 0;
}

@media (min-width: 992px) {
  .contact-form {
    margin-left: auto;
  }
}

.contact-form .btn-primary-sp {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-form .btn-primary-sp {
    width: auto;
  }
}

.form-label-sp {
  display: block;
  font-size: 11px;
  color: #000d3f;
  font-weight: bold;
  margin-bottom: 6px;
}

.form-input-sp {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid #d6dbe9;
  background: transparent;
  color: var(--text-dark);
  font-size: 12px;
  border-radius: 0;
  outline: none;
}

.form-input-sp:focus {
  border-color: #6f89ff;
  box-shadow: 0 0 0 3px rgba(90, 118, 243, 0.12);
}

textarea.form-input-sp {
  resize: vertical;
  min-height: 150px;
}

.form-select-sp {
  appearance: auto;
}

.form-check-input-sp {
  width: 14px;
  height: 14px;
}

.privacy-label {
  font-size: 10px;
  color: #6f7898;
}

.recaptcha-mock {
  width: 260px;
  min-height: 74px;
  border: 1px solid #d6dbe9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 13px;
  color: #48506d;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  gap: 2rem;
}

.site-footer {
  background: linear-gradient(180deg, #061748 0%, #07174a 100%);
  color: #fff;
}

.footer-logo-img {
  width: 8.75rem;
  height: auto;
}

.footer-address,
.footer-address a,
.footer-legal-link {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 1rem;
  line-height: 130%;
}
.footer-nav-list li {
  margin-bottom: 1.5rem;
}
.footer-nav-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 100%;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list li + li {
  margin-top: 8px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.9;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 1rem;
}

.footer-contact-list svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  padding-bottom: 2rem;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand-wordmark {
  height: auto;
  width: 90vw;
  max-width: 22rem;
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 400;
  line-height: 130%; /* 1.3rem */
}

/* ==============================================
   WordPress Menu Overrides
   ============================================== */

/* --- Main Nav (Bootstrap navbar) --- */
#mainNav .menu-item > a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0.7rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: block;
}

#mainNav .menu-item > a:hover,
#mainNav .menu-item > a:focus {
  color: #fff;
}

#mainNav .menu-item.current-menu-item > a,
#mainNav .menu-item.active > a {
  color: #fff;
}

/* --- Footer Nav columns --- */
.footer-nav-cols .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 5rem;
}

.footer-nav-cols .footer-nav-list li {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.footer-nav-cols .footer-nav-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  line-height: 100%;
}

.footer-nav-cols .footer-nav-list li a:hover {
  text-decoration: underline;
}

/* --- Footer bottom links menu --- */
ul.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

ul.footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 1rem;
  line-height: 130%;
}

ul.footer-bottom-links li a:hover {
  color: #fff;
}

ul.footer-bottom-links li.current-menu-item a {
  color: #fff;
}

/* Ensure WordPress does not add extra margins to nav wrappers */
.footer-nav-cols > .menu,
.footer-nav-cols > ul {
  margin: 0;
  padding: 0;
}
