.oa-footer {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: 0;
  overflow-x: hidden;
  color: var(--oa-text-white);
  font-family: var(--oa-font-body);
}
.oa-footer * { box-sizing: border-box; }
.oa-footer a { color: inherit; text-decoration: none; }
.oa-footer p { margin: 0; }

.oa-footer-panel {
  position: relative;
  background-color: var(--oa-black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.oa-footer-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, .95) 0%, rgba(10, 10, 10, .92) 100%);
}

.oa-footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px var(--oa-content-padding) 24px;
}

/* Newsletter row */
.oa-footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
}

.oa-footer-newsletter-copy { max-width: 460px; }
.oa-footer-newsletter-title {
  margin: 0 0 10px;
  font-family: var(--oa-font-header);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .3px;
  color: var(--oa-text-white);
}
.oa-footer-newsletter-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(230, 232, 234, .78);
}

.oa-footer-newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.oa-footer-newsletter-input {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 13px 16px;
  border: 1px solid rgba(230, 232, 234, .3);
  border-radius: var(--oa-radius-sm);
  background: transparent;
  color: var(--oa-text-white);
  font-family: var(--oa-font-body);
  font-size: 14px;
}
.oa-footer-newsletter-input::placeholder { color: rgba(230, 232, 234, .55); }
.oa-footer-newsletter-input:focus { outline: none; border-color: var(--oa-yellow); }
.oa-footer-newsletter-submit {
  flex: 0 0 auto;
  padding: 13px 26px;
  border: 0;
  border-radius: var(--oa-radius-sm);
  background: var(--oa-yellow);
  color: var(--oa-black);
  font-family: var(--oa-font-header);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .18s ease;
}
.oa-footer-newsletter-submit:hover,
.oa-footer-newsletter-submit:focus-visible { background: var(--oa-yellow-dark); }

.oa-footer-newsletter-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.oa-footer-brand { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.2; }
.oa-footer-brand img { display: block; height: 40px; width: auto; }
/* Text fallback until a logo image is uploaded: replace this block's content with an <img> in footer.php and these rules become unused. */
.oa-footer-brand-name {
  font-family: var(--oa-font-header);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .3px;
  color: var(--oa-text-white);
}
.oa-footer-brand-tagline {
  font-family: var(--oa-font-header);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oa-yellow);
}

.oa-footer-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 1.5px solid rgba(230, 232, 234, .45);
  border-radius: 50%;
  text-align: center;
}
.oa-footer-seal-top {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .4px;
  color: var(--oa-text-white);
}
.oa-footer-seal-bottom {
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(230, 232, 234, .68);
}

/* Columns */
.oa-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: start;
  gap: 24px 32px;
  padding-top: 28px;
}

.oa-footer-col h5 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: rgba(230, 232, 234, .55);
}
.oa-footer-col p { margin-bottom: 18px; font-size: 14px; line-height: 1.5; color: rgba(230, 232, 234, .82); }
.oa-footer-col p:last-child { margin-bottom: 0; }

.oa-footer-contact-list { list-style: none; margin: 0 0 18px; padding: 0; }
.oa-footer-contact-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.oa-footer-contact-list li:last-child { margin-bottom: 0; }
.oa-footer-contact-icon { width: 14px; height: 14px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: .75; }

.oa-footer-link-list { list-style: none; margin: 0; padding: 0; }
.oa-footer-link-list li { margin-bottom: 10px; }
.oa-footer-link-list li:last-child { margin-bottom: 0; }
.oa-footer-link-list a { font-size: 14px; line-height: 1.5; color: rgba(230, 232, 234, .82); }
.oa-footer-link-list .current-menu-item > a { color: var(--oa-yellow); }

.oa-footer-col-contact a,
.oa-footer-link-list a {
  position: relative;
  display: inline-block;
}
.oa-footer-col-contact a::after,
.oa-footer-link-list a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.oa-footer-col-contact a:hover::after,
.oa-footer-col-contact a:focus-visible::after,
.oa-footer-link-list a:hover::after,
.oa-footer-link-list a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.oa-social { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.oa-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--oa-yellow);
  opacity: 1;
  transition: background-color .18s ease;
}
.oa-social a:hover,
.oa-social a:focus-visible { background: var(--oa-yellow-dark); }
.oa-social img { width: 15px; height: 15px; }
.oa-social-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--oa-black);
}

.oa-footer-divider {
  height: 1px;
  background: rgba(230, 232, 234, .16);
}

.oa-footer-credits {
  background: #f4f5f7;
  color: var(--oa-text-dark);
}
.oa-footer-credits-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px var(--oa-content-padding);
}
.oa-footer-legal { display: flex; flex-direction: column; gap: 6px; }
.oa-footer-copyright {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: rgba(19, 27, 37, .55);
}
.oa-footer-privacy { font-size: 13px; }
.oa-footer-privacy a { display: inline-block; }

.oa-footer-credit { text-align: right; font-size: 13px; line-height: 1.6; }
.oa-footer-credit a { display: inline-block; }

@media (max-width: 767px) {
  .oa-footer-inner { padding: 32px 20px 24px; }

  .oa-footer-newsletter { flex-direction: column; align-items: flex-start; gap: 24px; }
  .oa-footer-newsletter-aside { align-items: flex-start; width: 100%; flex-direction: row; justify-content: space-between; }
  .oa-footer-brand { align-items: flex-start; }

  .oa-footer-columns { grid-template-columns: 1fr; gap: 0; }
  .oa-footer-col {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(230, 232, 234, .14);
  }
  .oa-footer-col:first-child { border-top: 0; padding-top: 0; }

  .oa-footer-credits-inner { padding: 24px 20px; }
  .oa-footer-credit { text-align: left; }
}
