:root {
  --brand-primary: #c6b29e;
  --brand-primary-rgb: 198, 178, 158;
  --brand-on-primary: #1b1b1b;
  --brand-primary-hover: #b39e8a;
  --brand-primary-active: #a18c78;

  --bs-body-font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --bs-primary: var(--brand-primary);
  --bs-primary-rgb: var(--brand-primary-rgb);

  --site-bg-image: url("../img/site-bg.jpg");
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  background-image: var(--site-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.btn-primary {
  --bs-btn-color: var(--brand-on-primary);
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: var(--brand-on-primary);
  --bs-btn-hover-bg: var(--brand-primary-hover);
  --bs-btn-hover-border-color: var(--brand-primary-hover);
  --bs-btn-active-color: var(--brand-on-primary);
  --bs-btn-active-bg: var(--brand-primary-active);
  --bs-btn-active-border-color: var(--brand-primary-active);
  --bs-btn-disabled-color: var(--brand-on-primary);
  --bs-btn-disabled-bg: var(--brand-primary);
  --bs-btn-disabled-border-color: var(--brand-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: var(--brand-on-primary);
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-primary);
  --bs-btn-active-color: var(--brand-on-primary);
  --bs-btn-active-bg: var(--brand-primary-hover);
  --bs-btn-active-border-color: var(--brand-primary-hover);
}

.font-roboto-bold-italic {
  font-weight: 700;
  font-style: italic;
}

.content-panel {
  background: none;
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.about-media {
  position: relative;
  border-radius: 0rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ratio-lg-4x3 {
  --bs-aspect-ratio: 56.25%;
}

@media (min-width: 992px) {
  .ratio-lg-4x3 {
    --bs-aspect-ratio: 75%;
  }
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media__link {
  position: absolute;
  inset: 0;
  display: block;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3rem, 7vw, 4.5rem);
  height: clamp(3rem, 7vw, 4.5rem);
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.play-badge i {
  font-size: clamp(1.25rem, 3.2vw, 1.8rem);
  transform: translateX(6%);
}

.about-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  letter-spacing: 0.01em;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #1b1b1b;
}

.more-link:hover,
.more-link:focus-visible {
  text-decoration: underline;
}

.products-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.product-card {
  border-radius: 0 rem;
  overflow: hidden;
}

.product-card__media-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
  cursor: pointer;
}

.product-card__media-trigger img {
  transition: transform 180ms ease;
}

.product-card__media-trigger:hover img,
.product-card__media-trigger:focus-visible img {
  transform: scale(1.02);
}

.product-card__media-trigger:focus-visible,
.product-card__title-button:focus-visible {
  outline: 3px solid rgba(var(--brand-primary-rgb), 0.8);
  outline-offset: 4px;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.product-card__title {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.product-card__title-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.product-card__title-button:hover,
.product-card__title-button:focus-visible {
  text-decoration: underline;
}

.product-card__text {
  font-size: 0.85rem;
  line-height: 1.35;
  margin: 0;
}

.product-card__link {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.product-card__link:hover,
.product-card__link:focus-visible {
  text-decoration: underline;
}

.tech-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.tech-lead {
  max-width: 80ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: inherit;
}

.gallery-thumb {
  border-radius: 0rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover .gallery-thumb img {
  transform: scale(1.02);
}

.gallery-item:focus-visible {
  outline: 3px solid rgba(var(--brand-primary-rgb), 0.8);
  outline-offset: 4px;
  border-radius: 0.75rem;
}

.image-modal .modal-content {
  background: rgba(15, 15, 15, 0.98);
  color: #fff;
  border: 0;
}

.products-modal .modal-content {
  background: transparent;
  color: #fff;
  border: 0;
  box-shadow: none;
}

.products-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.products-modal .modal-body {
  padding: 0;
}

.products-carousel {
  background: #050505;
}

.products-carousel__frame {
  min-height: min(78vh, 44rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(3.5rem, 7vw, 5.5rem);
}

.products-carousel__media {
  position: relative;
  display: inline-block;
  margin: 0;
}

.products-carousel__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(7rem, 18vw, 10rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 5, 5, 0.78) 62%, rgba(5, 5, 5, 0.94) 100%);
  border-radius: 0 0 0.75rem 0.75rem;
  pointer-events: none;
}

.products-carousel__media img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.products-carousel__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.products-carousel__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.82;
}

.products-carousel__title {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.products-carousel .carousel-indicators {
  margin-bottom: 0.65rem;
}

.products-carousel .carousel-indicators [data-bs-target] {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
}

.products-carousel .carousel-control-prev,
.products-carousel .carousel-control-next {
  width: clamp(2.75rem, 8vw, 4.25rem);
}

@media (max-width: 575.98px) {
  .products-modal__close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  .products-carousel__frame {
    min-height: 65vh;
    padding-inline: 2.75rem;
  }

  .products-carousel__overlay {
    padding: 0.9rem 1rem;
  }

  .products-carousel__title {
    font-size: 1.2rem;
  }
}

.image-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.image-modal .modal-body {
  padding: 0.75rem;
}

.image-modal img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.contact-modal .modal-content {
  border-radius: 0;
}

.contact-modal__icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-primary);
}

.contact-modal__title {
  font-weight: 700;
}

.contact-modal__text {
  opacity: 0.75;
}

.env-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.env-title::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0px;
  margin-top: 0.6rem;
  background: rgba(0, 0, 0, 0.25);
}

.env-banner {
  position: relative;
  border-radius: 0rem;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
}

.env-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.env-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.env-banner__body {
  position: relative;
  padding: clamp(1.1rem, 3.2vw, 2.1rem);
  padding-right: clamp(4.5rem, 10vw, 6.5rem);
  padding-bottom: clamp(4rem, 8vw, 5.75rem);
  max-width: 105ch;
}

.env-banner__text {
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.env-banner__icon {
  position: absolute;
  right: clamp(1rem, 2.2vw, 1.5rem);
  bottom: clamp(1rem, 2.2vw, 1.5rem);
  width: clamp(3.25rem, 5.2vw, 4.75rem);
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}

.export-wrap {
  background: rgba(255, 255, 255, 0);
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  overflow: hidden;
}

.export-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.export-title::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0px;
  margin-top: 0.6rem;
  background: rgba(0, 0, 0, 0.25);
}

.export-subtitle {
  font-size: 1rem;
  margin: 0;
}

.export-text {
  max-width: 60ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.export-figure {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.export-graphic {
  width: min(34rem, 100%);
  height: auto;
}

@media (min-width: 992px) {
  .export-figure {
    justify-content: flex-end;
  }

  .export-graphic {
    transform: translateY(6%);
  }
}

.clients-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.clients-carousel {
  position: relative;
  padding-inline: clamp(2.25rem, 4vw, 3.25rem);
}

.clients-carousel .carousel-item {
  transition: transform 700ms ease;
}

.clients-carousel .carousel-control-prev,
.clients-carousel .carousel-control-next {
  width: clamp(2rem, 3vw, 2.75rem);
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.clients-carousel .carousel-control-prev:hover,
.clients-carousel .carousel-control-next:hover,
.clients-carousel .carousel-control-prev:focus-visible,
.clients-carousel .carousel-control-next:focus-visible {
  color: rgba(0, 0, 0, 0.75);
}

.clients-carousel .carousel-control-prev {
  left: 0;
}

.clients-carousel .carousel-control-next {
  right: 0;
}

.clients-carousel .carousel-control-prev i,
.clients-carousel .carousel-control-next i {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
}

.client-card {
  height: 100%;
  min-height: clamp(6.5rem, 18vw, 8.5rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.45);
  border-radius: 1.5rem;
  display: grid;
  place-items: center;
  padding: 1rem 1.25rem;
}

.client-card__text {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
  opacity: 0.75;
}

@media (max-width: 991.98px) {
  .clients-carousel {
    padding-inline: 0;
  }

  .clients-carousel .carousel-control-prev,
  .clients-carousel .carousel-control-next {
    display: none;
  }
}

.contact-wrap {
  background: rgba(248, 246, 243, 0);
  border-radius: 1rem;
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.contact-title {
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.contact-title::after {
  content: "";
  display: block;
  width: 10rem;
  height: 0px;
  margin-top: 0.6rem;
  background: rgba(0, 0, 0, 0.25);
}

.contact-lead {
  max-width: 60ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  font-size: 0.95rem;
}

.contact-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}

.contact-item i {
  width: clamp(3rem, 5vw, 3.75rem);
  height: clamp(3rem, 5vw, 3.75rem);
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.75;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.contact-item span {
  font-weight: 700;
}

.contact-item:hover i,
.contact-item:focus-visible i {
  border-color: rgba(0, 0, 0, 0.65);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.contact-sep {
  display: none;
}

.contact-form-title {
  font-weight: 500;
  margin: 0;
}

.contact-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.contact-control {
  border-radius: 0;
  border-color: rgba(0, 0, 0, 0.65);
  background: rgba(255, 255, 255, 0.92);
}

.contact-control:focus {
  border-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 0 0.2rem rgba(var(--brand-primary-rgb), 0.25);
}

.contact-submit {
  border-radius: 0;
  background: #2f2f2f;
  color: #fff;
  padding: 0.45rem 1rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #1f1f1f;
  color: #fff;
}

@media (max-width: 575.98px) {
  .contact-sep {
    display: none;
  }
}

.site-footer {
  background: var(--brand-primary);
  padding-block: clamp(2.5rem, 6vw, 4.25rem);
}

.footer-brand {
  text-decoration: none;
  color: #fff;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  color: #fff;
}

.footer-brand__mark {
  width: clamp(3.25rem, 6vw, 4.25rem);
  height: clamp(3.25rem, 6vw, 4.25rem);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  flex: 0 0 auto;
  opacity: 0.95;
}

.footer-brand__name {
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.footer-brand__tagline {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.95;
}

.footer-right {
  position: relative;
}

@media (min-width: 992px) {
  .footer-right {
    padding-left: clamp(2.25rem, 4vw, 3.5rem);
  }

  .footer-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.45);
  }
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  display: inline-block;
}

.footer-nav a span {
  display: block;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.6rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  line-height: 1;
  font-size: 1.35rem;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
}

.footer-meta {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp-float {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 1040;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.whatsapp-float i {
  font-size: 1.75rem;
  line-height: 1;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #fff;
  background: #1ebe5d;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  transform: translateY(-1px);
}

.hero {
  position: relative;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: clamp(22rem, 62vh, 44rem);
}

.hero-slide {
  position: relative;
  height: 100%;
  background-color: #cfc8c0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 62%) 0%,
    rgba(0, 0, 0, 45%) 35%,
    rgba(0, 0, 0, 20%) 70%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(1.5rem, 5vw, 3.25rem);
}

.hero-title {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.01em;
  font-size: clamp(1.75rem, 3.2vw, 3.25rem);
  margin: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-indicators {
  position: absolute;
  top: 50%;
  right: clamp(0.75rem, 2vw, 1.25rem);
  left: auto;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-indicators [data-bs-target] {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  border: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0.65;
}

.hero-indicators .active {
  opacity: 1;
  background-color: #fff;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 12%;
}

.site-header {
  overflow-x: clip;
}

.site-header .navbar {
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-color: rgba(255, 255, 255, 0.92);
  --bs-navbar-hover-color: #fff;
  --bs-navbar-active-color: #fff;
  --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.35);
  --bs-navbar-toggler-padding-y: 0.35rem;
  --bs-navbar-toggler-padding-x: 0.55rem;
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 0.75rem;
  z-index: 9999;
}

.site-header__action-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.site-header__action-link:hover,
.site-header__action-link:focus-visible {
  color: #fff;
}

.site-brand {
  text-decoration: none;
}

.site-brand__logo {
  width: 3.25rem;
  height: 3.25rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  flex: 0 0 auto;
}

.site-brand__name {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: clamp(1.75rem, 2.3vw, 2.4rem);
}

.site-brand__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.95;
}

.site-nav .nav-link {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding-inline: 1rem;
  padding-block: 0.35rem;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav .nav-link span {
  display: block;
}

@media (min-width: 1200px) {
  .site-header__actions {
    position: absolute;
    top: 0.65rem;
    right: 0;
    padding-top: 0;
  }

  .site-nav {
    align-items: top;
  }

  .site-nav .nav-item + .nav-item {
    position: relative;
  }

  .site-nav .nav-item + .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 1199.98px) {
  .site-nav {
    padding-top: 0.75rem;
  }

  .site-nav .nav-link {
    padding-inline: 0;
    padding-block: 0.75rem;
    white-space: normal;
  }

  .site-nav .nav-item + .nav-item {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
}
